diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cc8b8e8ea3..8b7d5bdccc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,27 @@ Change Log All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog `_. +==================== +2.54.0 - 2022-01-11 +==================== + +Added +------ +* Support for calling Oracle Cloud Infrastructure services in the af-johannesburg-1 region +* Support for multiple protocols on the same listener in the Network Load Balancing service +* IPv6 support in the Network Load Balancing service +* Support for creating Enterprise Manager-based Solaris and SunOS host targets in the Operations Insights service +* Support for choosing Data Guard type (Active Data Guard or regular) on databases in the Database service +* Support for allowing control characters in responses as requested in https://github.com/oracle/oci-python-sdk/issues/404. Please see the github issue for more details + +Fixed +----- +* The root cause of the issue causing data corruption as mentioned in https://github.com/oracle/oci-python-sdk/issues/410 has been fixed. Please see the github issue for more details + +Breaking +-------- +* Support for retries enabled by default on all operations in the Java Management service + ==================== 2.53.1 - 2021-12-21 ==================== diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index ed4ec6e0e7..798747dd0c 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -5,7 +5,7 @@ Contributing to the Oracle Cloud Infrastructure Python SDK *This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.* Pull requests can be made under -`The Oracle Contributor Agreement `_ (OCA). +`The Oracle Contributor Agreement `_ (OCA). For pull requests to be accepted, the bottom of your commit message must have the following line using your name and diff --git a/docs/sdk_behaviors/allow_control_chars_response.rst b/docs/sdk_behaviors/allow_control_chars_response.rst new file mode 100644 index 0000000000..8016dc88f4 --- /dev/null +++ b/docs/sdk_behaviors/allow_control_chars_response.rst @@ -0,0 +1,26 @@ +.. _sdk-allow_control_chars_response: + +Allow control characters in response +~~~~~~~~ +The SDK helps deserialize any response object that is coming in from an API call. The deserialization uses the json library +to call json.loads(). By defaualt, the deserialization will not allow the response object to contain control characters in a string. +If the user chooses to allow control characters in a response, the SDK provides 3 option of settings to allow this feature: +* Request setting: Specify in the request to allow control characters +* Client setting: Set a specific service client's base client to allow control character +* Global setting: Set BaseClient to allow control characters on all response. + +The request setting will take the highest precedence, follow by the client setting, and finally global setting. + +Example +------- + +.. code-block:: python + + # Allowing control characters at the request level. + response = identity_client.list_region_subscriptions.list_region_subscriptions(compartment_id, allow_control_chars=True) + + # Allow control characters at the client level. + identity_client.base_client.allow_control_chars = True + + # Allow control characters at the global level. + BaseClient.ALLOW_CONTROL_CHARACTERS = True diff --git a/docs/sdk_behaviors/index.rst b/docs/sdk_behaviors/index.rst index 0041085cfd..831d08f94c 100644 --- a/docs/sdk_behaviors/index.rst +++ b/docs/sdk_behaviors/index.rst @@ -12,6 +12,7 @@ This section describes SDK-specific behaviors: * :doc:`Signing bodies ` * :doc:`Enable Selective Service Imports ` * :doc:`Circuit Breakers ` +* :doc:`Allow control characters in response ` .. toctree:: :hidden: @@ -24,4 +25,5 @@ This section describes SDK-specific behaviors: calculate_content_length signing_bodies enable_selective_service_imports - circuit_breakers \ No newline at end of file + circuit_breakers + allow_control_chars_response \ No newline at end of file diff --git a/examples/Resource_Principle_v2.2_Functions_example/func.py b/examples/Resource_Principle_v2.2_Functions_example/func.py index a3aa394e02..b51e969ba0 100644 --- a/examples/Resource_Principle_v2.2_Functions_example/func.py +++ b/examples/Resource_Principle_v2.2_Functions_example/func.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This example uses functions service to get the rpv2.2 token, for how to use functions, please refer fn Tutorials: https://fnproject.io/tutorials/ diff --git a/examples/add_API_key.py b/examples/add_API_key.py index e8f145e69d..6311754678 100644 --- a/examples/add_API_key.py +++ b/examples/add_API_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci diff --git a/examples/add_soc_group_policy.py b/examples/add_soc_group_policy.py index 758a5f21fa..d438da17d5 100755 --- a/examples/add_soc_group_policy.py +++ b/examples/add_soc_group_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from os import path diff --git a/examples/add_soc_user.py b/examples/add_soc_user.py index f452ee32ba..f8e5bcca06 100755 --- a/examples/add_soc_user.py +++ b/examples/add_soc_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from os import path diff --git a/examples/adw_example.py b/examples/adw_example.py index 4435aecb99..1cba4b4091 100644 --- a/examples/adw_example.py +++ b/examples/adw_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci diff --git a/examples/allow_control_characters_example.py b/examples/allow_control_characters_example.py new file mode 100644 index 0000000000..a671e365eb --- /dev/null +++ b/examples/allow_control_characters_example.py @@ -0,0 +1,14 @@ +# coding: utf-8 +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +import oci + + +config = oci.config.from_file() +compartment_id = config["tenancy"] +identity = oci.identity.IdentityClient(config) + +# list users from the compartmentId, adding allow_control_chars=True +# to the request will allow the response to contain control characters +users = identity.list_users(compartment_id, allow_control_chars=True) diff --git a/examples/budget_example.py b/examples/budget_example.py index 81099a7f62..4e70f74dd5 100644 --- a/examples/budget_example.py +++ b/examples/budget_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to you can create a budget and an alert rule on the budget. diff --git a/examples/change_instance_compartment_example.py b/examples/change_instance_compartment_example.py index 22db164827..1dc2b5fe2f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to move an instance from one compartment to another using Python SDK. diff --git a/examples/change_nat_gateway_compartment_example.py b/examples/change_nat_gateway_compartment_example.py index f9c9200fe0..e3ee56d1b2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This sample will create the VCN where the NAT Gateway will be created, and create the NAT Gateway that diff --git a/examples/change_service_gateway_compartment_example.py b/examples/change_service_gateway_compartment_example.py index 5c2b669db4..7bd931bbce 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to move a service gateway from one compartment to another using Python SDK. diff --git a/examples/check_lb_cert_validity.py b/examples/check_lb_cert_validity.py index 861706a031..a6975d237b 100644 --- a/examples/check_lb_cert_validity.py +++ b/examples/check_lb_cert_validity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script checks all load balancer certificates in the tenancy if they will remain valid diff --git a/examples/circuit_breaker_example.py b/examples/circuit_breaker_example.py index f1a9b98cdd..7ec7ac2af3 100644 --- a/examples/circuit_breaker_example.py +++ b/examples/circuit_breaker_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script showcases how to use circuit breaker at client level and retrieve all regions from a tenancy diff --git a/examples/circuit_breaker_with_shared_strategy_example.py b/examples/circuit_breaker_with_shared_strategy_example.py index 060e7551ce..b4e8f9b43c 100644 --- a/examples/circuit_breaker_with_shared_strategy_example.py +++ b/examples/circuit_breaker_with_shared_strategy_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script showcases how to use circuit breaker at client level and share the configuration across multiple clients diff --git a/examples/client_side_encryption/encrypt_in_object_storage.py b/examples/client_side_encryption/encrypt_in_object_storage.py index 917e6ca853..7dbf975a35 100644 --- a/examples/client_side_encryption/encrypt_in_object_storage.py +++ b/examples/client_side_encryption/encrypt_in_object_storage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Instructions: diff --git a/examples/client_side_encryption/encrypt_stream.py b/examples/client_side_encryption/encrypt_stream.py index 0a3d5fa818..3e50c36c18 100644 --- a/examples/client_side_encryption/encrypt_stream.py +++ b/examples/client_side_encryption/encrypt_stream.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Instructions: diff --git a/examples/client_side_encryption/encrypt_string_or_bytes.py b/examples/client_side_encryption/encrypt_string_or_bytes.py index 136ce5b563..8be4cc8e8a 100644 --- a/examples/client_side_encryption/encrypt_string_or_bytes.py +++ b/examples/client_side_encryption/encrypt_string_or_bytes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Instructions: diff --git a/examples/client_side_encryption/encrypt_string_or_bytes_with_signer.py b/examples/client_side_encryption/encrypt_string_or_bytes_with_signer.py index ea5bb89c8b..9a47dfe077 100644 --- a/examples/client_side_encryption/encrypt_string_or_bytes_with_signer.py +++ b/examples/client_side_encryption/encrypt_string_or_bytes_with_signer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Instructions: diff --git a/examples/cluster_networks_example.py b/examples/cluster_networks_example.py index 5eef7fdc8a..85e2e15158 100644 --- a/examples/cluster_networks_example.py +++ b/examples/cluster_networks_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides an example of how use the cluster networks SDK in terms of: diff --git a/examples/composite_operations_example.py b/examples/composite_operations_example.py index 4e88caf7a8..8322ce4230 100644 --- a/examples/composite_operations_example.py +++ b/examples/composite_operations_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to use composite operations in the Python SDK. Composite operations provide diff --git a/examples/composite_operations_work_request_example.py b/examples/composite_operations_work_request_example.py index a8e664745f..4c7d6b4ce4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to use composite operations via work request service in the Python SDK. diff --git a/examples/configuration_example.py b/examples/configuration_example.py index c1d7fe7588..9d78328cc0 100644 --- a/examples/configuration_example.py +++ b/examples/configuration_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how you can build Python SDK client's configuration. diff --git a/examples/container_engine.py b/examples/container_engine.py index e5443f7e15..e31d8ebcdb 100644 --- a/examples/container_engine.py +++ b/examples/container_engine.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import print_function diff --git a/examples/container_image_signing/example.py b/examples/container_image_signing/example.py index 500360fe03..8b3c37ec5d 100644 --- a/examples/container_image_signing/example.py +++ b/examples/container_image_signing/example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import logging diff --git a/examples/container_image_signing/utils.py b/examples/container_image_signing/utils.py index d081b5c161..ad92e278bf 100644 --- a/examples/container_image_signing/utils.py +++ b/examples/container_image_signing/utils.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/examples/copy_boot_volume_backup_example.py b/examples/copy_boot_volume_backup_example.py index 5499cf2171..96c4ef716b 100644 --- a/examples/copy_boot_volume_backup_example.py +++ b/examples/copy_boot_volume_backup_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This example demonstrates how to copy boot volume backups to a different region and wait on the copy status. diff --git a/examples/copy_volume_backup_example.py b/examples/copy_volume_backup_example.py index 78c11536d8..696bde3ec0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 8b3e34e6f7..af99066171 100644 --- a/examples/create_ipv6_example.py +++ b/examples/create_ipv6_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to create an IPv6 VNIC attachment to a provided diff --git a/examples/create_ipv6_load_balancer_example.py b/examples/create_ipv6_load_balancer_example.py index be4cb6c9c7..1b277d1b96 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to create an IPv6 load balancer using the Python SDK. diff --git a/examples/create_service_gateway_example.py b/examples/create_service_gateway_example.py index c2e343d241..8b37a9f3fa 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to create a Service Gateway. diff --git a/examples/data_labeling_service/create_dataset_example.py b/examples/data_labeling_service/create_dataset_example.py index eef5e82d73..848379d973 100644 --- a/examples/data_labeling_service/create_dataset_example.py +++ b/examples/data_labeling_service/create_dataset_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Example to create Dataset in Data Labeling Service diff --git a/examples/data_labeling_service_dataplane/create_annotation_example.py b/examples/data_labeling_service_dataplane/create_annotation_example.py index 0f5d53354d..1e62edc62b 100644 --- a/examples/data_labeling_service_dataplane/create_annotation_example.py +++ b/examples/data_labeling_service_dataplane/create_annotation_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Example to annotate record in the dataset diff --git a/examples/data_labeling_service_dataplane/create_record_example.py b/examples/data_labeling_service_dataplane/create_record_example.py index 9210bef218..1691439019 100644 --- a/examples/data_labeling_service_dataplane/create_record_example.py +++ b/examples/data_labeling_service_dataplane/create_record_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Example to create record in the dataset diff --git a/examples/data_science/model_deployment_example.py b/examples/data_science/model_deployment_example.py index 340d5a750e..5c05b62f6f 100644 --- a/examples/data_science/model_deployment_example.py +++ b/examples/data_science/model_deployment_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. """ diff --git a/examples/database/adb_example.py b/examples/database/adb_example.py index 0dee0e25a9..e4bdb42951 100644 --- a/examples/database/adb_example.py +++ b/examples/database/adb_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci diff --git a/examples/database_tools/adbs_create_connection_public_ip.py b/examples/database_tools/adbs_create_connection_public_ip.py index 59adebd8fa..fd6b5460af 100644 --- a/examples/database_tools/adbs_create_connection_public_ip.py +++ b/examples/database_tools/adbs_create_connection_public_ip.py @@ -1,36 +1,38 @@ -#!/usr/bin/env python3 -""" -Creates a connection to an Autonomous Databases with Shared Exadata Infrastructure. With a Public IP. -- Requires Database Tools Private Endpoint Reverse Connection: No -- Requires a KeyStore: Yes, for mTLS +# coding: utf-8 +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. -1- Create a new Autonomous Database -2- Create required secrets -3- Create a connection -4- Validate the connection -If variable do_clean_up_at_end is set to True, connection, secrets and DB are removed upon completion. - -Prerequisites are: -- A compartment_id where the vcn, autonomous database, vault and connection will reside. -- vault_id: a Vault created in KMS with at least one master key. +# Creates a connection to an Autonomous Databases with Shared Exadata Infrastructure. With a Public IP. +# - Requires Database Tools Private Endpoint Reverse Connection: No +# - Requires a KeyStore: Yes, for mTLS +# +# 1- Create a new Autonomous Database +# 2- Create required secrets +# 3- Create a connection +# 4- Validate the connection +# +# If variable do_clean_up_at_end is set to True, connection, secrets and DB are removed upon completion. +# +# Prerequisites are: +# - A compartment_id where the vcn, autonomous database, vault and connection will reside. +# - vault_id: a Vault created in KMS with at least one master key. -""" import oci from oci.config import from_file, validate_config +from utils.dbtools import get_dbtools_clients, get_database_clients, get_secrets_client, \ + get_kms_vault_client, get_vaults_clients, get_wallet_and_create_secrets, delete_secret from datetime import datetime, timedelta import pkg_resources -from zipfile import ZipFile -import io -import base64 # Specify Compartment to use for tests compartment_id = "ocid1.compartment.oc1.changeme" # Specify Vault id to use in the test. Must be in compartment_id and contain a master Key vault_id = "ocid1.vault.oc1.phx.changeme" -dbname = "DB12151133" +utc_now = datetime.utcnow() +dbname = "DB" + utc_now.strftime("%m%d%H%M") db_password = "example-password" db_password_secret_name = "db" + "this-is-not-the-secret" + dbname @@ -42,8 +44,7 @@ # Set do_clean_up_at_end to false to keep the autonomous database, secrets and connection created do_clean_up_at_end = True -# Variables -vault_key_id = None +# Variables that will be modified during the processing autonomous_database_id = None wallet_secret_id = None password_secret_id = None @@ -55,43 +56,6 @@ # Validate OCI Config validate_config(oci_config) - -def get_dbtools_clients(oci_config): - client = oci.database_tools.DatabaseToolsClient(config=oci_config) - # Composite client waits for async operations to complete. - composite_client = oci.database_tools.DatabaseToolsClientCompositeOperations(client) - return client, composite_client - - -def get_database_clients(oci_config): - client = oci.database.DatabaseClient(config=oci_config) - # Composite client waits for async operations to complete. - composite_client = oci.database.DatabaseClientCompositeOperations(client) - return client, composite_client - - -def get_secrets_client(oci_config): - client = oci.secrets.SecretsClient(config=oci_config) - return client - - -def get_kms_vault_client(oci_config): - client = oci.key_management.KmsVaultClient(config=oci_config) - return client - - -def get_kms_management_client(oci_config, service_endpoint): - client = oci.key_management.KmsManagementClient(config=oci_config, service_endpoint=service_endpoint) - return client - - -def get_vaults_clients(oci_config): - client = oci.vault.VaultsClient(config=oci_config) - # Composite client waits for async operations to complete. - composite_client = oci.vault.VaultsClientCompositeOperations(client) - return client, composite_client - - # Prepare all clients that we will need db_client, db_async_client = get_database_clients(oci_config) vaults_client, vaults_async_client = get_vaults_clients(oci_config) @@ -99,13 +63,12 @@ def get_vaults_clients(oci_config): secrets_client = get_secrets_client(oci_config) dbtools_client, dbtools_async_client = get_dbtools_clients(oci_config) - -def extract_zip(input_zip): - """ - Return a dict of Key=filename with Value=content from a zipped file - """ - input_zip = ZipFile(input_zip) - return {name: input_zip.read(name) for name in input_zip.namelist()} +# Prepare a dict that contains all the required clients +clients = {"db_client": db_client, "db_async_client": db_async_client, + "vaults_client": vaults_client, "vaults_async_client": vaults_async_client, + "kms_vault_client": kms_vault_client, + "secrets_client": secrets_client, + "dbtools_client": dbtools_client, "dbtools_async_client": dbtools_async_client} def create_db(compartment_id, database_name, database_password, db_workload="OLTP"): @@ -115,7 +78,7 @@ def create_db(compartment_id, database_name, database_password, db_workload="OLT global autonomous_database_id # If an autonomous db with same name already exists, return the OCID of the existing db - list_db_response = db_client.list_autonomous_databases( + list_db_response = clients["db_client"].list_autonomous_databases( compartment_id=compartment_id, display_name=database_name ) @@ -138,7 +101,7 @@ def create_db(compartment_id, database_name, database_password, db_workload="OLT ) print(f"Creating Database with name {database_name}...") - create_db_response = db_async_client.create_autonomous_database_and_wait_for_state( + create_db_response = clients["db_async_client"].create_autonomous_database_and_wait_for_state( create_autonomous_database_details=db_details, wait_for_states=["FAILED", "AVAILABLE", "CANCELED"] ) @@ -151,131 +114,6 @@ def create_db(compartment_id, database_name, database_password, db_workload="OLT print(f"Created Database with name {database_name} and OCID {autonomous_database_id}") -def extract_vault_first_master_key(): - """ - Extract the first Master key from the Vault - """ - global vault_key_id - - if vault_key_id is None: - vault_response = kms_vault_client.get_vault(vault_id) - assert vault_response, "get_vault should return a response" - assert vault_response.data, "Vault Response should contain data" - - print(f"Vault {vault_id} management endpoint is {vault_response.data.management_endpoint}") - kms_management_client = get_kms_management_client(oci_config, - service_endpoint=vault_response.data.management_endpoint) - - # Note: Vault must be in same compartment as DB - keys_response = kms_management_client.list_keys(compartment_id) - assert keys_response, "list_keys should return a response" - assert keys_response.data, "KMS Response should contain data" - vault_key_id = next((k.id for k in keys_response.data), None) - print(f"Vault {vault_id} key id is {vault_key_id}") - - -def create_secret(name: str, base64Secret: str): - """ - Create a secret using the specified name. The content is in base64Secret. - If a secret with that name already exists, we simply return its OCID. - """ - extract_vault_first_master_key() # Make sure that we have a master key - - try: - print("Trying to read the secret by name before creating it...") - bundle_response = secrets_client.get_secret_bundle_by_name(secret_name=name, vault_id=vault_id, stage="CURRENT") - if bundle_response is not None and \ - bundle_response.data is not None \ - and bundle_response.data.secret_id is not None: - secret_id = bundle_response.data.secret_id - print(f"Secret with name {name} found! It will be used instead, secret id: {secret_id}") - return secret_id - except Exception: - print(f"Secret with name {name} not found, it will be created...") - - secret_details = oci.vault.models.CreateSecretDetails( - vault_id=vault_id, - key_id=vault_key_id, - compartment_id=compartment_id, - secret_name=name, - secret_content=oci.vault.models.Base64SecretContentDetails( - content=base64Secret - ) - ) - - create_secret_response = vaults_async_client.create_secret_and_wait_for_state( - secret_details, wait_for_states=["FAILED", "ACTIVE", "CANCELED"]) - assert create_secret_response, "create_secret_and_wait_for_state should return a response" - assert create_secret_response.data, "Secret Response should contain data" - - status = create_secret_response.data.lifecycle_state - secret_id = create_secret_response.data.id - assert status == "ACTIVE", "Creating Secret should succeed" - print(f"Created Secret. Status: {status}, name: {name}, secret id: {secret_id}.") - return secret_id - - -def delete_secret(secret_id, deletion_time): - print(f"Deleting secret id {secret_id}") - secret_deletion_details = oci.vault.models.ScheduleSecretDeletionDetails( - time_of_deletion=deletion_time - ) - - # Mark the secret for deletion - delete_secret_response = vaults_client.schedule_secret_deletion(secret_id, secret_deletion_details) - assert delete_secret_response, "schedule_secret_deletion should return a response" - - -def get_wallet_and_create_secrets(): - """ - Extract the wallet from the Autonomous Database - We will store the wallet as a Secret in the vault - We will also store the database password as a Secret in the vault - """ - global wallet_secret_id, password_secret_id - - # We will extract wallet and prepare to store wallet as a secret under name X. If name X already exists, - # we will simply use it. - print("Extracting Wallet from DB and storing in Vault") - - # 1. Get DB - autonomous_database_response = db_client.get_autonomous_database(autonomous_database_id) - assert autonomous_database_response, "get_autonomous_database should return a response" - assert autonomous_database_response.data, "Autonomous db Response should contain data" - - # 2. Extract Wallet from DB - # Create a wallet details object - db_wallet = oci.database.models.GenerateAutonomousDatabaseWalletDetails( - password="example-password" - ) - - print("Extracting Wallet...") - # Generate the wallet and store the response object - db_wallet_response = db_client.generate_autonomous_database_wallet( - autonomous_database_id=autonomous_database_id, - generate_autonomous_database_wallet_details=db_wallet, - ) - - assert db_wallet_response, "no wallet returned" - assert db_wallet_response.data, "no wallet data returned" - assert db_wallet_response.data.content, "no wallet content data returned" - - # Unzip the Wallet in memory to extract the SSO - filename_to_extract = "cwallet.sso" - mem_file = io.BytesIO(db_wallet_response.data.content) - zip_data = extract_zip(mem_file) - sso_data = zip_data.get(filename_to_extract, None) - assert sso_data, f"{filename_to_extract} not found in wallet" - base64_sso_str = base64.b64encode(sso_data).decode() - - # 3. Store Wallet in vault and get that secret (Might already be there - wallet_secret_id = create_secret(db_wallet_secret_name, base64_sso_str) - - # 4. Store the DB password in the vault as a secret under name X. If name X already exists, we will simply use it. - base64_db_password_str = base64.b64encode(db_password.encode()).decode() - password_secret_id = create_secret(db_password_secret_name, base64_db_password_str) - - def do_connection_tests(): """ Do tests related to DBTools Connections @@ -284,17 +122,24 @@ def do_connection_tests(): - Update Connection - Validate Connection. This makes sure that we can use this connection to connect to the DB. """ - global connection_id + global connection_id, wallet_secret_id, password_secret_id print("===DBTools Service - Connections") # 1.get DB - autonomous_database_response = db_client.get_autonomous_database(autonomous_database_id) + autonomous_database_response = clients["db_client"].get_autonomous_database(autonomous_database_id) assert autonomous_database_response, "No autonomous database found" - assert autonomous_database_response.data, "should contain data" + assert autonomous_database_response.data, "get_autonomous_database should return data" autonomous_database = autonomous_database_response.data # 2. Prepare Wallet and secrets - get_wallet_and_create_secrets() + wallet_secret_id, password_secret_id = get_wallet_and_create_secrets(oci_config=oci_config, + compartment_id=compartment_id, + clients=clients, + autonomous_database_id=autonomous_database_id, + vault_id=vault_id, + db_wallet_secret_name=db_wallet_secret_name, + db_password_secret_name=db_password_secret_name, + db_password=db_password) # 3. get Connection string with mTLS from DB assert autonomous_database.connection_strings @@ -331,8 +176,7 @@ def do_connection_tests(): user_password = oci.database_tools.models.DatabaseToolsUserPasswordSecretIdDetails( secret_id=password_secret_id) - utc_now = datetime.utcnow().strftime("%Y-%m-%d_%H-%M-%S") - display_name = "conn_pysdk_" + utc_now + display_name = "conn_pysdk_" + utc_now.strftime("%Y-%m-%d_%H-%M-%S") related_resource = oci.database_tools.models.CreateDatabaseToolsRelatedResourceDetails( entity_type=oci.database_tools.models.CreateDatabaseToolsRelatedResourceDetails.ENTITY_TYPE_AUTONOMOUSDATABASE, identifier=autonomous_database_id) @@ -346,14 +190,14 @@ def do_connection_tests(): related_resource=related_resource, key_stores=[key_store] ) - create_db_response = dbtools_async_client.create_database_tools_connection_and_wait_for_state( + create_conn_response = clients["dbtools_async_client"].create_database_tools_connection_and_wait_for_state( conn_details_for_create, wait_for_states=["FAILED", "SUCCEEDED", "CANCELED"]) - assert create_db_response, "create_database_tools_connection_and_wait_for_state should return a response" - assert create_db_response.data, "Create db Response should contain data" + assert create_conn_response, "create_database_tools_connection_and_wait_for_state should return a response" + assert create_conn_response.data, "Create db Response should contain data" - status = create_db_response.data.status - connection_id = create_db_response.data.resources[0].identifier + status = create_conn_response.data.status + connection_id = create_conn_response.data.resources[0].identifier print(f"Creating Connection. Status: {status}, name: {display_name}, connection id: {connection_id}.") assert status == "SUCCEEDED", "Create Connection should succeed" @@ -361,7 +205,7 @@ def do_connection_tests(): # 6. Get connection that we just created BY Id # print("===Connection - Get by id:", connection_id) - connection = dbtools_client.get_database_tools_connection(connection_id) + connection = clients["dbtools_client"].get_database_tools_connection(connection_id) print("Read created Connection:", connection.data) assert connection.data is not None, "Created Connection data should exist" assert connection.data.display_name == display_name, "Unexpected Connection display name" @@ -374,11 +218,12 @@ def do_connection_tests(): print("===Connection - Update by id:", connection_id) connection_details_for_update = oci.database_tools.models.UpdateDatabaseToolsConnectionOracleDatabaseDetails( display_name=display_name + "_updated") - result = dbtools_async_client.update_database_tools_connection_and_wait_for_state(connection_id, - connection_details_for_update, - wait_for_states=["FAILED", - "SUCCEEDED", - "CANCELED"]) + result = clients["dbtools_async_client"].update_database_tools_connection_and_wait_for_state(connection_id, + connection_details_for_update, + wait_for_states=[ + "FAILED", + "SUCCEEDED", + "CANCELED"]) status = result.data.status print( f"Updating Connection. Status: {status}, name: {display_name}, connection id: {connection_id}.") @@ -388,7 +233,7 @@ def do_connection_tests(): # 8. Get connection that we just updated BY Id # print("===Connection - after update - Get by id:", connection_id) - connection = dbtools_client.get_database_tools_connection(connection_id) + connection = clients["dbtools_client"].get_database_tools_connection(connection_id) assert connection.data is not None, "Updated Connection data should exist" assert connection.data.display_name != display_name, "Unexpected Connection display name after update" assert connection.data.lifecycle_state == "ACTIVE", "Connection should be ACTIVE after update" @@ -399,27 +244,28 @@ def do_connection_tests(): print("===Connection - Validate by id:", connection_id) validate_detail = oci.database_tools.models.ValidateDatabaseToolsConnectionOracleDatabaseDetails( type="ORACLE_DATABASE") - result = dbtools_client.validate_database_tools_connection(connection_id, validate_detail) + result = clients["dbtools_client"].validate_database_tools_connection(connection_id, validate_detail) assert result.data is not None, "validation should return a validation info" print("Validation Result:", result.data) assert result.data.code == "OK", "validation should pass" -def do_connection_tests_cleanup(): +def do_connection_cleanup(conn_id): """ Delete the connection that we used for our tests """ if connection_id: - print("===Connection - Delete by id:", connection_id) - result = dbtools_async_client.delete_database_tools_connection_and_wait_for_state(connection_id, - wait_for_states=["FAILED", - "SUCCEEDED", - "CANCELED"]) + print("===Connection - Delete by id:", conn_id) + result = clients["dbtools_async_client"].delete_database_tools_connection_and_wait_for_state(conn_id, + wait_for_states=[ + "FAILED", + "SUCCEEDED", + "CANCELED"]) if result and result.data: status = result.data.status print( - f"delete_database_tools_connection_and_wait_for_state. Status: {status}, connection id: {connection_id}.") + f"delete_database_tools_connection_and_wait_for_state. Status: {status}, connection id: {conn_id}.") assert status == "SUCCEEDED", "Delete Connection should succeed" else: print("Error. do_connection_tests_cleanup failed") @@ -427,22 +273,23 @@ def do_connection_tests_cleanup(): print("Error. do_connection_tests_cleanup skipped") -def do_secrets_cleanup(): +def do_secrets_cleanup(secrets_ids, days=2): """ - Delete the secrets that we used for our tests + Delete the secrets that we used in our tests """ # Delete Secret in vault clean-up - secret_deletion_time = datetime.now() + timedelta(days=2) - if password_secret_id: - delete_secret(password_secret_id, secret_deletion_time) - if password_secret_id: - delete_secret(wallet_secret_id, secret_deletion_time) + secret_deletion_time = datetime.now() + timedelta(days=days) + for secret_id in secrets_ids: + if secret_id: + delete_secret(clients, + secret_id=secret_id, + deletion_time=secret_deletion_time) -def do_db_delete(): +def do_db_delete(adb_id): # Beware, this actually DELETES the specified DB - db_client.delete_autonomous_database(autonomous_database_id) - print(f"TERMINATED Autonomous Database: {autonomous_database_id}") + clients["db_client"].delete_autonomous_database(adb_id) + print(f"TERMINATED Autonomous Database: {adb_id}") # @@ -468,9 +315,9 @@ def do_db_delete(): # Clean-up if do_clean_up_at_end: print("Starting resource clean-up.") - do_connection_tests_cleanup() - do_secrets_cleanup() - do_db_delete() + do_connection_cleanup(connection_id) + do_secrets_cleanup([password_secret_id, wallet_secret_id]) + do_db_delete(autonomous_database_id) print("Clean-up completed.") else: print("Skipping resource clean-up.") diff --git a/examples/database_tools/adbs_create_connection_with_pe.py b/examples/database_tools/adbs_create_connection_with_pe.py new file mode 100644 index 0000000000..4fbc83c21d --- /dev/null +++ b/examples/database_tools/adbs_create_connection_with_pe.py @@ -0,0 +1,338 @@ +# coding: utf-8 +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + + +# Creates a connection to an Autonomous Databases with Shared Exadata Infrastructure (ADB-S) with Private Endpoint (PE) +# - Requires Database Tools Private Endpoint Reverse Connection: Yes +# - Requires a KeyStore: Yes, for mTLS +# +# 1- Create a Database Tools Private Endpoint for A Reverse Connection to the PE of the ADB-S +# 2- Create required secrets +# 3- Create a connection +# 4- Validate the connection +# +# Prerequisites are: +# - An ADB-S created following the instructions from: https://docs.oracle.com/en-us/iaas/Content/Database/Concepts/adbsprivateaccess.htm +# - A compartment Id where the vcn, autonomous database, vault, private endpoint and connection will reside +# - vault_id: a vault created in KMS with at least one master key. +# - subnet_id of the Database Tools Private Endpoint and the PE of the ADB-S. Best practice is use separate subnets. + +import oci +from oci.config import from_file, validate_config +from utils.dbtools import get_dbtools_clients, get_database_clients, get_secrets_client, \ + get_kms_vault_client, get_vaults_clients, delete_secret, get_wallet_and_create_secrets + +from datetime import datetime, timedelta +import pkg_resources + +# Specify ADB-S id +autonomous_database_id = "ocid1.autonomousdatabase.oc1.changeme" +# Specify Compartment and subnet to use for tests +compartment_id = "ocid1.compartment.oc1.changeme" +# Specify vault id to use in the test. Must in compartment_name +vault_id = "ocid1.vault.oc1.changeme" +# Specify subnet id +subnet_id = "ocid1.subnet.oc1.changeme" + +db_password = "example-password" + +utc_now = datetime.utcnow() +db_password_secret_name = "db" + "this-is-not-the-secret" + "dbname" +db_wallet_secret_name = "wallet" + "this-is-not-the-secret" + "dbname" + +# Display OCI Python SDK version +print("oci version:", pkg_resources.get_distribution("oci").version) + +# Set do_clean_up_at_end to false to keep the Database Tools Private Endpoint, secrets and connection created +do_clean_up_at_end = True + +# Variables +wallet_secret_id = None +password_secret_id = None +private_endpoint_id = None +connection_id = None + +# Load OCI Config +oci_config = from_file(file_location="~/.oci/config", profile_name="DEFAULT") + +# Validate OCI Config +validate_config(oci_config) + +# Prepare all clients that we will need +db_client, db_async_client = get_database_clients(oci_config) +vaults_client, vaults_async_client = get_vaults_clients(oci_config) +kms_vault_client = get_kms_vault_client(oci_config) +secrets_client = get_secrets_client(oci_config) +dbtools_client, dbtools_async_client = get_dbtools_clients(oci_config) + +# Prepare a dict that contains all the required clients +clients = {"db_client": db_client, "db_async_client": db_async_client, + "vaults_client": vaults_client, "vaults_async_client": vaults_async_client, + "kms_vault_client": kms_vault_client, + "secrets_client": secrets_client, + "dbtools_client": dbtools_client, "dbtools_async_client": dbtools_async_client} + + +def get_endpoint_services(): + """ + DBTools Endpoints Services + """ + print("===DBTools Service - Endpoint Services") + + endpoint_services_response = clients["dbtools_client"].list_database_tools_endpoint_services(compartment_id) + + assert endpoint_services_response, "list_database_tools_endpoint_services should return a response" + assert endpoint_services_response.data, "endpoint_services should return data" + assert endpoint_services_response.data.items, "endpoint_services should contain a list of endpoints" + + # Use the first endpoint_service + endpoint_service = endpoint_services_response.data.items[0] + print(f"===Endpoints Services - Using {endpoint_service}.") + assert endpoint_service.lifecycle_state == "ACTIVE", "endpoint_service must be ACTIVE" + + return endpoint_service.id + + +def create_private_endpoint(endpoint_service_id): + """ + Create a DBTools Private Endpoint + """ + global private_endpoint_id + + print("===DBTools Service - Private Endpoints") + + # + # Create a Database Tools Private Endpoint + # + display_name = "pe_pysdk_" + utc_now.strftime("%Y-%m-%d_%H-%M-%S") + description = "test with Python SDK" + pe_details_for_create = oci.database_tools.models.CreateDatabaseToolsPrivateEndpointDetails( + compartment_id=compartment_id, + endpoint_service_id=endpoint_service_id, + subnet_id=subnet_id, + display_name=display_name, + description=description) + print("===Private Endpoint - Create") + create_pe_response = clients["dbtools_async_client"].create_database_tools_private_endpoint_and_wait_for_state( + pe_details_for_create, wait_for_states=["FAILED", "SUCCEEDED", "CANCELED"]) + + assert create_pe_response, "create_database_tools_private_endpoint_and_wait_for_state should return a response" + assert create_pe_response.data, "create_database_tools_private_endpoint_and_wait_for_state should return data" + + status = create_pe_response.data.status + private_endpoint_id = create_pe_response.data.resources[0].identifier + print(f"Database Tools Private Endpoint created. Status: {status}, name: {display_name}, pe id: {private_endpoint_id}.") + assert status == "SUCCEEDED", "Create Private Endpoint should succeed" + + # + # Get the Private Endpoint by Id + # + print("===Private endpoints - Get by id:", private_endpoint_id) + get_pe_response = clients["dbtools_client"].get_database_tools_private_endpoint(private_endpoint_id) + print("Read created Private Endpoint:", get_pe_response.data) + assert get_pe_response, "get_database_tools_private_endpoint should return a response" + assert get_pe_response.data, "get_database_tools_private_endpoint should return data" + assert get_pe_response.data.lifecycle_state == "ACTIVE", "Private Endpoint should be ACTIVE" + + +def create_connection(): + """ + Do tests related to DBTools Connections + - Create Connection + - Get created connection + - Validate Connection. This makes sure that we can use this connection to connect to the ADB-S. + """ + global connection_id, wallet_secret_id, password_secret_id + print("===DBTools Service - Connections") + + # 1.get ADB-S + autonomous_database_response = clients["db_client"].get_autonomous_database(autonomous_database_id) + assert autonomous_database_response, "No autonomous database found" + assert autonomous_database_response.data, "should contain data" + autonomous_database = autonomous_database_response.data + + # 2. Prepare Wallet and secrets + wallet_secret_id, password_secret_id = get_wallet_and_create_secrets(oci_config=oci_config, + compartment_id=compartment_id, + clients=clients, + autonomous_database_id=autonomous_database_id, + vault_id=vault_id, + db_wallet_secret_name=db_wallet_secret_name, + db_password_secret_name=db_password_secret_name, + db_password=db_password) + + # 3. get mTLS Connection string from DB + assert autonomous_database.connection_strings + assert autonomous_database.connection_strings.profiles + profiles = autonomous_database.connection_strings.profiles + + m_tls = oci.database.models.DatabaseConnectionStringProfile.TLS_AUTHENTICATION_MUTUAL + low = oci.database.models.DatabaseConnectionStringProfile.CONSUMER_GROUP_LOW + connection_string = next((p.value for p in profiles if + p.tls_authentication == m_tls and p.consumer_group == low), None) + + print(f"Using connection_string {connection_string}") + + # 4. create SSO keyStore using wallet_secret_id + key_store = oci.database_tools.models.DatabaseToolsKeyStoreDetails( + key_store_type=oci.database_tools.models.DatabaseToolsKeyStoreDetails.KEY_STORE_TYPE_SSO, + key_store_content=oci.database_tools.models.DatabaseToolsKeyStoreContentSecretIdDetails( + value_type=oci.database_tools.models.DatabaseToolsKeyStoreContentSecretIdDetails.VALUE_TYPE_SECRETID, + secret_id=wallet_secret_id) + ) + + # + # 5. Create connection using: + # - DB Compartment + # - Connection String + # - dbUser + # - dbPasswordSecretId + # - Time generated display name + # - Related Resource ... + # - keyStore + # + print("===Connection - Create") + user_name = "admin" + user_password = oci.database_tools.models.DatabaseToolsUserPasswordSecretIdDetails( + secret_id=password_secret_id) + + display_name = "conn_pysdk_" + utc_now.strftime("%Y-%m-%d_%H-%M-%S") + related_resource = oci.database_tools.models.CreateDatabaseToolsRelatedResourceDetails( + entity_type=oci.database_tools.models.CreateDatabaseToolsRelatedResourceDetails.ENTITY_TYPE_AUTONOMOUSDATABASE, + identifier=autonomous_database_id) + + conn_details_for_create = oci.database_tools.models.CreateDatabaseToolsConnectionOracleDatabaseDetails( + compartment_id=compartment_id, + connection_string=connection_string, + user_name=user_name, + user_password=user_password, + display_name=display_name, + private_endpoint_id=private_endpoint_id, + related_resource=related_resource, + key_stores=[key_store] + ) + create_conn_response = clients["dbtools_async_client"].create_database_tools_connection_and_wait_for_state( + conn_details_for_create, wait_for_states=["FAILED", "SUCCEEDED", "CANCELED"]) + + assert create_conn_response, "create_database_tools_connection_and_wait_for_state should return a response" + assert create_conn_response.data, "Create db Response should contain data" + + status = create_conn_response.data.status + connection_id = create_conn_response.data.resources[0].identifier + print(f"Creating Connection. Status: {status}, name: {display_name}, connection id: {connection_id}.") + assert status == "SUCCEEDED", "Create Connection should succeed" + + # + # 6. Get connection that we just created BY Id + # + print("===Connection - Get by id:", connection_id) + connection = clients["dbtools_client"].get_database_tools_connection(connection_id) + print("Read created Connection:", connection.data) + assert connection.data, "Created Connection data should exist" + assert connection.data.display_name == display_name, "Unexpected Connection display name" + assert connection.data.lifecycle_state == "ACTIVE", "Connection should be ACTIVE" + + # + # 7. Validate Connection + # + print("===Connection - Validate by id:", connection_id) + validate_detail = oci.database_tools.models.ValidateDatabaseToolsConnectionOracleDatabaseDetails( + type="ORACLE_DATABASE") + result = clients["dbtools_client"].validate_database_tools_connection(connection_id, validate_detail) + assert result.data, "Validation should return a validation info" + print("Validation Result:", result.data) + assert result.data.code == "OK", "Created connection should be valid" + + +def do_connection_cleanup(conn_id): + """ + Delete the connection that we used for our tests + """ + if conn_id: + print("===Connection - Delete by id:", conn_id) + result = clients["dbtools_async_client"].delete_database_tools_connection_and_wait_for_state(conn_id, + wait_for_states=[ + "FAILED", + "SUCCEEDED", + "CANCELED"]) + + if result and result.data: + status = result.data.status + print( + f"delete_database_tools_connection_and_wait_for_state. Status: {status}, connection id: {conn_id}.") + assert status == "SUCCEEDED", "Delete Connection should succeed" + else: + print("Error. do_connection_tests_cleanup failed") + else: + print("Error. do_connection_tests_cleanup skipped") + + +def do_private_endpoint_cleanup(pe_id): + """ + Delete the Database Tools Private endpoint that we used for our tests + """ + if pe_id: + print("===Private Endpoint - Delete by id:", pe_id) + result = clients["dbtools_async_client"].delete_database_tools_private_endpoint_and_wait_for_state(pe_id, + wait_for_states=[ + "FAILED", + "SUCCEEDED", + "CANCELED"]) + + if result and result.data: + status = result.data.status + print( + f"delete_database_tools_private_endpoint_and_wait_for_state. Status: {status}, connection id: {pe_id}.") + assert status == "SUCCEEDED", "Delete Private Endpoint should succeed" + else: + print("Error. do_private_endpoint_cleanup failed") + else: + print("Error. do_private_endpoint_cleanup skipped") + + +def do_secrets_cleanup(secrets_ids, days=2): + """ + Delete the secrets that we used for our tests + """ + # Delete Secret in vault clean-up + secret_deletion_time = datetime.now() + timedelta(days=days) + for secret_id in secrets_ids: + if secret_id: + delete_secret(clients, + secret_id=secret_id, + deletion_time=secret_deletion_time) + + +# +# main logic +# +if __name__ == "__main__": + # Output Colors + OKGREEN = '\033[92m' + FAIL = '\033[91m' + ENDC = '\033[0m' + + try: + # Endpoint Service + endpoint_service_id = get_endpoint_services() + + # Create a Database Tools Private Endpoint + create_private_endpoint(endpoint_service_id) + + # Create and Validate a Database Tools Connection + create_connection() + + print(f"{OKGREEN}Python SDK Test completed OK{ENDC}") + except Exception as e: + print(f"{FAIL}Exception during tests:{ENDC} {e}") + finally: + # Clean-up + if do_clean_up_at_end: + print("Starting resource clean-up.") + do_connection_cleanup(connection_id) + do_private_endpoint_cleanup(private_endpoint_id) + do_secrets_cleanup([password_secret_id, wallet_secret_id]) + print("Clean-up completed.") + else: + print("Skipping resource clean-up.") diff --git a/examples/database_tools/db_system_create_connection_private_subnet.py b/examples/database_tools/db_system_create_connection_private_subnet.py new file mode 100644 index 0000000000..ebc2e96879 --- /dev/null +++ b/examples/database_tools/db_system_create_connection_private_subnet.py @@ -0,0 +1,356 @@ +# coding: utf-8 +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + + +# Creates a connection to a VM DB System with Private Endpoint (PE) in a Private Subnet +# - Requires Database Tools Private Endpoint Reverse Connection: Yes +# - Requires a KeyStore: No +# +# 1- Create a Database Tools Private Endpoint for A Reverse Connection to the VM DB System +# 2- Create required secrets +# 3- Create a connection +# 4- Validate the connection +# +# Prerequisites are: +# - An DB system created following the instructions from: https://docs.oracle.com/en-us/iaas/Content/Database/Tasks/creatingDBsystem.htm with NSG for port 1521 +# - A compartment Id where the vcn, DB System, vault, private endpoint and connection will reside +# - vault_id: a vault created in KMS with at least one master key. +# - subnet_id of the Database Tools Private Endpoint and the DB system. Best practice is to use a private subnet. + +import oci +from oci.config import from_file, validate_config +from utils.dbtools import get_dbtools_clients, get_database_clients, get_secrets_client, \ + get_kms_vault_client, get_vaults_clients, create_secret, delete_secret + +from datetime import datetime, timedelta +import pkg_resources +import base64 + +# Specify Compartment and subnet to use for tests +compartment_id = "ocid1.compartment.oc1.changeme" +# Specify vault id to use in the test. Must in compartment_name +vault_id = "ocid1.vault.oc1.changeme" +# Specify subnet id +subnet_id = "ocid1.subnet.oc1.changeme" +# Specify VM DB System Id +db_system_id = "ocid1.dbsystem.oc1.changeme" +# Specify VM DB Password +db_password = "example-password" + +utc_now = datetime.utcnow() +db_password_secret_name = "db_password_SDK_" + utc_now.strftime("%m-%d%.%H%M") + +# Display OCI Python SDK version +print("oci version:", pkg_resources.get_distribution("oci").version) + +# Set do_clean_up_at_end to false to keep the Database Tools Private Endpoint, secrets and connection created +do_clean_up_at_end = True + +# Variables that will be modified during the processing +vault_key_id = None +password_secret_id = None +private_endpoint_id = None +connection_id = None + +# Load OCI Config +oci_config = from_file(file_location="~/.oci/config", profile_name="DEFAULT") + +# Validate OCI Config +validate_config(oci_config) + +# Prepare all clients that we will need +db_client, db_async_client = get_database_clients(oci_config) +vaults_client, vaults_async_client = get_vaults_clients(oci_config) +kms_vault_client = get_kms_vault_client(oci_config) +secrets_client = get_secrets_client(oci_config) +dbtools_client, dbtools_async_client = get_dbtools_clients(oci_config) + +# Prepare a dict that contains all the required clients +clients = {"db_client": db_client, "db_async_client": db_async_client, + "vaults_client": vaults_client, "vaults_async_client": vaults_async_client, + "kms_vault_client": kms_vault_client, + "secrets_client": secrets_client, + "dbtools_client": dbtools_client, "dbtools_async_client": dbtools_async_client} + + +def get_endpoint_services(): + """ + DBTools Endpoints Services + """ + print("===DBTools Service - Endpoint Services") + + endpoint_services_response = clients["dbtools_client"].list_database_tools_endpoint_services(compartment_id) + + assert endpoint_services_response, "list_database_tools_endpoint_services should return a response" + assert endpoint_services_response.data, "endpoint_services should return data" + assert endpoint_services_response.data.items, "endpoint_services should contain a list of endpoints" + + # Use the first endpoint_service + endpoint_service = endpoint_services_response.data.items[0] + print(f"===Endpoints Services - Using {endpoint_service}.") + assert endpoint_service.lifecycle_state == "ACTIVE", "endpoint_service must be ACTIVE" + + return endpoint_service.id + + +def create_private_endpoint(endpoint_service_id): + """ + Create a DBTools Private Endpoint + """ + global private_endpoint_id + + print("===DBTools Service - Private Endpoints") + + # + # Create a Database Tools Private Endpoint + # + display_name = "pe_pysdk_" + utc_now.strftime("%Y-%m-%d_%H-%M-%S") + description = "test with Python SDK" + pe_details_for_create = oci.database_tools.models.CreateDatabaseToolsPrivateEndpointDetails( + compartment_id=compartment_id, + endpoint_service_id=endpoint_service_id, + subnet_id=subnet_id, + display_name=display_name, + description=description) + print("===Private Endpoint - Create") + create_pe_response = clients["dbtools_async_client"].create_database_tools_private_endpoint_and_wait_for_state( + pe_details_for_create, wait_for_states=["FAILED", "SUCCEEDED", "CANCELED"]) + + assert create_pe_response, "create_database_tools_private_endpoint_and_wait_for_state should return a response" + assert create_pe_response.data, "create_database_tools_private_endpoint_and_wait_for_state should return data" + + status = create_pe_response.data.status + private_endpoint_id = create_pe_response.data.resources[0].identifier + print(f"Database Tools Private Endpoint created. Status: {status}, name: {display_name}, pe id: {private_endpoint_id}.") + assert status == "SUCCEEDED", "Create Private Endpoint should succeed" + + # + # Get the Private Endpoint by Id + # + print("===Private endpoints - Get by id:", private_endpoint_id) + get_pe_response = clients["dbtools_client"].get_database_tools_private_endpoint(private_endpoint_id) + print("Read created Private Endpoint:", get_pe_response.data) + assert get_pe_response, "get_database_tools_private_endpoint should return a response" + assert get_pe_response.data, "get_database_tools_private_endpoint should return data" + assert get_pe_response.data.lifecycle_state == "ACTIVE", "Private Endpoint should be ACTIVE" + + +def create_connection(): + """ + Do tests related to DBTools Connections + - Create Connection + - Get created connection + - Validate Connection. This makes sure that we can use this connection to connect to the ADB-S. + """ + global connection_id, password_secret_id, vault_key_id + print("===DBTools Service - Connections") + + # 1. Get Connection String for VM DB System + # + # - List dbHomes in compartment for our dbSystemId + # - Take the first + # - List database in compartment for the dbHome of our DB System + # - Take the 1 one that matches dbSystemId + # - List pdbs in database + # - Take the 1 one/ + # - connection string is in pdb_default of the connection strings. + + # List db_homes in compartment for our db_system_id + db_homes_response = clients["db_client"].list_db_homes( + compartment_id=compartment_id, + db_system_id=db_system_id + ) + assert db_homes_response, "list_db_homes should return a response" + assert db_homes_response.data, "list_db_homes should return data" + db_home = db_homes_response.data[0] + db_home_id = db_home.id + + # List databases in compartment for the dbHome of our DB System + databases_response = clients["db_client"].list_databases( + compartment_id=compartment_id, + db_home_id=db_home_id + ) + assert databases_response, "list_databases should return a response" + assert databases_response.data, "list_databases should return data" + database_summary = databases_response.data[0] + + assert database_summary.db_system_id == db_system_id, "This database should be for our VM DB System" + print("database:", database_summary) + + # List pdbs in database + pdbs_response = clients["db_client"].list_pluggable_databases( + database_id=database_summary.id + ) + assert pdbs_response, "list_pluggable_databases should return a response" + assert pdbs_response.data, "list_pluggable_databases should return data" + pdb = pdbs_response.data[0] + + assert pdb.connection_strings, "pdb should have connection_strings" + assert pdb.connection_strings.pdb_default, "pdb should have a default pdb connection_string" + connection_string = pdb.connection_strings.pdb_default + print(f"Using connection_string {connection_string}") + + # 4. Store the DB password in the vault as a secret under name X. If name X already exists, we will simply use it. + base64_db_password_str = base64.b64encode(db_password.encode()).decode() + password_secret_id, vault_key_id = create_secret(oci_config, + compartment_id=compartment_id, + clients=clients, + vault_id=vault_id, + vault_key_id=vault_key_id, + name=db_password_secret_name, + base64_password=base64_db_password_str) + + # + # 2. Create connection using: + # - DB Compartment + # - Connection String + # - dbUser + # - dbPasswordSecretId + # - Time generated display name + # - Related Resource + # - Advanced property since we want to connect with SYS as SYSDBA + # + print("===Connection - Create") + user_name = "system" + user_password = oci.database_tools.models.DatabaseToolsUserPasswordSecretIdDetails( + secret_id=password_secret_id) + + display_name = "conn_pysdk_" + utc_now.strftime("%Y-%m-%d_%H-%M-%S") + related_resource = oci.database_tools.models.CreateDatabaseToolsRelatedResourceDetails( + entity_type=oci.database_tools.models.CreateDatabaseToolsRelatedResourceDetails.ENTITY_TYPE_PLUGGABLEDATABASE, + identifier=db_system_id) + + conn_details_for_create = oci.database_tools.models.CreateDatabaseToolsConnectionOracleDatabaseDetails( + compartment_id=compartment_id, + connection_string=connection_string, + user_name=user_name, + user_password=user_password, + display_name=display_name, + private_endpoint_id=private_endpoint_id, + related_resource=related_resource + ) + create_conn_response = clients["dbtools_async_client"].create_database_tools_connection_and_wait_for_state( + conn_details_for_create, wait_for_states=["FAILED", "SUCCEEDED", "CANCELED"]) + + assert create_conn_response, "create_database_tools_connection_and_wait_for_state should return a response" + assert create_conn_response.data, "Create db Response should contain data" + + status = create_conn_response.data.status + connection_id = create_conn_response.data.resources[0].identifier + print(f"Creating Connection. Status: {status}, name: {display_name}, connection id: {connection_id}.") + assert status == "SUCCEEDED", "Create Connection should succeed" + + # + # 3. Get connection that we just created BY Id + # + print("===Connection - Get by id:", connection_id) + connection = clients["dbtools_client"].get_database_tools_connection(connection_id) + print("Read created Connection:", connection.data) + assert connection.data, "Created Connection data should exist" + assert connection.data.display_name == display_name, "Unexpected Connection display name" + assert connection.data.lifecycle_state == "ACTIVE", "Connection should be ACTIVE" + + # + # 4. Validate Connection + # + print("===Connection - Validate by id:", connection_id) + validate_detail = oci.database_tools.models.ValidateDatabaseToolsConnectionOracleDatabaseDetails( + type="ORACLE_DATABASE") + result = clients["dbtools_client"].validate_database_tools_connection(connection_id, validate_detail) + assert result.data, "Validation should return a validation info" + print("Validation Result:", result.data) + assert result.data.code == "OK", "Created connection should be valid" + + +def do_connection_cleanup(conn_id): + """ + Delete the connection that we used for our tests + """ + if conn_id: + print("===Connection - Delete by id:", conn_id) + result = clients["dbtools_async_client"].delete_database_tools_connection_and_wait_for_state(conn_id, + wait_for_states=[ + "FAILED", + "SUCCEEDED", + "CANCELED"]) + + if result and result.data: + status = result.data.status + print( + f"delete_database_tools_connection_and_wait_for_state. Status: {status}, connection id: {conn_id}.") + assert status == "SUCCEEDED", "Delete Connection should succeed" + else: + print("Error. do_connection_tests_cleanup failed") + else: + print("Error. do_connection_tests_cleanup skipped") + + +def do_private_endpoint_cleanup(pe_id): + """ + Delete the Database Tools Private endpoint that we used for our tests + """ + if pe_id: + print("===Private Endpoint - Delete by id:", pe_id) + result = clients["dbtools_async_client"].delete_database_tools_private_endpoint_and_wait_for_state(pe_id, + wait_for_states=[ + "FAILED", + "SUCCEEDED", + "CANCELED"]) + + if result and result.data: + status = result.data.status + print( + f"delete_database_tools_private_endpoint_and_wait_for_state. Status: {status}, connection id: {private_endpoint_id}.") + assert status == "SUCCEEDED", "Delete Private Endpoint should succeed" + else: + print("Error. do_private_endpoint_cleanup failed") + else: + print("Error. do_private_endpoint_cleanup skipped") + + +def do_secrets_cleanup(secrets_ids, days=2): + """ + Delete the secrets that we used for our tests + """ + # Delete Secret in vault clean-up + secret_deletion_time = datetime.now() + timedelta(days=days) + for secret_id in secrets_ids: + if secret_id: + delete_secret(clients, + secret_id=secret_id, + deletion_time=secret_deletion_time) + + +# +# main logic +# +if __name__ == "__main__": + # Output Colors + OKGREEN = '\033[92m' + FAIL = '\033[91m' + ENDC = '\033[0m' + + try: + # Endpoint Service + endpoint_service_id = get_endpoint_services() + + # Create a Database Tools Private Endpoint + create_private_endpoint(endpoint_service_id) + + # Create and Validate a Database Tools Connection + create_connection() + + print(f"{OKGREEN}Python SDK Test completed OK{ENDC}") + except Exception as e: + print(f"{FAIL}Exception during tests:{ENDC} {e}") + finally: + # Clean-up + if do_clean_up_at_end: + print("Starting resource clean-up.") + do_connection_cleanup(connection_id) + do_private_endpoint_cleanup(private_endpoint_id) + do_secrets_cleanup([password_secret_id]) + print("Clean-up completed.") + else: + print("Skipping resource clean-up.") diff --git a/examples/database_tools/images/ADB-S.with.Private.Endpoint.png b/examples/database_tools/images/ADB-S.with.Private.Endpoint.png new file mode 100644 index 0000000000..f21d6c945c Binary files /dev/null and b/examples/database_tools/images/ADB-S.with.Private.Endpoint.png differ diff --git a/examples/database_tools/images/ADB-S.with.Public.IP.png b/examples/database_tools/images/ADB-S.with.Public.IP.png new file mode 100644 index 0000000000..99096bc003 Binary files /dev/null and b/examples/database_tools/images/ADB-S.with.Public.IP.png differ diff --git a/examples/database_tools/images/Bare.Metal.VM.Exadata.with.Private.IP.png b/examples/database_tools/images/Bare.Metal.VM.Exadata.with.Private.IP.png new file mode 100644 index 0000000000..76eddfbb9e Binary files /dev/null and b/examples/database_tools/images/Bare.Metal.VM.Exadata.with.Private.IP.png differ diff --git a/examples/database_tools/readme.md b/examples/database_tools/readme.md new file mode 100644 index 0000000000..805b2242ca --- /dev/null +++ b/examples/database_tools/readme.md @@ -0,0 +1,36 @@ +# Database Tools Examples + +## Introduction +We show 3 Use Cases for the Database Tools Service + +## Use Cases +- ADB-S with Public IP +- ADB-S with Private Endpoint +- Bare Metal, VM and Exadata with Private IP + +## ADB-S with Public IP +![](images/ADB-S.with.Public.IP.png) +### Example +See: **adbs_create_connection_public_ip.py** where we: +1. Create a new Autonomous Database +2. Create required secrets +3. Create a connection +4. Validate the connection + +## ADB-S with Private Endpoint +![](images/ADB-S.with.Private.Endpoint.png) +### Example +See: **adbs_create_connection_with_pe.py** where we: +1. Create a Database Tools Private Endpoint for a Reverse Connection to the Private Endpoint of an ADB-S +2. Create required secrets +3. Create a connection +4. Validate the connection + +## Bare Metal, DB System and Exadata with Private IP +![](images/Bare.Metal.VM.Exadata.with.Private.IP.png) +### Example +See: **db_system_create_connection_private_subnet.py** where we: +1. Create a Database Tools Private Endpoint for a Reverse Connection to a VM DB System +2. Create required secrets +3. Create a connection +4. Validate the connection \ No newline at end of file diff --git a/examples/database_tools/utils/dbtools.py b/examples/database_tools/utils/dbtools.py new file mode 100644 index 0000000000..daaec69e77 --- /dev/null +++ b/examples/database_tools/utils/dbtools.py @@ -0,0 +1,201 @@ +# coding: utf-8 +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +import oci +import base64 +import io +from zipfile import ZipFile + + +def get_dbtools_clients(oci_config): + client = oci.database_tools.DatabaseToolsClient(config=oci_config) + # Composite client waits for async operations to complete. + composite_client = oci.database_tools.DatabaseToolsClientCompositeOperations(client) + return client, composite_client + + +def get_database_clients(oci_config): + client = oci.database.DatabaseClient(config=oci_config) + # Composite client waits for async operations to complete. + composite_client = oci.database.DatabaseClientCompositeOperations(client) + return client, composite_client + + +def get_secrets_client(oci_config): + client = oci.secrets.SecretsClient(config=oci_config) + return client + + +def get_kms_vault_client(oci_config): + client = oci.key_management.KmsVaultClient(config=oci_config) + return client + + +def get_kms_management_client(oci_config, service_endpoint): + client = oci.key_management.KmsManagementClient(config=oci_config, service_endpoint=service_endpoint) + return client + + +def get_vaults_clients(oci_config): + client = oci.vault.VaultsClient(config=oci_config) + # Composite client waits for async operations to complete. + composite_client = oci.vault.VaultsClientCompositeOperations(client) + return client, composite_client + + +def extract_zip(input_zip): + """ + Return a dict of Key=filename with Value=content from a zipped file + """ + input_zip = ZipFile(input_zip) + return {name: input_zip.read(name) for name in input_zip.namelist()} + + +def extract_vault_first_master_key(oci_config, compartment_id, clients, vault_id, vault_key_id): + """ + Extract the first Master key from the Vault + """ + if vault_key_id is None: + assert compartment_id, "compartment_id must not be null" + assert vault_id, "vault_id must not be null" + vault_response = clients["kms_vault_client"].get_vault(vault_id) + assert vault_response, "get_vault should return a response" + assert vault_response.data, "Vault Response should contain data" + + print(f"Vault {vault_id} management endpoint is {vault_response.data.management_endpoint}") + kms_management_client = get_kms_management_client(oci_config, + service_endpoint=vault_response.data.management_endpoint) + + # Vault must be in same compartment... + keys_response = kms_management_client.list_keys(compartment_id) + assert keys_response, "list_keys should return a response" + assert keys_response.data, "KMS Response should contain data" + vault_key_id = next((k.id for k in keys_response.data), None) + print(f"Vault {vault_id} key id is {vault_key_id}") + + return vault_key_id + + +def create_secret(oci_config, compartment_id: str, clients, vault_id: str, name: str, base64_password: str, vault_key_id: str = None): + """ + Create a secret using the specified name. The content is in base64Secret. + If a secret with that name already exists, we simply return its OCID. + """ + assert compartment_id, "compartment_id must not be null" + assert vault_id, "vault_id must not be null" + + vault_key_id = extract_vault_first_master_key(oci_config, compartment_id, clients, vault_id, vault_key_id) # Make sure that we have a master key + + try: + print("Trying to read the secret by name before creating it...") + bundle_response = clients["secrets_client"].get_secret_bundle_by_name(secret_name=name, vault_id=vault_id, stage="CURRENT") + if bundle_response is not None and \ + bundle_response.data is not None \ + and bundle_response.data.secret_id is not None: + secret_id = bundle_response.data.secret_id + print(f"Secret with name {name} found! It will be used instead, secret id: {secret_id}") + return secret_id + except Exception: + print(f"Secret with name {name} not found, it will be created...") + + secret_details = oci.vault.models.CreateSecretDetails( + vault_id=vault_id, + key_id=vault_key_id, + compartment_id=compartment_id, + secret_name=name, + secret_content=oci.vault.models.Base64SecretContentDetails( + content=base64_password + ) + ) + + create_secret_response = clients["vaults_async_client"].create_secret_and_wait_for_state( + secret_details, wait_for_states=["FAILED", "ACTIVE", "CANCELED"]) + assert create_secret_response, "create_secret_and_wait_for_state should return a response" + assert create_secret_response.data, "Secret Response should contain data" + + status = create_secret_response.data.lifecycle_state + secret_id = create_secret_response.data.id + assert status == "ACTIVE", "Creating Secret should succeed" + print(f"Created Secret. Status: {status}, name: {name}, secret id: {secret_id}.") + return secret_id, vault_key_id + + +def delete_secret(clients, secret_id: str, deletion_time): + print(f"Deleting secret id {secret_id}") + assert secret_id, "secret_id must not be null" + secret_deletion_details = oci.vault.models.ScheduleSecretDeletionDetails( + time_of_deletion=deletion_time + ) + + # Mark the secret for deletion + delete_secret_response = clients["vaults_client"].schedule_secret_deletion(secret_id, secret_deletion_details) + assert delete_secret_response, "schedule_secret_deletion should return a response" + + +def get_wallet_and_create_secrets(oci_config, compartment_id, clients, autonomous_database_id, vault_id, db_wallet_secret_name, db_password_secret_name, db_password): + """ + Extract the wallet from the Autonomous Database + We will store the wallet as a Secret in the vault + We will also store the database password as a Secret in the vault + """ + + # We will extract wallet and prepare to store the wallet as a secret under name X. If name X already exists, + # we will simply use it. + print("Extracting Wallet from DB and storing in Vault") + + assert compartment_id, "compartment_id must not be null" + assert autonomous_database_id, "autonomous_database_id must not be null" + assert db_wallet_secret_name, "db_wallet_secret_name must not be null" + assert db_password_secret_name, "db_password_secret_name must not be null" + assert db_password, "db_password must not be null" + + # 1. Get DB + autonomous_database_response = clients["db_client"].get_autonomous_database(autonomous_database_id) + assert autonomous_database_response, "get_autonomous_database should return a response" + assert autonomous_database_response.data, "Autonomous db Response should contain data" + + # 2. Extract Wallet from DB + # Create a wallet details object + db_wallet = oci.database.models.GenerateAutonomousDatabaseWalletDetails( + password="example-password" + ) + + print("Extracting Wallet...") + # Generate the wallet and store the response object + db_wallet_response = clients["db_client"].generate_autonomous_database_wallet( + autonomous_database_id=autonomous_database_id, + generate_autonomous_database_wallet_details=db_wallet, + ) + + assert db_wallet_response, "generate_autonomous_database_wallet should return a response" + assert db_wallet_response.data, "generate_autonomous_database_wallet should return data" + assert db_wallet_response.data.content, "no wallet content data returned" + + # Unzip the Wallet in memory to extract the SSO + filename_to_extract = "cwallet.sso" + mem_file = io.BytesIO(db_wallet_response.data.content) + zip_data = extract_zip(mem_file) + sso_data = zip_data.get(filename_to_extract, None) + assert sso_data, f"{filename_to_extract} not found in wallet" + base64_sso_str = base64.b64encode(sso_data).decode() + + # 3. Store Wallet in vault and get that secret (Might already be there) + wallet_secret_id, vault_key_id = create_secret(oci_config, + compartment_id=compartment_id, + clients=clients, + vault_id=vault_id, + name=db_wallet_secret_name, + base64_password=base64_sso_str) + + # 4. Store the DB password in the vault as a secret under name X. If name X already exists, we will simply use it. + base64_db_password_str = base64.b64encode(db_password.encode()).decode() + password_secret_id, vault_key_id = create_secret(oci_config, + compartment_id=compartment_id, + clients=clients, + vault_id=vault_id, + vault_key_id=vault_key_id, + name=db_password_secret_name, + base64_password=base64_db_password_str) + + return wallet_secret_id, password_secret_id diff --git a/examples/dns_service_example.py b/examples/dns_service_example.py index b27030b114..98d5250445 100644 --- a/examples/dns_service_example.py +++ b/examples/dns_service_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to use the DNS service in the Python SDK. This script accepts two diff --git a/examples/drg_attachment_example.py b/examples/drg_attachment_example.py index ba9bf70046..61ade6e611 100644 --- a/examples/drg_attachment_example.py +++ b/examples/drg_attachment_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script demonstrates how to attach two Virtual Cloud Networks (VCN) to a single Dynamic Routing Gateway (DRG) to provide diff --git a/examples/drg_route_distribution_example.py b/examples/drg_route_distribution_example.py index 0fee882a6a..1ba9a87677 100644 --- a/examples/drg_route_distribution_example.py +++ b/examples/drg_route_distribution_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script demonstrate how to add, update, delete, and list statements in a DRG Route Distribution for managing diff --git a/examples/drg_route_table_example.py b/examples/drg_route_table_example.py index 399657c282..fa759a2ba4 100644 --- a/examples/drg_route_table_example.py +++ b/examples/drg_route_table_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script demonstrates how to add, update, delete, and list static route rules in Dynamic Routing Gateway route tables diff --git a/examples/email_service_example.py b/examples/email_service_example.py index b8974df1e1..cad66b84b8 100644 --- a/examples/email_service_example.py +++ b/examples/email_service_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to use the Email Service in the Python SDK. This script accepts two diff --git a/examples/exacc_backup_destination.py b/examples/exacc_backup_destination.py index 41dd84a8a1..8c74f5000e 100644 --- a/examples/exacc_backup_destination.py +++ b/examples/exacc_backup_destination.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides an example of CRUD(Create, Read, Update, Delete) operations diff --git a/examples/exacc_create_dbhome_backup_destination.py b/examples/exacc_create_dbhome_backup_destination.py index 0a40158e33..a337c03372 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides an example of how use database CLI in terms of: diff --git a/examples/exacc_dbhome_create_example.py b/examples/exacc_dbhome_create_example.py index dccec8fb1d..318b1c1a0b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides an example of how use database CLI in terms of: diff --git a/examples/exacc_dbhome_get_example.py b/examples/exacc_dbhome_get_example.py index 46ea1a5ca0..70a88bd1ae 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides an example of how use database CLI in terms of: diff --git a/examples/exacc_dbhome_list_example.py b/examples/exacc_dbhome_list_example.py index 90b3f07814..c1980a1e80 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides an example of how use database CLI in terms of: diff --git a/examples/exacc_infrastructure_example.py b/examples/exacc_infrastructure_example.py index 133d661e2e..8663ffd7d1 100644 --- a/examples/exacc_infrastructure_example.py +++ b/examples/exacc_infrastructure_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides an example of how use database CLI in terms of: diff --git a/examples/exacc_update_db_backup_destination.py b/examples/exacc_update_db_backup_destination.py index 0b0c869976..c7f2b26124 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides an example of how use database CLI in terms of: diff --git a/examples/exacc_vmcluster_example.py b/examples/exacc_vmcluster_example.py index 3225f31605..478591be50 100644 --- a/examples/exacc_vmcluster_example.py +++ b/examples/exacc_vmcluster_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides an example of how use database CLI in terms of: diff --git a/examples/exacc_vmclusternetwork_example.py b/examples/exacc_vmclusternetwork_example.py index 487c09b8df..e956c91444 100644 --- a/examples/exacc_vmclusternetwork_example.py +++ b/examples/exacc_vmclusternetwork_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides an example of how use database CLI in terms of: diff --git a/examples/file_storage_example.py b/examples/file_storage_example.py index 637647dab4..4fae5a00c8 100644 --- a/examples/file_storage_example.py +++ b/examples/file_storage_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to use the File Storage service in the Python SDK. This script accepts two 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 dd39071637..1aff448ef2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides an example of retrieving the IP addresses (private and public) and the fully qualified diff --git a/examples/get_waf_log.py b/examples/get_waf_log.py index 4824f543a6..594a50a4eb 100644 --- a/examples/get_waf_log.py +++ b/examples/get_waf_log.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script collects logs from WAF and uploads them to the Object Storage. The tool will pick up log deltas. diff --git a/examples/healthchecks_example.py b/examples/healthchecks_example.py index e3a2bc68b6..5f79532f7c 100644 --- a/examples/healthchecks_example.py +++ b/examples/healthchecks_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to use the Health Checks service. diff --git a/examples/instance_configs_example.py b/examples/instance_configs_example.py index 0ff2aabe7b..83061bd86b 100644 --- a/examples/instance_configs_example.py +++ b/examples/instance_configs_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides an example of how use the instance configuration CLI in terms of: diff --git a/examples/instance_pools_example.py b/examples/instance_pools_example.py index 51093c5a23..ee427e710d 100644 --- a/examples/instance_pools_example.py +++ b/examples/instance_pools_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides an example of how use the instance pools CLI in terms of: diff --git a/examples/instance_principals_examples.py b/examples/instance_principals_examples.py index 9446232eb3..f2dc310944 100644 --- a/examples/instance_principals_examples.py +++ b/examples/instance_principals_examples.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci diff --git a/examples/invoke_function.py b/examples/invoke_function.py index 7adc35bd32..dafc2e6a67 100644 --- a/examples/invoke_function.py +++ b/examples/invoke_function.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import os diff --git a/examples/json_response_example.py b/examples/json_response_example.py index 93b273d31d..c4d57f861f 100644 --- a/examples/json_response_example.py +++ b/examples/json_response_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides an example to demostrate converting a response payload to a json string. diff --git a/examples/kms_example.py b/examples/kms_example.py index b3b2ce5b97..24dd357cea 100644 --- a/examples/kms_example.py +++ b/examples/kms_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci diff --git a/examples/launch_db_system_example.py b/examples/launch_db_system_example.py index 0b54e175b2..4699806115 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 c12baa32b1..dc301cfaf0 100644 --- a/examples/launch_instance_example.py +++ b/examples/launch_instance_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 759e80faf8..41e595895b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to launch an instance with pvEncryptionInTransit on using the Python SDK. diff --git a/examples/list_resources_in_tenancy/list_all_capacity_reservations_in_tenancy.py b/examples/list_resources_in_tenancy/list_all_capacity_reservations_in_tenancy.py index 815b92380a..c1fc262828 100644 --- a/examples/list_resources_in_tenancy/list_all_capacity_reservations_in_tenancy.py +++ b/examples/list_resources_in_tenancy/list_all_capacity_reservations_in_tenancy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. ########################################################################## diff --git a/examples/list_resources_in_tenancy/list_all_ipsec_tunnels_in_tenancy.py b/examples/list_resources_in_tenancy/list_all_ipsec_tunnels_in_tenancy.py index 0347d3be24..3c40a66283 100755 --- a/examples/list_resources_in_tenancy/list_all_ipsec_tunnels_in_tenancy.py +++ b/examples/list_resources_in_tenancy/list_all_ipsec_tunnels_in_tenancy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. ########################################################################## diff --git a/examples/list_resources_in_tenancy/list_all_virtual_circuits_in_tenancy.py b/examples/list_resources_in_tenancy/list_all_virtual_circuits_in_tenancy.py index dba338b494..7a0fe5be2a 100755 --- a/examples/list_resources_in_tenancy/list_all_virtual_circuits_in_tenancy.py +++ b/examples/list_resources_in_tenancy/list_all_virtual_circuits_in_tenancy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. ########################################################################## diff --git a/examples/list_resources_in_tenancy/list_bv_backups_in_tenancy.py b/examples/list_resources_in_tenancy/list_bv_backups_in_tenancy.py index ae47189a7d..c14d01025e 100644 --- a/examples/list_resources_in_tenancy/list_bv_backups_in_tenancy.py +++ b/examples/list_resources_in_tenancy/list_bv_backups_in_tenancy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. ########################################################################## diff --git a/examples/list_resources_in_tenancy/list_compute_tags_in_tenancy.py b/examples/list_resources_in_tenancy/list_compute_tags_in_tenancy.py index 0cbf7a2aff..c4218a0ad5 100755 --- a/examples/list_resources_in_tenancy/list_compute_tags_in_tenancy.py +++ b/examples/list_resources_in_tenancy/list_compute_tags_in_tenancy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. ########################################################################## diff --git a/examples/list_resources_in_tenancy/list_dbsystem_with_maintenance_in_tenancy.py b/examples/list_resources_in_tenancy/list_dbsystem_with_maintenance_in_tenancy.py index 30447f2298..d4f4b16e85 100755 --- a/examples/list_resources_in_tenancy/list_dbsystem_with_maintenance_in_tenancy.py +++ b/examples/list_resources_in_tenancy/list_dbsystem_with_maintenance_in_tenancy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. ########################################################################## diff --git a/examples/list_resources_in_tenancy/list_limits_per_compartments.py b/examples/list_resources_in_tenancy/list_limits_per_compartments.py index e48ae5d2fc..75f0f7d028 100644 --- a/examples/list_resources_in_tenancy/list_limits_per_compartments.py +++ b/examples/list_resources_in_tenancy/list_limits_per_compartments.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. ########################################################################## diff --git a/examples/list_resources_in_tenancy/list_policies_in_tenancy.py b/examples/list_resources_in_tenancy/list_policies_in_tenancy.py index 551c1a9448..c819158eb9 100644 --- a/examples/list_resources_in_tenancy/list_policies_in_tenancy.py +++ b/examples/list_resources_in_tenancy/list_policies_in_tenancy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. ########################################################################## diff --git a/examples/load_balancer_lb_compartment_change_example.py b/examples/load_balancer_lb_compartment_change_example.py index 7a8f72686c..b11eb32cc7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of changing a load balancer's compartment, and diff --git a/examples/load_balancer_lb_cookie_session_persistence_example.py b/examples/load_balancer_lb_cookie_session_persistence_example.py index 1d3f21fb45..498773d018 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 57b655cd06..06df215511 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 cb8fe5b8a3..2c02d11cf6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example on how to work with rule sets on a load balancer by: diff --git a/examples/load_balancer_ssl_example.py b/examples/load_balancer_ssl_example.py index 31143db36b..5238bf439c 100644 --- a/examples/load_balancer_ssl_example.py +++ b/examples/load_balancer_ssl_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This example creates a new loadbalancer with SSL cipher suites. After that it creates a new listener with the SSL configuration and updates the backend set with it. Finally it updates the loadbalancer cipher suites and deletes it in the end. diff --git a/examples/move_compartment_example.py b/examples/move_compartment_example.py index 6640eac3fe..5712b4e419 100644 --- a/examples/move_compartment_example.py +++ b/examples/move_compartment_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides an example on how to move a compartment to a different compartment diff --git a/examples/multipart_object_upload.py b/examples/multipart_object_upload.py index 9cd0fedc73..1aebba8c2c 100644 --- a/examples/multipart_object_upload.py +++ b/examples/multipart_object_upload.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import print_function diff --git a/examples/network_security_groups_example.py b/examples/network_security_groups_example.py index 598ab2fe39..1e68cb5f5e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to create and modify Network Security Group objects diff --git a/examples/object_crud.py b/examples/object_crud.py index d0b394e83d..a9bb33f0c8 100644 --- a/examples/object_crud.py +++ b/examples/object_crud.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import filecmp diff --git a/examples/object_storage/object_storage_bulk_copy.py b/examples/object_storage/object_storage_bulk_copy.py index a2018fe069..44e7df1713 100644 --- a/examples/object_storage/object_storage_bulk_copy.py +++ b/examples/object_storage/object_storage_bulk_copy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. ########################################################################## diff --git a/examples/object_storage/object_storage_bulk_delete.py b/examples/object_storage/object_storage_bulk_delete.py index bcec7fe208..766d3f852c 100644 --- a/examples/object_storage/object_storage_bulk_delete.py +++ b/examples/object_storage/object_storage_bulk_delete.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. ########################################################################## diff --git a/examples/object_storage/object_storage_bulk_rename.py b/examples/object_storage/object_storage_bulk_rename.py index f75e8cfe86..ae28193ac2 100644 --- a/examples/object_storage/object_storage_bulk_rename.py +++ b/examples/object_storage/object_storage_bulk_rename.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. ########################################################################## diff --git a/examples/object_storage/object_storage_bulk_restore.py b/examples/object_storage/object_storage_bulk_restore.py index 0c565d2989..9a8fa2eff6 100644 --- a/examples/object_storage/object_storage_bulk_restore.py +++ b/examples/object_storage/object_storage_bulk_restore.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. ########################################################################## diff --git a/examples/object_storage/object_storage_list_objects.py b/examples/object_storage/object_storage_list_objects.py index 38f34eaa9b..5b2cb49f9a 100644 --- a/examples/object_storage/object_storage_list_objects.py +++ b/examples/object_storage/object_storage_list_objects.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. ########################################################################## diff --git a/examples/object_storage_archive_example.py b/examples/object_storage_archive_example.py index 66b857c45b..52baeccd23 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to use archive storage in the Object Storage service. This example diff --git a/examples/object_storage_bucket_tagging_example.py b/examples/object_storage_bucket_tagging_example.py index 4f0ecbdf51..2eec2e947d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to tag buckets in Object Storage. diff --git a/examples/object_storage_getnamespace_example.py b/examples/object_storage_getnamespace_example.py index 3153fdaa37..74b5666652 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to get Object Storage namespace of a tenancy that is not their own. This diff --git a/examples/pagination.py b/examples/pagination.py index fab2d91e98..f727c2bb12 100644 --- a/examples/pagination.py +++ b/examples/pagination.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script demonstrates different methods of pagination in the SDK via the oci.pagination module. This module supports: diff --git a/examples/pagination_with_request_model.py b/examples/pagination_with_request_model.py index 1289a201d5..38ad4dfae1 100644 --- a/examples/pagination_with_request_model.py +++ b/examples/pagination_with_request_model.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script gives an example on passing in a request model for an API to the pagination call. diff --git a/examples/parallel_upload_to_object_storage.py b/examples/parallel_upload_to_object_storage.py index 022e66cd37..d5cea75266 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Uploads all files from a local directory to an object storage bucket diff --git a/examples/quotas_example.py b/examples/quotas_example.py index 52b21f2fef..41de828f62 100644 --- a/examples/quotas_example.py +++ b/examples/quotas_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 c82657ac6c..086af2dfe0 100644 --- a/examples/raw_request.py +++ b/examples/raw_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import requests diff --git a/examples/remote_peering_connection_example.py b/examples/remote_peering_connection_example.py index f12dba6bdc..161bd87102 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to use use the Python SDK to create a remote peering of two virtual cloud networks diff --git a/examples/reserved_public_ip_example.py b/examples/reserved_public_ip_example.py index a418066aae..d4e176e907 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 414b4646a2..35d513baa4 100644 --- a/examples/resource_principals_example.py +++ b/examples/resource_principals_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci diff --git a/examples/retries.py b/examples/retries.py index 76a7e64f63..d89bb0bb18 100644 --- a/examples/retries.py +++ b/examples/retries.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to use the retry functionality in the Python SDK when diff --git a/examples/retries_override_retry_strategy_example.py b/examples/retries_override_retry_strategy_example.py index 664576b9f9..fafea44150 100644 --- a/examples/retries_override_retry_strategy_example.py +++ b/examples/retries_override_retry_strategy_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to use the retry functionality using the various option present in the Python SDK when diff --git a/examples/retrieve_audit_events.py b/examples/retrieve_audit_events.py index 04a6f17a8b..11d12d1f4b 100644 --- a/examples/retrieve_audit_events.py +++ b/examples/retrieve_audit_events.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script retrieves all audit logs across an Oracle Cloud Infrastructure Tenancy. diff --git a/examples/search_example.py b/examples/search_example.py index 395b5d1960..bb0bbd1ffc 100644 --- a/examples/search_example.py +++ b/examples/search_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This example demonstrates how to programatically retrieve resource types and diff --git a/examples/secret_example.py b/examples/secret_example.py index 7c84d0cd69..be66467ee3 100644 --- a/examples/secret_example.py +++ b/examples/secret_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci diff --git a/examples/secretclient_example.py b/examples/secretclient_example.py index 135d3e5d2a..174a995b10 100644 --- a/examples/secretclient_example.py +++ b/examples/secretclient_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci diff --git a/examples/showoci/CHANGELOG.rst b/examples/showoci/CHANGELOG.rst index af50501bab..da917ac087 100755 --- a/examples/showoci/CHANGELOG.rst +++ b/examples/showoci/CHANGELOG.rst @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog `_. +===================== +22.01.17 - 22.01.17 +===================== +* Fixed database connection for ADB +* Added database edition and license model to the CSV extract +* Added APIGW and Deployment + added to the CSV + ===================== 21.11.16 - 21.11.16 ===================== diff --git a/examples/showoci/showoci.py b/examples/showoci/showoci.py index d15e532f23..c57cf03303 100755 --- a/examples/showoci/showoci.py +++ b/examples/showoci/showoci.py @@ -96,7 +96,7 @@ import argparse import datetime -version = "21.11.16" +version = "22.01.17" ########################################################################## # check OCI version diff --git a/examples/showoci/showoci_data.py b/examples/showoci/showoci_data.py index 540bc1dd07..efcbcb7957 100755 --- a/examples/showoci/showoci_data.py +++ b/examples/showoci/showoci_data.py @@ -2358,6 +2358,7 @@ def __get_database_db_systems(self, region_name, compartment): 'cpu_core_count': dbs['cpu_core_count'], 'node_count': dbs['node_count'], 'version': (dbs['version'] + " - ") if dbs['version'] != "None" else "" + ((dbs['database_edition'] + " - ") if dbs['database_edition'] != "None" else "") + dbs['license_model'], + 'version_only': dbs['version'], 'host': dbs['hostname'], 'domain': dbs['domain'], 'data_subnet': dbs['data_subnet'], @@ -3400,6 +3401,16 @@ def __get_apigateway_main(self, region_name, compartment): if ap['subnet_id']: val['subnet_name'] = self.__get_core_network_subnet_name(ap['subnet_id']) + # deployments + apidep = self.service.search_multi_items(self.service.C_API, self.service.C_API_DEPLOYMENT, 'region_name', region_name, 'gateway_id', val['id']) + if apidep: + for apid in apidep: + vald = apid + vald['logs'] = self.service.get_logging_log(vald['id']) + + # add deployment to apigw + val['deployments'].append(vald) + data.append(val) return data diff --git a/examples/showoci/showoci_output.py b/examples/showoci/showoci_output.py index 4cb7b16c3c..9f4ee19b74 100755 --- a/examples/showoci/showoci_output.py +++ b/examples/showoci/showoci_output.py @@ -1740,8 +1740,16 @@ def __print_api_gateways_main(self, apigatways): for ct in apigatways: print(self.taba + ct['display_name'] + ", " + ct['endpoint_type'] + ", Created: " + ct['time_created'][0:16]) - print(self.tabs2 + "Host : " + ct['hostname']) - print(self.tabs2 + "Subnet: " + ct['subnet_name']) + print(self.tabs2 + "Host : " + ct['hostname']) + print(self.tabs2 + "Subnet : " + ct['subnet_name']) + for dp in ct['deployments']: + print(self.tabs2 + "Deployment: " + dp['display_name'] + ", " + dp['endpoint']) + + # print logs + if 'logs' in dp: + for index, log in enumerate(dp['logs'], start=1): + print(self.tabs2 + " : Log " + str(index) + " : " + log['name']) + print("") except Exception as e: @@ -3376,6 +3384,7 @@ class ShowOCICSV(object): csv_file_storage = [] csv_load_balancer = [] csv_load_balancer_bs = [] + csv_apigw = [] csv_limits = [] start_time = "" csv_add_date_field = True @@ -3430,6 +3439,7 @@ def generate_csv(self, data, csv_file_header, add_date_field=True): self.__export_to_csv_file("load_balancer_listeners", self.csv_load_balancer) self.__export_to_csv_file("load_balancer_backendset", self.csv_load_balancer_bs) self.__export_to_csv_file("file_storage", self.csv_file_storage) + self.__export_to_csv_file("api_gateways", self.csv_apigw) self.__export_to_csv_file("limits", self.csv_limits) print("") @@ -3921,7 +3931,9 @@ def __csv_database_db_system(self, region_name, list_db_systems): 'memory_gb': dbs['shape_memory_gb'], 'local_storage_tb': dbs['shape_storage_tb'], 'node_count': len(dbs['db_nodes']), - 'version_license_model': dbs['version'], + 'version': dbs['version_only'], + 'database_edition': dbs['database_edition_short'], + 'license_model': dbs['license_model'], 'data_subnet': dbs['data_subnet'], 'backup_subnet': dbs['backup_subnet'], 'scan_ips': str(', '.join(x for x in dbs['scan_ips'])), @@ -3968,7 +3980,8 @@ def __csv_database_db_system(self, region_name, list_db_systems): 'local_storage_tb': dbs['shape_storage_tb'], 'node_count': len(dbs['db_nodes']), 'database': db['name'], - 'version_license_model': dbs['version'], + 'database_edition': dbs['database_edition_short'], + 'license_model': dbs['license_model'], 'data_subnet': dbs['data_subnet'], 'backup_subnet': dbs['backup_subnet'], 'scan_ips': str(', '.join(x for x in dbs['scan_ips'])), @@ -4028,7 +4041,9 @@ def __csv_database_db_exadata(self, region_name, list_exa): 'memory_gb': dbs['shape_memory_gb'], 'local_storage_tb': dbs['shape_storage_tb'], 'node_count': len(vm['db_nodes']), - 'version_license_model': dbs['version'], + 'version': vm['gi_version'], + 'database_edition': 'XP', + 'license_model': vm['license_model'], 'data_subnet': vm['data_subnet'], 'backup_subnet': vm['backup_subnet'], 'scan_ips': str(', '.join(x for x in vm['scan_ips'])), @@ -4075,7 +4090,8 @@ def __csv_database_db_exadata(self, region_name, list_exa): 'local_storage_tb': dbs['shape_storage_tb'], 'node_count': len(vm['db_nodes']), 'database': db['name'], - 'version_license_model': dbs['version'], + 'database_edition': 'XP', + 'license_model': vm['license_model'], 'data_subnet': vm['data_subnet'], 'backup_subnet': vm['backup_subnet'], 'scan_ips': str(', '.join(x for x in vm['scan_ips'])), @@ -4135,7 +4151,9 @@ def __csv_database_db_exacc(self, region_name, list_exa): 'memory_gb': dbs['memory_size_in_gbs'], 'local_storage_tb': dbs['data_storage_size_in_tbs'], 'node_count': len(vm['db_nodes']), - 'version_license_model': vm['gi_version'], + 'version': vm['gi_version'], + 'database_edition': 'XP', + 'license_model': vm['license_model'], 'data_subnet': "", 'backup_subnet': "", 'scan_ips': "", @@ -4182,7 +4200,8 @@ def __csv_database_db_exacc(self, region_name, list_exa): 'local_storage_tb': dbs['data_storage_size_in_tbs'], 'node_count': len(vm['db_nodes']), 'database': db['name'], - 'version_license_model': db_home['home_version'], + 'database_edition': 'XP', + 'license_model': vm['license_model'], 'data_subnet': "", 'backup_subnet': "", 'scan_ips': "", @@ -4240,7 +4259,8 @@ def __csv_database_db_autonomous(self, region_name, databases): 'local_storage_tb': "", 'node_count': "", 'database': dbs['db_name'], - 'version_license_model': dbs['license_model'], + 'database_edition': 'ADB', + 'license_model': dbs['license_model'], 'data_subnet': "", 'backup_subnet': "", 'scan_ips': "", @@ -4639,6 +4659,45 @@ def __csv_load_balancer_details(self, region_name, load_balance_obj): except Exception as e: self.__print_error("__csv_load_balancer_details", e) + ########################################################################## + # csv load balancer config + ########################################################################## + def __csv_apigw(self, region_name, apigw): + try: + for api in apigw: + for dp in api['deployments']: + + # get error and access log: + log_execution = "" + log_access = "" + for log in dp['logs']: + if 'execution' in log['name']: + log_execution = log['name'] + if 'access' in log['name']: + log_access = log['name'] + + data = {'region_name': region_name, + 'compartment_name': dp['compartment_name'], + 'gw_name': api['display_name'], + 'gw_endpoint_type': api['endpoint_type'], + 'gw_hostname': api['hostname'], + 'gw_subnet_name': api['subnet_name'], + 'gw_time_created': api['time_created'], + 'dp_display_name': dp['display_name'], + 'path_prefix': dp['path_prefix'], + 'endpoint': dp['endpoint'], + 'time_created': dp['time_created'], + 'log_execution': log_execution, + 'log_access': log_access, + 'logs': str(', '.join(x['name'] for x in dp['logs'])), + 'dp_id': dp['id'], + 'api_id': api['id'], + } + self.csv_apigw.append(data) + + except Exception as e: + self.__print_error("__csv_load_balancer_details", e) + ########################################################################## # csv load balancer backedset ########################################################################## @@ -4765,6 +4824,8 @@ def __csv_region_data(self, region_name, data): self.__csv_load_balancer_main(region_name, cdata['load_balancer']) if 'file_storage' in cdata: self.__csv_file_storage_main(region_name, cdata['file_storage']) + if 'apigateways' in cdata: + self.__csv_apigw(region_name, cdata['apigateways']) except Exception as e: self.__print_error("__csv_region_data", e) diff --git a/examples/showoci/showoci_service.py b/examples/showoci/showoci_service.py index 4ea8e13595..05d6731a4d 100755 --- a/examples/showoci/showoci_service.py +++ b/examples/showoci/showoci_service.py @@ -301,6 +301,7 @@ class ShowOCIService(object): # API gateways C_API = "apis" C_API_GATEWAYS = "gateways" + C_API_DEPLOYMENT = "deployments" # Data and AI C_DATA_AI = "data_ai" @@ -3956,8 +3957,8 @@ def __load_core_compute_instances(self, compute, compartments): 'shape_networking_bandwidth_in_gbps': 0, 'shape_processor_description': "", 'console_vnc_connection_string': "", - 'image': "Not Found", - 'image_os': "Oracle Linux", + 'image': "Unknown", + 'image_os': "Unknown", 'agent_is_management_disabled ': "", 'agent_is_monitoring_disabled': "", 'metadata': arr.metadata, @@ -6549,7 +6550,7 @@ def __load_file_storage_exports(self, file_storage, compartments): # export set try: - exp = file_storage.get_export_set(es.export_set_id).data + exp = file_storage.get_export_set(es.export_set_id, retry_strategy=oci.retry.DEFAULT_RETRY_STRATEGY).data if exp: valexp = {'id': str(exp.id), 'compartment_id': str(exp.compartment_id), 'availability_domain': str(exp.availability_domain), @@ -7904,7 +7905,7 @@ def __load_database_adb_database(self, database_client, compartments): 'sum_count': ("0" if dbs.lifecycle_state == oci.database.models.AutonomousDatabaseSummary.LIFECYCLE_STATE_STOPPED else str(dbs.cpu_core_count)), 'db_version': str(dbs.db_version), 'service_console_url': str(dbs.service_console_url), - 'connection_strings': str(dbs.connection_strings), + 'connection_strings': "", 'connection_urls': str(dbs.connection_urls), 'time_created': str(dbs.time_created), 'compartment_name': str(compartment['name']), @@ -7950,6 +7951,12 @@ def __load_database_adb_database(self, database_client, compartments): 'role': str(dbs.role) } + # connection string + if dbs.connection_strings: + if dbs.connection_strings.all_connection_strings: + dbarr = dbs.connection_strings.all_connection_strings + value['connection_strings'] = str(', '.join(key + "=" + dbarr[key] for key in dbarr.keys())) + # if standby object exist if dbs.standby_db: value['standby_lag_time_in_seconds'] = str(dbs.standby_db.lag_time_in_seconds) @@ -9047,22 +9054,27 @@ def __load_api_main(self): try: print("API Gateways...") - # GatewayClient + # GatewayClient and DeploymentClient api_gw_client = oci.apigateway.GatewayClient(self.config, signer=self.signer, timeout=2) + api_deployment_client = oci.apigateway.DeploymentClient(self.config, signer=self.signer, timeout=2) + if self.flags.proxy: api_gw_client.base_client.session.proxies = {'https': self.flags.proxy} + api_deployment_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_API, self.C_API_GATEWAYS) + self.__initialize_data_key(self.C_API, self.C_API_DEPLOYMENT) # reference to api apic = self.data[self.C_API] # append the data apic[self.C_API_GATEWAYS] += self.__load_api_gateways(api_gw_client, compartments) + apic[self.C_API_DEPLOYMENT] += self.__load_api_deployments(api_deployment_client, compartments) print("") except oci.exceptions.RequestException: @@ -9123,7 +9135,9 @@ def __load_api_gateways(self, api_client, compartments): 'compartment_name': str(compartment['name']), 'compartment_id': str(compartment['id']), 'defined_tags': [] if apig.defined_tags is None else apig.defined_tags, 'freeform_tags': [] if apig.freeform_tags is None else apig.freeform_tags, - 'region_name': str(self.config['region'])} + 'region_name': str(self.config['region']), + 'deployments': [] + } # add the data cnt += 1 @@ -9141,6 +9155,76 @@ def __load_api_gateways(self, api_client, compartments): self.__print_error("__load_api_gateways", e) return data + ########################################################################## + # __load_api_deployments + ########################################################################## + + def __load_api_deployments(self, api_deployment_client, compartments): + + data = [] + cnt = 0 + start_time = time.time() + + try: + self.__load_print_status("API Deployments") + + # loop on all compartments + for compartment in compartments: + if self.__if_managed_paas_compartment(compartment['name']): + print(".", end="") + continue + + apids = [] + try: + apids = oci.pagination.list_call_get_all_results( + api_deployment_client.list_deployments, compartment_id=compartment['id'], + lifecycle_state="ACTIVE", + retry_strategy=oci.retry.DEFAULT_RETRY_STRATEGY + ).data + + except oci.exceptions.ServiceError as e: + if self.__check_request_error(e): + return data + + if self.__check_service_error(e.code): + self.__load_print_auth_warning() + continue + raise + + print(".", end="") + + # load deployment + for apid in apids: + val = {'id': str(apid.id), + 'gateway_id': str(apid.gateway_id), + 'display_name': str(apid.display_name), + 'path_prefix': str(apid.path_prefix), + 'endpoint': str(apid.endpoint), + 'time_created': str(apid.time_created), + 'time_updated': str(apid.time_updated), + 'compartment_name': str(compartment['name']), + 'compartment_id': str(compartment['id']), + 'defined_tags': [] if apid.defined_tags is None else apid.defined_tags, + 'freeform_tags': [] if apid.freeform_tags is None else apid.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_api_deployments", e) + return data + ########################################################################## # __load_functions ########################################################################## diff --git a/examples/showusage/showusage.py b/examples/showusage/showusage.py index fb3b7d5730..ce100536c2 100644 --- a/examples/showusage/showusage.py +++ b/examples/showusage/showusage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. ########################################################################## diff --git a/examples/sign_binary_body_example.py b/examples/sign_binary_body_example.py index 7cf75567ce..d9f8219261 100644 --- a/examples/sign_binary_body_example.py +++ b/examples/sign_binary_body_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Example of signing binary bodies outside of SDK. In this example we register a lookup using a lookup content file in diff --git a/examples/stop_untagged_instances.py b/examples/stop_untagged_instances.py index bd83d6dece..8c7a3d5b4a 100644 --- a/examples/stop_untagged_instances.py +++ b/examples/stop_untagged_instances.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This example demonstrates how to find, stop and report on instances that have diff --git a/examples/stream_example.py b/examples/stream_example.py index 7cc4b4ee10..ca837d193d 100644 --- a/examples/stream_example.py +++ b/examples/stream_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci diff --git a/examples/tag_resources_in_tenancy/tag_resources_in_tenancy.py b/examples/tag_resources_in_tenancy/tag_resources_in_tenancy.py index 1a221c89bf..4f91abc1a7 100644 --- a/examples/tag_resources_in_tenancy/tag_resources_in_tenancy.py +++ b/examples/tag_resources_in_tenancy/tag_resources_in_tenancy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. ########################################################################## @@ -9,7 +9,7 @@ # # Supports Python 3 # -# DISCLAIMER – This is not an official Oracle application, It does not supported by Oracle Support, It should NOT be used for utilization calculation purposes +# DISCLAIMER: This is not an official Oracle application, It does not supported by Oracle Support, It should NOT be used for utilization calculation purposes ########################################################################## # Info: # Tag Resources in Tenancy diff --git a/examples/tagging.py b/examples/tagging.py index 942e6f0694..5a1f927971 100644 --- a/examples/tagging.py +++ b/examples/tagging.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides an example on how to use tagging in the Python SDK to manage tags and tag namespaces, as diff --git a/examples/update_network_security_groups_example.py b/examples/update_network_security_groups_example.py index 5ea8c603f6..39f541fdd3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to upate Network Security Group objects diff --git a/examples/usage_api_example.py b/examples/usage_api_example.py index 888049305e..c38411baf1 100644 --- a/examples/usage_api_example.py +++ b/examples/usage_api_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to you can use usage api. diff --git a/examples/usage_reports_to_adw/CHANGELOG.rst b/examples/usage_reports_to_adw/CHANGELOG.rst index d415a673b6..7a006be4e1 100755 --- a/examples/usage_reports_to_adw/CHANGELOG.rst +++ b/examples/usage_reports_to_adw/CHANGELOG.rst @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog `_. +===================== +21.12.12 - 2021-12-12 +===================== +* Added option to run report on all Tenants when multi tenants loaded + ===================== 21.11.02 - 2021-11-02 ===================== diff --git a/examples/usage_reports_to_adw/apex_demo_app/usage.demo.apex.sql b/examples/usage_reports_to_adw/apex_demo_app/usage.demo.apex.sql index 9934b9325f..64a033da66 100644 --- a/examples/usage_reports_to_adw/apex_demo_app/usage.demo.apex.sql +++ b/examples/usage_reports_to_adw/apex_demo_app/usage.demo.apex.sql @@ -15,7 +15,7 @@ begin wwv_flow_api.import_begin ( p_version_yyyy_mm_dd=>'2021.04.15' ,p_release=>'21.1.3' -,p_default_workspace_id=>9007098045301553 +,p_default_workspace_id=>9710643564672463 ,p_default_application_id=>100 ,p_default_id_offset=>0 ,p_default_owner=>'USAGE' @@ -28,15 +28,15 @@ prompt APPLICATION 100 - OCI Usage and Cost Report -- Application Export: -- Application: 100 -- Name: OCI Usage and Cost Report --- Date and Time: 15:22 Monday October 25, 2021 --- Exported By: USAGE +-- Date and Time: 21:25 Saturday December 11, 2021 +-- Exported By: ADIZOHAR -- Flashback: 0 -- Export Type: Application Export -- Pages: 9 -- Items: 102 -- Computations: 34 -- Processes: 6 --- Regions: 76 +-- Regions: 75 -- Buttons: 6 -- Dynamic Actions: 1 -- Shared Components: @@ -70,7 +70,7 @@ prompt APPLICATION 100 - OCI Usage and Cost Report -- E-Mail: -- Supporting Objects: Excluded -- Version: 21.1.3 --- Instance ID: 9006991473205877 +-- Instance ID: 9710412995014033 -- prompt --application/delete_application @@ -106,7 +106,7 @@ wwv_flow_api.create_flow( ,p_public_user=>'APEX_PUBLIC_USER' ,p_proxy_server=>nvl(wwv_flow_application_install.get_proxy,'') ,p_no_proxy_domains=>nvl(wwv_flow_application_install.get_no_proxy_domains,'') -,p_flow_version=>'Release 21.11.01' +,p_flow_version=>'Release 21.12.12' ,p_flow_status=>'AVAILABLE_W_EDIT_LINK' ,p_flow_unavailable_text=>'This application is currently unavailable at this time.' ,p_exact_substitutions_only=>'Y' @@ -126,8 +126,8 @@ wwv_flow_api.create_flow( ,p_friendly_url=>'N' ,p_substitution_string_01=>'APP_NAME' ,p_substitution_value_01=>'OCI Usage and Cost Report' -,p_last_updated_by=>'USAGE' -,p_last_upd_yyyymmddhh24miss=>'20211025152015' +,p_last_updated_by=>'ADIZOHAR' +,p_last_upd_yyyymmddhh24miss=>'20211211212358' ,p_file_prefix => nvl(wwv_flow_application_install.get_static_app_file_prefix,'') ,p_files_version=>3 ,p_ui_type_name => null @@ -11551,8 +11551,8 @@ wwv_flow_api.create_page( ,p_step_title=>'OCI Usage and Cost Report' ,p_autocomplete_on_off=>'OFF' ,p_page_template_options=>'#DEFAULT#' -,p_last_updated_by=>'USAGE' -,p_last_upd_yyyymmddhh24miss=>'20211025152015' +,p_last_updated_by=>'ADIZOHAR' +,p_last_upd_yyyymmddhh24miss=>'20211211210018' ); wwv_flow_api.create_page_plug( p_id=>wwv_flow_api.id(9856082202688393) @@ -11595,7 +11595,7 @@ wwv_flow_api.create_page_item( '', ' htp.p(''

Welcome ''||:USER||'' ...

''||', ' ''Usage and Cost Reports to Autonomous database''||', -' ''

Created by Adi Zohar, Feb 2020-Nov 2021

''||', +' ''

Created by Adi Zohar, Feb 2020-Dec 2021

''||', ' ''Application github link = usage_reports_to_adw

''||', ' ''Please check as well showoci application

''||', unistr(' ''

DISCLAIMER \2013 This is not an official Oracle application
'''), @@ -11632,8 +11632,8 @@ wwv_flow_api.create_page( '}', '')) ,p_page_template_options=>'#DEFAULT#' -,p_last_updated_by=>'USAGE' -,p_last_upd_yyyymmddhh24miss=>'20211025151546' +,p_last_updated_by=>'ADIZOHAR' +,p_last_upd_yyyymmddhh24miss=>'20211211212218' ); wwv_flow_api.create_page_plug( p_id=>wwv_flow_api.id(9905068422740501) @@ -14414,7 +14414,7 @@ wwv_flow_api.create_page_item( ,p_item_sequence=>200 ,p_item_plug_id=>wwv_flow_api.id(9905068422740501) ,p_prompt=>'Tag Special Data' -,p_display_as=>'NATIVE_SELECT_LIST' +,p_display_as=>'NATIVE_POPUP_LOV' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( 'select distinct tag_special o, tag_special r ', 'from ', @@ -14428,14 +14428,17 @@ wwv_flow_api.create_page_item( ,p_lov_null_text=>'All' ,p_lov_cascade_parent_items=>'P2_TENANT_NAME,P2_DATE' ,p_ajax_optimize_refresh=>'Y' -,p_cHeight=>1 +,p_cSize=>30 ,p_begin_on_new_line=>'N' ,p_colspan=>2 ,p_field_template=>wwv_flow_api.id(9820028477688087) ,p_item_template_options=>'#DEFAULT#' ,p_lov_display_extra=>'YES' -,p_attribute_01=>'NONE' -,p_attribute_02=>'N' +,p_attribute_01=>'POPUP' +,p_attribute_02=>'FIRST_ROWSET' +,p_attribute_03=>'N' +,p_attribute_04=>'N' +,p_attribute_05=>'N' ); wwv_flow_api.create_page_item( p_id=>wwv_flow_api.id(11931232277191605) @@ -14443,7 +14446,7 @@ wwv_flow_api.create_page_item( ,p_item_sequence=>70 ,p_item_plug_id=>wwv_flow_api.id(9905068422740501) ,p_prompt=>'Tag Key' -,p_display_as=>'NATIVE_SELECT_LIST' +,p_display_as=>'NATIVE_POPUP_LOV' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( 'select distinct tag_key o, tag_key r ', 'from ', @@ -14455,14 +14458,17 @@ wwv_flow_api.create_page_item( ,p_lov_null_text=>'All' ,p_lov_cascade_parent_items=>'P2_TENANT_NAME' ,p_ajax_optimize_refresh=>'Y' -,p_cHeight=>1 +,p_cSize=>30 ,p_begin_on_new_line=>'N' ,p_colspan=>2 ,p_field_template=>wwv_flow_api.id(9820028477688087) ,p_item_template_options=>'#DEFAULT#' ,p_lov_display_extra=>'YES' -,p_attribute_01=>'NONE' -,p_attribute_02=>'N' +,p_attribute_01=>'POPUP' +,p_attribute_02=>'FIRST_ROWSET' +,p_attribute_03=>'N' +,p_attribute_04=>'N' +,p_attribute_05=>'N' ); wwv_flow_api.create_page_item( p_id=>wwv_flow_api.id(11978661800439218) @@ -14641,8 +14647,8 @@ wwv_flow_api.create_page( '#P3_DATE_TO_CONTAINER .oj-inputdatetime-input {font-weight:bold}', '#P3_DATE_FROM_CONTAINER .oj-inputdatetime-input {font-weight:bold}')) ,p_page_template_options=>'#DEFAULT#' -,p_last_updated_by=>'USAGE' -,p_last_upd_yyyymmddhh24miss=>'20211025151700' +,p_last_updated_by=>'ADIZOHAR' +,p_last_upd_yyyymmddhh24miss=>'20211211211730' ); wwv_flow_api.create_page_plug( p_id=>wwv_flow_api.id(9908591071740536) @@ -14742,7 +14748,7 @@ wwv_flow_api.create_jet_chart_series( ' ) as USG_BILLED_QUANTITY', 'from oci_usage', 'where ', -' tenant_name=:P3_TENANT_NAME and', +' (tenant_name=:P3_TENANT_NAME or :P3_TENANT_NAME = ''ALL'') and', ' (:P3_COMPARTMENT_NAME is null or prd_compartment_name = :P3_COMPARTMENT_NAME) and', ' (:P3_COMPARTMENT_TOP is null or prd_compartment_path like :P3_COMPARTMENT_TOP ||''%'') and', ' (:P3_PRODUCT_SERVICE is null or prd_service = :P3_PRODUCT_SERVICE) and', @@ -14794,8 +14800,6 @@ wwv_flow_api.create_jet_chart_series( ,p_assigned_to_y2=>'off' ,p_items_label_rendered=>true ,p_items_label_position=>'auto' -,p_items_label_display_as=>'PERCENT' -,p_threshold_display=>'onIndicator' ); wwv_flow_api.create_jet_chart_axis( p_id=>wwv_flow_api.id(9986886731919550) @@ -14928,7 +14932,7 @@ wwv_flow_api.create_jet_chart_series( ' end as USG_CONSUMED_UNITS', ' from oci_usage', ' where ', -' tenant_name=:P3_TENANT_NAME and', +' (tenant_name=:P3_TENANT_NAME or :P3_TENANT_NAME = ''ALL'') and', ' (:P3_COMPARTMENT_NAME is null or prd_compartment_name = :P3_COMPARTMENT_NAME) and', ' (:P3_PRODUCT_SERVICE is null or prd_service = :P3_PRODUCT_SERVICE) and', ' (:P3_PRODUCT_REGION is null or prd_region = :P3_PRODUCT_REGION) and', @@ -14984,8 +14988,6 @@ wwv_flow_api.create_jet_chart_series( ,p_assigned_to_y2=>'off' ,p_items_label_rendered=>true ,p_items_label_position=>'auto' -,p_items_label_display_as=>'PERCENT' -,p_threshold_display=>'onIndicator' ); wwv_flow_api.create_jet_chart_axis( p_id=>wwv_flow_api.id(9989436754919552) @@ -15068,7 +15070,7 @@ wwv_flow_api.create_page_item( ' count(*) cnt', 'from oci_usage', 'where ', -' tenant_name=:P3_TENANT_NAME and', +' (tenant_name=:P3_TENANT_NAME or :P3_TENANT_NAME = ''ALL'') and', ' (:P3_COMPARTMENT_NAME is null or prd_compartment_name = :P3_COMPARTMENT_NAME) and', ' (:P3_COMPARTMENT_TOP is null or prd_compartment_path like :P3_COMPARTMENT_TOP ||''%'') and', ' (:P3_PRODUCT_SERVICE is null or prd_service = :P3_PRODUCT_SERVICE) and', @@ -15121,7 +15123,7 @@ wwv_flow_api.create_page_item( ' to_char(max(USAGE_INTERVAL_START),''DD-MON-YYYY DY HH24:MI'') dte', 'from oci_usage_stats', 'where ', -' tenant_name=:P3_TENANT_NAME')) +' (tenant_name=:P3_TENANT_NAME or :P3_TENANT_NAME = ''ALL'')')) ,p_source_type=>'QUERY' ,p_display_as=>'NATIVE_DISPLAY_ONLY' ,p_tag_attributes=>'style="background-color:#e8e8e8"' @@ -15140,7 +15142,11 @@ wwv_flow_api.create_page_item( ,p_item_plug_id=>wwv_flow_api.id(19880437765659984) ,p_prompt=>'Tenant Name' ,p_display_as=>'NATIVE_SELECT_LIST' -,p_lov=>'select distinct tenant_name o, tenant_name r from oci_usage_stats order by 1' +,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( +'select ''All'' o, ''ALL'' r from dual', +'union all', +'select distinct tenant_name o, tenant_name r from OCI_COST_REFERENCE order by 1', +'')) ,p_lov_display_null=>'YES' ,p_lov_null_text=>'Please Choose...' ,p_cHeight=>1 @@ -15160,11 +15166,11 @@ wwv_flow_api.create_page_item( ,p_prompt=>'Product Region' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct ref_name o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P3_TENANT_NAME', +' (tenant_name=:P3_TENANT_NAME or :P3_TENANT_NAME = ''ALL'')', ' and ref_type=''USAGE_PRD_REGION''', 'order by 1', '')) @@ -15189,11 +15195,11 @@ wwv_flow_api.create_page_item( ,p_prompt=>'Top Level Compartment' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct ref_name o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P3_TENANT_NAME', +' (tenant_name=:P3_TENANT_NAME or :P3_TENANT_NAME = ''ALL'')', ' and ref_type=''USAGE_PRD_COMPARTMENT_PATH''', 'order by 1', '')) @@ -15218,11 +15224,11 @@ wwv_flow_api.create_page_item( ,p_prompt=>'Compartment' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct ref_name o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P3_TENANT_NAME', +' (tenant_name=:P3_TENANT_NAME or :P3_TENANT_NAME = ''ALL'')', ' and ref_type=''USAGE_PRD_COMPARTMENT_NAME''', 'order by 1', '')) @@ -15247,11 +15253,11 @@ wwv_flow_api.create_page_item( ,p_prompt=>'Product' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct ref_name o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P3_TENANT_NAME', +' (tenant_name=:P3_TENANT_NAME or :P3_TENANT_NAME = ''ALL'')', ' and ref_type=''USAGE_PRD_SERVICE''', 'order by 1', '')) @@ -15312,11 +15318,11 @@ wwv_flow_api.create_page_item( ,p_prompt=>'Product Resource' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct ref_name o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P3_TENANT_NAME', +' (tenant_name=:P3_TENANT_NAME or :P3_TENANT_NAME = ''ALL'')', ' and ref_type=''USAGE_PRD_RESOURCE''', 'order by 1', '')) @@ -15339,26 +15345,29 @@ wwv_flow_api.create_page_item( ,p_item_sequence=>60 ,p_item_plug_id=>wwv_flow_api.id(19880437765659984) ,p_prompt=>'Tag Key' -,p_display_as=>'NATIVE_SELECT_LIST' +,p_display_as=>'NATIVE_POPUP_LOV' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( 'select distinct tag_key o, tag_key r ', 'from ', ' oci_usage_tag_keys', 'where', -' tenant_name=:P3_TENANT_NAME', +' (tenant_name=:P3_TENANT_NAME or :P3_TENANT_NAME = ''ALL'')', 'order by 1')) ,p_lov_display_null=>'YES' ,p_lov_null_text=>'All' ,p_lov_cascade_parent_items=>'P2_TENANT_NAME' ,p_ajax_optimize_refresh=>'Y' -,p_cHeight=>1 +,p_cSize=>30 ,p_begin_on_new_line=>'N' ,p_colspan=>2 ,p_field_template=>wwv_flow_api.id(9820028477688087) ,p_item_template_options=>'#DEFAULT#' ,p_lov_display_extra=>'YES' -,p_attribute_01=>'NONE' -,p_attribute_02=>'N' +,p_attribute_01=>'POPUP' +,p_attribute_02=>'FIRST_ROWSET' +,p_attribute_03=>'N' +,p_attribute_04=>'N' +,p_attribute_05=>'N' ); wwv_flow_api.create_page_item( p_id=>wwv_flow_api.id(11979854855439230) @@ -15433,13 +15442,13 @@ wwv_flow_api.create_page_item( ,p_item_sequence=>190 ,p_item_plug_id=>wwv_flow_api.id(19880437765659984) ,p_prompt=>'Tag Special' -,p_display_as=>'NATIVE_SELECT_LIST' +,p_display_as=>'NATIVE_POPUP_LOV' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct ref_name o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P3_TENANT_NAME', +' (tenant_name=:P3_TENANT_NAME or :P3_TENANT_NAME = ''ALL'')', ' and ref_type=''USAGE_TAG_SPECIAL''', 'order by 1', '')) @@ -15447,15 +15456,21 @@ wwv_flow_api.create_page_item( ,p_lov_null_text=>'All' ,p_lov_cascade_parent_items=>'P3_TENANT_NAME' ,p_ajax_optimize_refresh=>'Y' -,p_cHeight=>1 +,p_cSize=>30 ,p_begin_on_new_line=>'N' ,p_colspan=>2 ,p_field_template=>wwv_flow_api.id(9820028477688087) ,p_item_template_options=>'#DEFAULT#' ,p_lov_display_extra=>'YES' -,p_attribute_01=>'NONE' -,p_attribute_02=>'N' +,p_attribute_01=>'POPUP' +,p_attribute_02=>'FIRST_ROWSET' +,p_attribute_03=>'N' +,p_attribute_04=>'N' +,p_attribute_05=>'N' ); +end; +/ +begin wwv_flow_api.create_page_item( p_id=>wwv_flow_api.id(11981093888439242) ,p_name=>'P3_QUICKTIME' @@ -15478,9 +15493,6 @@ wwv_flow_api.create_page_item( ,p_attribute_01=>'NONE' ,p_attribute_02=>'N' ); -end; -/ -begin wwv_flow_api.create_page_item( p_id=>wwv_flow_api.id(12305899776574230) ,p_name=>'P3_TENANT_ID' @@ -15489,11 +15501,11 @@ wwv_flow_api.create_page_item( ,p_prompt=>'Tenant Id' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct ref_name o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P3_TENANT_NAME', +' (tenant_name=:P3_TENANT_NAME or :P3_TENANT_NAME = ''ALL'')', ' and ref_type=''USAGE_TENANT_ID''', 'order by 1', '')) @@ -15541,7 +15553,7 @@ wwv_flow_api.create_page_computation( ,p_computation_item=>'P3_TENANT_NAME' ,p_computation_point=>'AFTER_HEADER' ,p_computation_type=>'QUERY' -,p_computation=>'select tenant_name from oci_usage where rownum<2' +,p_computation=>'select tenant_name from OCI_COST_REFERENCE where rownum<2' ,p_compute_when=>'P3_TENANT_NAME' ,p_compute_when_type=>'ITEM_IS_NULL' ); @@ -15551,7 +15563,7 @@ wwv_flow_api.create_page_computation( ,p_computation_item=>'P3_DATE_FROM' ,p_computation_point=>'BEFORE_BOX_BODY' ,p_computation_type=>'QUERY' -,p_computation=>'select to_Char(trunc(max(USAGE_INTERVAL_START)-14),''DD-MON-YYYY'') from oci_usage_stats where tenant_name=:P3_TENANT_NAME' +,p_computation=>'select to_Char(trunc(max(USAGE_INTERVAL_START)-14),''DD-MON-YYYY'') from oci_usage_stats where (tenant_name=:P3_TENANT_NAME or :P3_TENANT_NAME = ''ALL'')' ,p_compute_when=>'P3_DATE_FROM' ,p_compute_when_type=>'ITEM_IS_NULL' ); @@ -15561,7 +15573,7 @@ wwv_flow_api.create_page_computation( ,p_computation_item=>'P3_DATE_TO' ,p_computation_point=>'BEFORE_BOX_BODY' ,p_computation_type=>'QUERY' -,p_computation=>'select to_char(max(trunc(USAGE_INTERVAL_START)+1),''DD-MON-YYYY'') from oci_usage_stats where tenant_name=:P3_TENANT_NAME' +,p_computation=>'select to_char(max(trunc(USAGE_INTERVAL_START)+1),''DD-MON-YYYY'') from oci_usage_stats where (tenant_name=:P3_TENANT_NAME or :P3_TENANT_NAME = ''ALL'')' ,p_compute_when=>'P3_DATE_TO' ,p_compute_when_type=>'ITEM_IS_NULL' ); @@ -15676,8 +15688,8 @@ wwv_flow_api.create_page( '', '')) ,p_page_template_options=>'#DEFAULT#' -,p_last_updated_by=>'USAGE' -,p_last_upd_yyyymmddhh24miss=>'20211025151423' +,p_last_updated_by=>'ADIZOHAR' +,p_last_upd_yyyymmddhh24miss=>'20211211211945' ); wwv_flow_api.create_page_plug( p_id=>wwv_flow_api.id(10816553122165737) @@ -15791,7 +15803,7 @@ wwv_flow_api.create_jet_chart_series( ' sum(COST_MY_COST) as COST_MY_COST', 'from oci_cost', 'where ', -' tenant_name=:P4_TENANT_NAME and', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'') and', ' (:P4_COMPARTMENT_NAME is null or prd_compartment_name = :P4_COMPARTMENT_NAME) and', ' (:P4_COMPARTMENT_TOP is null or prd_compartment_path like :P4_COMPARTMENT_TOP ||''%'') and', ' (:P4_PRODUCT_SERVICE is null or prd_service = :P4_PRODUCT_SERVICE) and', @@ -15818,7 +15830,6 @@ wwv_flow_api.create_jet_chart_series( ,p_items_label_position=>'insideBarEdge' ,p_items_label_display_as=>'ALL' ,p_items_label_font_size=>'10' -,p_threshold_display=>'onIndicator' ); wwv_flow_api.create_page_plug( p_id=>wwv_flow_api.id(10815862618165730) @@ -15889,7 +15900,7 @@ wwv_flow_api.create_jet_chart_series( ' sum(COST_MY_COST) as COST_MY_COST', 'from oci_cost', 'where ', -' tenant_name=:P4_TENANT_NAME and', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'') and', ' (:P4_COMPARTMENT_NAME is null or prd_compartment_name = :P4_COMPARTMENT_NAME) and', ' (:P4_PRODUCT_SERVICE is null or prd_service = :P4_PRODUCT_SERVICE) and', ' (:P4_PRODUCT_REGION is null or prd_region = :P4_PRODUCT_REGION) and', @@ -15918,10 +15929,8 @@ wwv_flow_api.create_jet_chart_series( ,p_assigned_to_y2=>'off' ,p_items_label_rendered=>true ,p_items_label_position=>'insideBarEdge' -,p_items_label_display_as=>'PERCENT' ,p_items_label_font_style=>'normal' ,p_items_label_font_size=>'8' -,p_threshold_display=>'onIndicator' ); wwv_flow_api.create_jet_chart_axis( p_id=>wwv_flow_api.id(10816181831165733) @@ -16032,7 +16041,7 @@ wwv_flow_api.create_jet_chart_series( ' sum(COST_MY_COST) as COST_MY_COST', 'from oci_cost', 'where ', -' tenant_name=:P4_TENANT_NAME and', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'') and', ' (:P4_COMPARTMENT_NAME is null or prd_compartment_name = :P4_COMPARTMENT_NAME) and', ' (:P4_COMPARTMENT_TOP is null or prd_compartment_path like :P4_COMPARTMENT_TOP ||''%'') and', ' (:P4_PRODUCT_SERVICE is null or prd_service = :P4_PRODUCT_SERVICE) and', @@ -16055,7 +16064,7 @@ wwv_flow_api.create_jet_chart_series( ' sum(COST_MY_COST) as COST_MY_COST', 'from oci_cost_stats', 'where ', -' tenant_name=:P4_TENANT_NAME and', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'') and', ' USAGE_INTERVAL_START >= to_date(:P4_DATE_FROM,''DD-MON-YYYY HH24:MI'') and USAGE_INTERVAL_START < to_date(:P4_DATE_TO,''DD-MON-YYYY HH24:MI'')', ' and COST_MY_COST > 0', ' and (:P4_TENANT_ID is null and :P4_COMPARTMENT_NAME is null and :P4_PRODUCT_SERVICE is null and :P4_PRODUCT_REGION is null and :P4_COMPARTMENT_TOP is null and :P4_TAG_KEY is null and :P4_TAG_DATA is null and :P4_COST_PRODUCT_SKU is null and :P4_T' @@ -16074,9 +16083,7 @@ wwv_flow_api.create_jet_chart_series( ,p_assigned_to_y2=>'off' ,p_items_label_rendered=>true ,p_items_label_position=>'auto' -,p_items_label_display_as=>'PERCENT' ,p_items_label_font_size=>'10' -,p_threshold_display=>'onIndicator' ); wwv_flow_api.create_jet_chart_axis( p_id=>wwv_flow_api.id(11932199654191614) @@ -16194,7 +16201,7 @@ wwv_flow_api.create_jet_chart_series( ' sum(COST_MY_COST) as COST_MY_COST', 'from oci_cost', 'where ', -' tenant_name=:P4_TENANT_NAME and', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'') and', ' (:P4_COMPARTMENT_NAME is null or prd_compartment_name = :P4_COMPARTMENT_NAME) and', ' (:P4_COMPARTMENT_TOP is null or prd_compartment_path like :P4_COMPARTMENT_TOP ||''%'') and', ' (:P4_PRODUCT_SERVICE is null or prd_service = :P4_PRODUCT_SERVICE) and', @@ -16221,7 +16228,6 @@ wwv_flow_api.create_jet_chart_series( ,p_items_label_position=>'insideBarEdge' ,p_items_label_display_as=>'LBL_VAL' ,p_items_label_font_size=>'10' -,p_threshold_display=>'onIndicator' ); wwv_flow_api.create_page_plug( p_id=>wwv_flow_api.id(11978878827439220) @@ -16288,7 +16294,7 @@ wwv_flow_api.create_jet_chart_series( ' sum(COST_MY_COST) as COST_MY_COST', 'from oci_cost', 'where ', -' tenant_name=:P4_TENANT_NAME and', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'') and', ' (:P4_COMPARTMENT_NAME is null or prd_compartment_name = :P4_COMPARTMENT_NAME) and', ' (:P4_PRODUCT_SERVICE is null or prd_service = :P4_PRODUCT_SERVICE) and', ' (:P4_PRODUCT_REGION is null or prd_region = :P4_PRODUCT_REGION) and', @@ -16313,10 +16319,8 @@ wwv_flow_api.create_jet_chart_series( ,p_assigned_to_y2=>'off' ,p_items_label_rendered=>true ,p_items_label_position=>'insideBarEdge' -,p_items_label_display_as=>'PERCENT' ,p_items_label_font_style=>'normal' ,p_items_label_font_size=>'8' -,p_threshold_display=>'onIndicator' ); wwv_flow_api.create_jet_chart_axis( p_id=>wwv_flow_api.id(11979188991439223) @@ -16379,6 +16383,7 @@ wwv_flow_api.create_page_plug( '(', ' select /*+ parallel(a,8) full(a) */ ', ' a.tenant_name,', +' a.tenant_id,', ' a.USG_RESOURCE_ID as RESOURCE_ID,', ' min(a.COST_PRODUCT_SKU || '' '' || replace(PRD_DESCRIPTION,COST_PRODUCT_SKU||'' - '','''')) as PRODUCT,', ' min(COST_BILLING_UNIT) COST_BILLING_UNIT,', @@ -16409,7 +16414,7 @@ wwv_flow_api.create_page_plug( ' sum(COST_MY_COST)*(24 * 365 / count(distinct USAGE_INTERVAL_START)) ESTIMATE_YEAR', ' from oci_cost a', ' where ', -' tenant_name=:P4_TENANT_NAME and', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'') and', ' (:P4_COMPARTMENT_NAME is null or prd_compartment_name = :P4_COMPARTMENT_NAME) and', ' (:P4_PRODUCT_SERVICE is null or prd_service = :P4_PRODUCT_SERVICE) and', ' (:P4_PRODUCT_REGION is null or prd_region = :P4_PRODUCT_REGION) and', @@ -16423,9 +16428,11 @@ wwv_flow_api.create_page_plug( ' and COST_MY_COST<>0', ' and :P4_REPORT_SELECTOR = ''Cost Resource Report''', ' group by ', -' a.tenant_name,a.USG_RESOURCE_ID', +' a.tenant_name,a.USG_RESOURCE_ID, tenant_id', ')', 'select ', +' TENANT_NAME,', +' TENANT_ID,', ' RESOURCE_ID,', ' PRODUCT,', ' COST_BILLING_UNIT,', @@ -16497,10 +16504,26 @@ wwv_flow_api.create_worksheet( ,p_owner=>'ADIZOHAR' ,p_internal_uid=>12303874435574210 ); +wwv_flow_api.create_worksheet_column( + p_id=>wwv_flow_api.id(32617460170047506) +,p_db_column_name=>'TENANT_NAME' +,p_display_order=>10 +,p_column_identifier=>'L' +,p_column_label=>'Tenant Name' +,p_column_type=>'STRING' +); +wwv_flow_api.create_worksheet_column( + p_id=>wwv_flow_api.id(32617560799047507) +,p_db_column_name=>'TENANT_ID' +,p_display_order=>20 +,p_column_identifier=>'M' +,p_column_label=>'Tenant Id' +,p_column_type=>'STRING' +); wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(12305231371574224) ,p_db_column_name=>'RESOURCE_ID' -,p_display_order=>10 +,p_display_order=>30 ,p_column_identifier=>'K' ,p_column_label=>'Resource Id' ,p_column_type=>'STRING' @@ -16508,7 +16531,7 @@ wwv_flow_api.create_worksheet_column( wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(12303914004574211) ,p_db_column_name=>'PRODUCT' -,p_display_order=>20 +,p_display_order=>40 ,p_column_identifier=>'A' ,p_column_label=>'Product' ,p_column_html_expression=>'#PRODUCT#' @@ -16517,7 +16540,7 @@ wwv_flow_api.create_worksheet_column( wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(12304097099574212) ,p_db_column_name=>'COST_BILLING_UNIT' -,p_display_order=>30 +,p_display_order=>50 ,p_column_identifier=>'B' ,p_column_label=>'Cost Billing Unit' ,p_column_html_expression=>'#COST_BILLING_UNIT#' @@ -16526,7 +16549,7 @@ wwv_flow_api.create_worksheet_column( wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(12304164237574213) ,p_db_column_name=>'RATE' -,p_display_order=>40 +,p_display_order=>60 ,p_column_identifier=>'C' ,p_column_label=>'Customer Rate' ,p_column_type=>'NUMBER' @@ -16536,7 +16559,7 @@ wwv_flow_api.create_worksheet_column( wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(12304936216574221) ,p_db_column_name=>'CURRENCY' -,p_display_order=>50 +,p_display_order=>70 ,p_column_identifier=>'J' ,p_column_label=>'Cur' ,p_column_type=>'STRING' @@ -16545,7 +16568,7 @@ wwv_flow_api.create_worksheet_column( wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(12304255716574214) ,p_db_column_name=>'SINGLE_QUANTITY' -,p_display_order=>60 +,p_display_order=>80 ,p_column_identifier=>'D' ,p_column_label=>'Single Quantity' ,p_column_type=>'NUMBER' @@ -16555,7 +16578,7 @@ wwv_flow_api.create_worksheet_column( wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(12304320208574215) ,p_db_column_name=>'HOURS_QUANTITY' -,p_display_order=>70 +,p_display_order=>90 ,p_column_identifier=>'E' ,p_column_label=>'Hours Quantity' ,p_column_type=>'NUMBER' @@ -16565,7 +16588,7 @@ wwv_flow_api.create_worksheet_column( wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(12304485477574216) ,p_db_column_name=>'TOTAL_QUANTITY' -,p_display_order=>80 +,p_display_order=>100 ,p_column_identifier=>'F' ,p_column_label=>'Total Quantity' ,p_column_type=>'NUMBER' @@ -16575,7 +16598,7 @@ wwv_flow_api.create_worksheet_column( wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(12304690528574218) ,p_db_column_name=>'USAGE_COST' -,p_display_order=>90 +,p_display_order=>110 ,p_column_identifier=>'G' ,p_column_label=>'Usage Cost' ,p_column_type=>'NUMBER' @@ -16586,7 +16609,7 @@ wwv_flow_api.create_worksheet_column( wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(12304770770574219) ,p_db_column_name=>'ESTIMATE_MONTH_31' -,p_display_order=>100 +,p_display_order=>120 ,p_column_identifier=>'H' ,p_column_label=>'Estimate Month 31' ,p_column_type=>'NUMBER' @@ -16596,7 +16619,7 @@ wwv_flow_api.create_worksheet_column( wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(12304821038574220) ,p_db_column_name=>'ESTIMATE_YEAR' -,p_display_order=>110 +,p_display_order=>130 ,p_column_identifier=>'I' ,p_column_label=>'Estimate Year' ,p_column_type=>'NUMBER' @@ -16610,7 +16633,7 @@ wwv_flow_api.create_worksheet_rpt( ,p_report_alias=>'144062' ,p_status=>'PUBLIC' ,p_is_default=>'Y' -,p_report_columns=>'RESOURCE_ID:PRODUCT:COST_BILLING_UNIT:RATE:CURRENCY:SINGLE_QUANTITY:HOURS_QUANTITY:TOTAL_QUANTITY:USAGE_COST:ESTIMATE_MONTH_31:ESTIMATE_YEAR' +,p_report_columns=>'TENANT_NAME:TENANT_ID:RESOURCE_ID:PRODUCT:COST_BILLING_UNIT:RATE:CURRENCY:SINGLE_QUANTITY:HOURS_QUANTITY:TOTAL_QUANTITY:USAGE_COST:ESTIMATE_MONTH_31:ESTIMATE_YEAR:' ); wwv_flow_api.create_page_plug( p_id=>wwv_flow_api.id(12317143055646735) @@ -16653,7 +16676,7 @@ wwv_flow_api.create_page_plug( ' TAGS_DATA ', 'from oci_cost', 'where ', -' tenant_name=:P4_TENANT_NAME and', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'') and', ' (:P4_COMPARTMENT_NAME is null or prd_compartment_name = :P4_COMPARTMENT_NAME) and', ' (:P4_PRODUCT_SERVICE is null or prd_service = :P4_PRODUCT_SERVICE) and', ' (:P4_PRODUCT_REGION is null or prd_region = :P4_PRODUCT_REGION) and', @@ -17053,7 +17076,7 @@ wwv_flow_api.create_jet_chart_series( ' sum(COST_MY_COST) as COST_MY_COST', ' from oci_cost', ' where ', -' tenant_name=:P4_TENANT_NAME and', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'') and', ' (:P4_COMPARTMENT_NAME is null or prd_compartment_name = :P4_COMPARTMENT_NAME) and', ' (:P4_COMPARTMENT_TOP is null or prd_compartment_path like :P4_COMPARTMENT_TOP ||''%'') and', ' (:P4_PRODUCT_SERVICE is null or prd_service = :P4_PRODUCT_SERVICE) and', @@ -17076,7 +17099,7 @@ wwv_flow_api.create_jet_chart_series( ' sum(COST_MY_COST) as COST_MY_COST', ' from oci_cost_stats', ' where ', -' tenant_name=:P4_TENANT_NAME and', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'') and', ' USAGE_INTERVAL_START >= to_date(:P4_DATE_FROM,''DD-MON-YYYY HH24:MI'') and USAGE_INTERVAL_START < to_date(:P4_DATE_TO,''DD-MON-YYYY HH24:MI'')', ' and COST_MY_COST > 0', ' and (:P4_TENANT_ID is null and :P4_COMPARTMENT_NAME is null and :P4_PRODUCT_SERVICE is null and :P4_PRODUCT_REGION is null and :P4_COMPARTMENT_TOP is null and :P4_TAG_KEY is null and :P4_TAG_DATA is null and :P4_COST_PRODUCT_SKU is null and :' @@ -17100,9 +17123,7 @@ wwv_flow_api.create_jet_chart_series( ,p_assigned_to_y2=>'off' ,p_items_label_rendered=>true ,p_items_label_position=>'aboveMarker' -,p_items_label_display_as=>'PERCENT' ,p_items_label_font_size=>'10' -,p_threshold_display=>'onIndicator' ); wwv_flow_api.create_jet_chart_axis( p_id=>wwv_flow_api.id(13974468820041421) @@ -17167,8 +17188,7 @@ wwv_flow_api.create_page_plug( 'with data as', '(', ' select /*+ parallel(a,8) full(a) */ ', -' a.tenant_name,', -' a.COST_PRODUCT_SKU || '' '' || replace(PRD_DESCRIPTION,COST_PRODUCT_SKU||'' - '','''') as PRODUCT,', +' a.COST_PRODUCT_SKU || '' '' || min(replace(PRD_DESCRIPTION,COST_PRODUCT_SKU||'' - '','''')) as PRODUCT,', ' a.COST_PRODUCT_SKU,', ' min(COST_BILLING_UNIT) COST_BILLING_UNIT,', ' max(COST_UNIT_PRICE) RATE,', @@ -17198,7 +17218,7 @@ wwv_flow_api.create_page_plug( ' sum(COST_MY_COST)*(24 * 365 / count(distinct USAGE_INTERVAL_START)) ESTIMATE_YEAR', ' from oci_cost a', ' where ', -' tenant_name=:P4_TENANT_NAME and', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'') and', ' (:P4_COMPARTMENT_NAME is null or prd_compartment_name = :P4_COMPARTMENT_NAME) and', ' (:P4_PRODUCT_SERVICE is null or prd_service = :P4_PRODUCT_SERVICE) and', ' (:P4_PRODUCT_REGION is null or prd_region = :P4_PRODUCT_REGION) and', @@ -17208,15 +17228,27 @@ wwv_flow_api.create_page_plug( ' (:P4_TAG_SPECIAL is null or TAG_SPECIAL = :P4_TAG_SPECIAL) and', ' (:P4_TAG_DATA is null or tags_data like ''%#'' || nvl(:P4_TAG_KEY,''%'') || ''='' || :P4_TAG_DATA || ''#%'') and', ' (:P4_COST_PRODUCT_SKU is null or a.COST_PRODUCT_SKU = :P4_COST_PRODUCT_SKU) and', -' USAGE_INTERVAL_START >= to_date(:P4_DATE_FROM,''DD-MON-YYYY HH24:MI'') and USAGE_INTERVAL_START < to_date(:P4_DATE_TO,''DD-MON-YYYY HH24:MI'')', -' and COST_MY_COST<>0', -' and :P4_REPORT_SELECTOR = ''Cost Report''', +' USAGE_INTERVAL_START >= to_date(:P4_DATE_FROM,''DD-MON-YYYY HH24:MI'') and USAGE_INTERVAL_START < to_date(:P4_DATE_TO,''DD-MON-YYYY HH24:MI'') and', +' COST_MY_COST<>0 and', +' :P4_REPORT_SELECTOR = ''Cost Report''', ' group by ', -' a.tenant_name,a.COST_PRODUCT_SKU , replace(PRD_DESCRIPTION,COST_PRODUCT_SKU||'' - '','''')', +' a.COST_PRODUCT_SKU', +'), ', +'pubic_rate_tab as', +'(', +' select ', +' COST_PRODUCT_SKU,', +' max(RATE_MONTHLY_FLEX_PRICE) as RATE_MONTHLY_FLEX_PRICE', +' from ', +' oci_price_list', +' where', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'') ', +' and RATE_MONTHLY_FLEX_PRICE is not null ', +' group by COST_PRODUCT_SKU', ')', 'select ', -' PRODUCT,', -' COST_BILLING_UNIT,', +' A.PRODUCT,', +' A.COST_BILLING_UNIT,', ' case when RATE_MONTHLY_FLEX_PRICE = 0 then null else RATE_MONTHLY_FLEX_PRICE end PUBLIC_RATE,', ' CASE WHEN RATE_MONTHLY_FLEX_PRICE > 0 AND RATE_MONTHLY_FLEX_PRICE IS NOT NULL and RATE>0 THEN', ' ROUND((RATE_MONTHLY_FLEX_PRICE - RATE )/RATE_MONTHLY_FLEX_PRICE * 100,1)', @@ -17226,15 +17258,13 @@ wwv_flow_api.create_page_plug( ' SINGLE_QUANTITY,', ' HOURS_QUANTITY,', ' TOTAL_QUANTITY,', -' OVERAGE_COST,', ' USAGE_COST,', ' ESTIMATE_MONTH_31,', ' ESTIMATE_YEAR', 'from', ' data a,', -' oci_price_list b', +' pubic_rate_tab b', 'where ', -' a.tenant_name = b.tenant_name (+) and', ' a.COST_PRODUCT_SKU = b.COST_PRODUCT_SKU (+)', 'order by USAGE_COST', '', @@ -17329,6 +17359,9 @@ wwv_flow_api.create_worksheet_column( ,p_format_mask=>'999G999G999G999G990D0' ,p_static_id=>'rep_col_pink' ); +end; +/ +begin wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(11934736538191640) ,p_db_column_name=>'RATE' @@ -17348,9 +17381,6 @@ wwv_flow_api.create_worksheet_column( ,p_column_type=>'STRING' ,p_column_alignment=>'CENTER' ); -end; -/ -begin wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(11934801837191641) ,p_db_column_name=>'SINGLE_QUANTITY' @@ -17381,16 +17411,6 @@ wwv_flow_api.create_worksheet_column( ,p_column_alignment=>'RIGHT' ,p_format_mask=>'999G999G999G999G990D0' ); -wwv_flow_api.create_worksheet_column( - p_id=>wwv_flow_api.id(11935139954191644) -,p_db_column_name=>'OVERAGE_COST' -,p_display_order=>100 -,p_column_identifier=>'G' -,p_column_label=>'Overage Cost' -,p_column_type=>'NUMBER' -,p_column_alignment=>'RIGHT' -,p_format_mask=>'999G999G999G999G990D000' -); wwv_flow_api.create_worksheet_column( p_id=>wwv_flow_api.id(11935274061191645) ,p_db_column_name=>'USAGE_COST' @@ -17429,7 +17449,8 @@ wwv_flow_api.create_worksheet_rpt( ,p_report_alias=>'122650' ,p_status=>'PUBLIC' ,p_is_default=>'Y' -,p_report_columns=>'PRODUCT:COST_BILLING_UNIT:CURRENCY:PUBLIC_RATE:PCT_MONTH:RATE:SINGLE_QUANTITY:USAGE_COST:ESTIMATE_MONTH_31:ESTIMATE_YEAR:' +,p_display_rows=>100 +,p_report_columns=>'PRODUCT:COST_BILLING_UNIT:CURRENCY:PUBLIC_RATE:PCT_MONTH:RATE:SINGLE_QUANTITY:USAGE_COST:ESTIMATE_MONTH_31:ESTIMATE_YEAR' ,p_sum_columns_on_break=>'OVERAGE_COST:USAGE_COST:ESTIMATE_MONTH_31:ESTIMATE_YEAR' ); wwv_flow_api.create_worksheet_rpt( @@ -17440,7 +17461,7 @@ wwv_flow_api.create_worksheet_rpt( ,p_report_alias=>'164423' ,p_status=>'PUBLIC' ,p_is_default=>'Y' -,p_report_columns=>'PRODUCT:CURRENCY:PCT_MONTH:RATE:SINGLE_QUANTITY:OVERAGE_COST:USAGE_COST:ESTIMATE_MONTH_31:ESTIMATE_YEAR' +,p_report_columns=>'PRODUCT:CURRENCY:PCT_MONTH:RATE:SINGLE_QUANTITY:USAGE_COST:ESTIMATE_MONTH_31:ESTIMATE_YEAR' ,p_sum_columns_on_break=>'OVERAGE_COST:USAGE_COST:ESTIMATE_MONTH_31:ESTIMATE_YEAR' ); wwv_flow_api.create_page_plug( @@ -17508,7 +17529,7 @@ wwv_flow_api.create_jet_chart_series( ' sum(COST_MY_COST) as COST_MY_COST', 'from oci_cost', 'where ', -' tenant_name=:P4_TENANT_NAME and', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'') and', ' (:P4_COMPARTMENT_NAME is null or prd_compartment_name = :P4_COMPARTMENT_NAME) and', ' (:P4_PRODUCT_SERVICE is null or prd_service = :P4_PRODUCT_SERVICE) and', ' (:P4_PRODUCT_REGION is null or prd_region = :P4_PRODUCT_REGION) and', @@ -17533,10 +17554,8 @@ wwv_flow_api.create_jet_chart_series( ,p_assigned_to_y2=>'off' ,p_items_label_rendered=>true ,p_items_label_position=>'insideBarEdge' -,p_items_label_display_as=>'PERCENT' ,p_items_label_font_style=>'normal' ,p_items_label_font_size=>'8' -,p_threshold_display=>'onIndicator' ); wwv_flow_api.create_jet_chart_axis( p_id=>wwv_flow_api.id(11711229189773204) @@ -17652,7 +17671,7 @@ wwv_flow_api.create_jet_chart_series( ' sum(COST_MY_COST) as COST_MY_COST', 'from oci_cost', 'where ', -' tenant_name=:P4_TENANT_NAME and', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'') and', ' (:P4_COMPARTMENT_NAME is null or prd_compartment_name = :P4_COMPARTMENT_NAME) and', ' (:P4_COMPARTMENT_TOP is null or prd_compartment_path like :P4_COMPARTMENT_TOP ||''%'') and', ' (:P4_PRODUCT_SERVICE is null or prd_service = :P4_PRODUCT_SERVICE) and', @@ -17678,7 +17697,6 @@ wwv_flow_api.create_jet_chart_series( ,p_items_label_rendered=>true ,p_items_label_position=>'aboveMarker' ,p_items_label_display_as=>'ALL' -,p_threshold_display=>'onIndicator' ); wwv_flow_api.create_page_plug( p_id=>wwv_flow_api.id(21609013755513694) @@ -17717,13 +17735,14 @@ wwv_flow_api.create_page_item( ,p_prompt=>'Product SKU' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, substr(ref_name,1,6) r ', +'select distinct replace(replace(ref_name,substr(ref_name,1,6)||'' - '',''''),''Oracle Cloud Infrastructure'',''OCI'') o, substr(ref_name,1,6) r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P4_TENANT_NAME', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'')', ' and ref_type=''COST_PRODUCT_SKU''', -'order by 1')) +'order by 1', +'')) ,p_lov_display_null=>'YES' ,p_lov_null_text=>'All' ,p_lov_cascade_parent_items=>'P4_TENANT_NAME' @@ -17800,7 +17819,7 @@ wwv_flow_api.create_page_item( ' USAGE_INTERVAL_START DATE_HOUR', ' from oci_cost_stats', ' where', -' tenant_name=:P4_TENANT_NAME and', +' (tenant_name=:P4_TENANT_NAME or ''ALL''=:P4_TENANT_NAME) and', ' USAGE_INTERVAL_START >= to_date(:P4_DATE_FROM,''DD-MON-YYYY HH24:MI'') and USAGE_INTERVAL_START < to_date(:P4_DATE_TO,''DD-MON-YYYY HH24:MI'')', ')')) ,p_source_type=>'QUERY' @@ -17821,7 +17840,11 @@ wwv_flow_api.create_page_item( ,p_item_plug_id=>wwv_flow_api.id(10816553122165737) ,p_prompt=>'Tenant Name' ,p_display_as=>'NATIVE_SELECT_LIST' -,p_lov=>'select distinct tenant_name o, tenant_name r from oci_cost order by 1' +,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( +'select ''All'' o, ''ALL'' r from dual', +'union all', +'select distinct tenant_name o, tenant_name r from OCI_COST_REFERENCE order by 1', +'')) ,p_lov_display_null=>'YES' ,p_lov_null_text=>'Please Choose...' ,p_cHeight=>1 @@ -17841,11 +17864,11 @@ wwv_flow_api.create_page_item( ,p_prompt=>'Top Level Compartment' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct ref_name o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P4_TENANT_NAME', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'')', ' and ref_type=''PRD_COMPARTMENT_PATH''', 'order by 1')) ,p_lov_display_null=>'YES' @@ -17869,11 +17892,11 @@ wwv_flow_api.create_page_item( ,p_prompt=>'Product Service' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct initcap(ref_name) o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P4_TENANT_NAME', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'')', ' and ref_type=''PRD_SERVICE''', 'order by 1')) ,p_lov_display_null=>'YES' @@ -17906,11 +17929,11 @@ wwv_flow_api.create_page_item( ,p_prompt=>'Product Region' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct ref_name o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P4_TENANT_NAME', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'')', ' and ref_type=''PRD_REGION''', 'order by 1')) ,p_lov_display_null=>'YES' @@ -17934,11 +17957,11 @@ wwv_flow_api.create_page_item( ,p_prompt=>'Compartment' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct ref_name o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P4_TENANT_NAME', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'')', ' and ref_type=''PRD_COMPARTMENT_NAME''', 'order by 1')) ,p_lov_display_null=>'YES' @@ -17983,7 +18006,7 @@ wwv_flow_api.create_page_item( ' to_char(max(USAGE_INTERVAL_START),''DD-MON-YY HH24:MI'') dte', 'from oci_cost_stats', 'where ', -' tenant_name=:P4_TENANT_NAME')) +' (tenant_name=:P4_TENANT_NAME or ''ALL''=:P4_TENANT_NAME)')) ,p_source_type=>'QUERY' ,p_display_as=>'NATIVE_DISPLAY_ONLY' ,p_tag_attributes=>'style="background-color:#e8e8e8"' @@ -17997,30 +18020,33 @@ wwv_flow_api.create_page_item( wwv_flow_api.create_page_item( p_id=>wwv_flow_api.id(11790511673177238) ,p_name=>'P4_TAG_SPECIAL' -,p_item_sequence=>170 +,p_item_sequence=>160 ,p_item_plug_id=>wwv_flow_api.id(10816553122165737) ,p_prompt=>'Tag Special Data' -,p_display_as=>'NATIVE_SELECT_LIST' +,p_display_as=>'NATIVE_POPUP_LOV' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct ref_name o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P4_TENANT_NAME', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'')', ' and ref_type=''TAG_SPECIAL''', 'order by 1')) ,p_lov_display_null=>'YES' ,p_lov_null_text=>'All' ,p_lov_cascade_parent_items=>'P4_TENANT_NAME,P4_DATE_FROM, P4_DATE_TO' ,p_ajax_optimize_refresh=>'Y' -,p_cHeight=>1 +,p_cSize=>30 ,p_begin_on_new_line=>'N' ,p_colspan=>2 ,p_field_template=>wwv_flow_api.id(9820028477688087) ,p_item_template_options=>'#DEFAULT#' ,p_lov_display_extra=>'YES' -,p_attribute_01=>'NONE' -,p_attribute_02=>'N' +,p_attribute_01=>'POPUP' +,p_attribute_02=>'FIRST_ROWSET' +,p_attribute_03=>'N' +,p_attribute_04=>'N' +,p_attribute_05=>'N' ); wwv_flow_api.create_page_item( p_id=>wwv_flow_api.id(11932857596191621) @@ -18050,7 +18076,7 @@ wwv_flow_api.create_page_item( 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P4_TENANT_NAME', +' (tenant_name=:P4_TENANT_NAME or ''ALL''=:P4_TENANT_NAME)', ' and ref_type=''COST_SUBSCRIPTION_ID''', 'order by 1')) ,p_source_type=>'QUERY_COLON' @@ -18070,41 +18096,44 @@ wwv_flow_api.create_page_item( ,p_item_sequence=>70 ,p_item_plug_id=>wwv_flow_api.id(10816553122165737) ,p_prompt=>'Tag Key' -,p_display_as=>'NATIVE_SELECT_LIST' +,p_display_as=>'NATIVE_POPUP_LOV' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( 'select distinct tag_key o, tag_key r ', 'from ', ' oci_cost_tag_keys', 'where', -' tenant_name=:P4_TENANT_NAME', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'')', 'order by 1')) ,p_lov_display_null=>'YES' ,p_lov_null_text=>'All' ,p_lov_cascade_parent_items=>'P4_TENANT_NAME' ,p_ajax_optimize_refresh=>'Y' -,p_cHeight=>1 +,p_cSize=>30 ,p_begin_on_new_line=>'N' ,p_colspan=>2 ,p_field_template=>wwv_flow_api.id(9820028477688087) ,p_item_template_options=>'#DEFAULT#' ,p_lov_display_extra=>'YES' -,p_attribute_01=>'NONE' -,p_attribute_02=>'N' +,p_attribute_01=>'POPUP' +,p_attribute_02=>'FIRST_ROWSET' +,p_attribute_03=>'N' +,p_attribute_04=>'N' +,p_attribute_05=>'N' ); wwv_flow_api.create_page_item( p_id=>wwv_flow_api.id(11978704127439219) ,p_name=>'P4_TAG_SPECIAL_KEY_DISPLAY' -,p_item_sequence=>160 +,p_item_sequence=>170 ,p_item_plug_id=>wwv_flow_api.id(10816553122165737) ,p_use_cache_before_default=>'NO' ,p_prompt=>'Tag Special Key' ,p_format_mask=>'FML999G999G999G999G990D00' ,p_source=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o', +'select distinct ref_name o', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P4_TENANT_NAME', +' (tenant_name=:P4_TENANT_NAME or ''ALL''=:P4_TENANT_NAME)', ' and ref_type=''TAG_SPECIAL_KEY''', 'order by 1')) ,p_source_type=>'QUERY_COLON' @@ -18142,11 +18171,11 @@ wwv_flow_api.create_page_item( ,p_prompt=>'Tenant Id' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct ref_name o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P4_TENANT_NAME', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'')', ' and ref_type=''TENANT_ID''', 'order by 1')) ,p_lov_display_null=>'YES' @@ -18263,7 +18292,7 @@ wwv_flow_api.create_page_process( ' count(*) cnt', ' from oci_cost', ' where ', -' tenant_name=:P4_TENANT_NAME and', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'') and', ' (:P4_COMPARTMENT_NAME is null or prd_compartment_name = :P4_COMPARTMENT_NAME) and', ' (:P4_PRODUCT_SERVICE is null or prd_service = :P4_PRODUCT_SERVICE) and', ' (:P4_PRODUCT_REGION is null or prd_region = :P4_PRODUCT_REGION) and', @@ -18284,7 +18313,7 @@ wwv_flow_api.create_page_process( ' sum(num_rows) cnt', ' from oci_cost_stats', ' where ', -' tenant_name=:P4_TENANT_NAME and', +' (tenant_name=:P4_TENANT_NAME or :P4_TENANT_NAME = ''ALL'') and', ' USAGE_INTERVAL_START >= to_date(:P4_DATE_FROM,''DD-MON-YYYY HH24:MI'') and USAGE_INTERVAL_START < to_date(:P4_DATE_TO,''DD-MON-YYYY HH24:MI'') and', ' (:P4_COMPARTMENT_NAME is null and :P4_PRODUCT_SERVICE is null and :P4_PRODUCT_REGION is null and :P4_COMPARTMENT_TOP is null and ', ' :P4_TAG_KEY is null and :P4_TAG_DATA is null and :P4_COST_PRODUCT_SKU is null and :P4_TENANT_ID is null and :P4_TAG_SPECIAL is null)', @@ -18326,8 +18355,8 @@ wwv_flow_api.create_page( '#cost_report .t-fht-thead{ overflow: auto !important;}', '')) ,p_page_template_options=>'#DEFAULT#' -,p_last_updated_by=>'USAGE' -,p_last_upd_yyyymmddhh24miss=>'20211025150532' +,p_last_updated_by=>'ADIZOHAR' +,p_last_upd_yyyymmddhh24miss=>'20211211212358' ); wwv_flow_api.create_page_plug( p_id=>wwv_flow_api.id(22846551592241693) @@ -18413,7 +18442,7 @@ wwv_flow_api.create_report_region( 'FROM ', ' oci_cost ', 'WHERE ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' :P5_PERIOD=''Monthly'' and ', ' to_char(USAGE_INTERVAL_START,''YYYY'') = :P5_PERIOD_RANGE and', ' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', @@ -18760,7 +18789,7 @@ wwv_flow_api.create_report_region( 'FROM ', ' oci_cost ', 'WHERE ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' :P5_PERIOD=''Daily'' and ', ' to_char(USAGE_INTERVAL_START,''YYYY-MM'') = :P5_PERIOD_RANGE and', ' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', @@ -19415,7 +19444,7 @@ wwv_flow_api.create_report_region( 'from', ' oci_cost ', 'WHERE ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' :P5_PERIOD=''Weekly'' and ', ' to_char(USAGE_INTERVAL_START,''YYYY'') = :P5_PERIOD_RANGE and', ' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', @@ -20266,7 +20295,7 @@ wwv_flow_api.create_report_region( ' FROM', ' oci_cost ', ' WHERE ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' :P5_PERIOD=''Daily'' and ', ' to_char(USAGE_INTERVAL_START,''YYYY-MM'') = :P5_PERIOD_RANGE and', ' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', @@ -20848,7 +20877,7 @@ wwv_flow_api.create_jet_chart_series( ' sum(COST_MY_COST) as COST_USAGE', 'from oci_cost', 'where ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', ' (:P5_COMPARTMENT_TOP is null or prd_compartment_path like :P5_COMPARTMENT_TOP ||''%'') and', ' (:P5_PRODUCT_SERVICE is null or prd_service = :P5_PRODUCT_SERVICE) and', @@ -20881,7 +20910,7 @@ wwv_flow_api.create_jet_chart_series( ' sum(COST_MY_COST) as COST_USAGE', 'from oci_cost_stats', 'where ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' (:P5_PERIOD=''Hourly'' and to_char(USAGE_INTERVAL_START,''YYYY-MM-DD'') = :P5_PERIOD_RANGE or :P5_PERIOD=''Daily'' and to_char(USAGE_INTERVAL_START,''YYYY-MM'') = :P5_PERIOD_RANGE or :P5_PERIOD in (''Monthly'',''Weekly'') and to_char(USAGE_INTERVAL_START,''YY' ||'YY'') = :P5_PERIOD_RANGE) and', ' (:P5_TAG_SPECIAL is null and :P5_TENANT_ID is null and :P5_COMPARTMENT_NAME is null and :P5_PRODUCT_SERVICE is null and :P5_PRODUCT_REGION is null and :P5_COMPARTMENT_TOP is null and :P5_TAG_KEY is null and :P5_TAG_DATA is null and :P5_COST_PRODU' @@ -20905,9 +20934,7 @@ wwv_flow_api.create_jet_chart_series( ,p_assigned_to_y2=>'off' ,p_items_label_rendered=>true ,p_items_label_position=>'center' -,p_items_label_display_as=>'PERCENT' ,p_items_label_font_size=>'10' -,p_threshold_display=>'onIndicator' ); wwv_flow_api.create_jet_chart_axis( p_id=>wwv_flow_api.id(13977078966041447) @@ -21031,7 +21058,7 @@ wwv_flow_api.create_jet_chart_series( ' sum(COST_MY_COST) as COST_USAGE', 'from oci_cost', 'where ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', ' (:P5_COMPARTMENT_TOP is null or prd_compartment_path like :P5_COMPARTMENT_TOP ||''%'') and', ' (:P5_PRODUCT_SERVICE is null or prd_service = :P5_PRODUCT_SERVICE) and', @@ -21059,9 +21086,7 @@ wwv_flow_api.create_jet_chart_series( ,p_assigned_to_y2=>'off' ,p_items_label_rendered=>true ,p_items_label_position=>'center' -,p_items_label_display_as=>'PERCENT' ,p_items_label_font_size=>'10' -,p_threshold_display=>'onIndicator' ); wwv_flow_api.create_jet_chart_axis( p_id=>wwv_flow_api.id(14186828501270009) @@ -21182,7 +21207,7 @@ wwv_flow_api.create_jet_chart_series( ' sum(COST_MY_COST) as COST_USAGE', 'from oci_cost', 'where ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', ' (:P5_COMPARTMENT_TOP is null or prd_compartment_path like :P5_COMPARTMENT_TOP ||''%'') and', ' (:P5_PRODUCT_SERVICE is null or prd_service = :P5_PRODUCT_SERVICE) and', @@ -21210,9 +21235,7 @@ wwv_flow_api.create_jet_chart_series( ,p_assigned_to_y2=>'off' ,p_items_label_rendered=>true ,p_items_label_position=>'center' -,p_items_label_display_as=>'PERCENT' ,p_items_label_font_size=>'10' -,p_threshold_display=>'onIndicator' ); wwv_flow_api.create_jet_chart_axis( p_id=>wwv_flow_api.id(15051343629989905) @@ -21333,7 +21356,7 @@ wwv_flow_api.create_jet_chart_series( ' sum(COST_MY_COST) as COST_USAGE', 'from oci_cost', 'where ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', ' (:P5_COMPARTMENT_TOP is null or prd_compartment_path like :P5_COMPARTMENT_TOP ||''%'') and', ' (:P5_PRODUCT_SERVICE is null or prd_service = :P5_PRODUCT_SERVICE) and', @@ -21361,9 +21384,7 @@ wwv_flow_api.create_jet_chart_series( ,p_assigned_to_y2=>'off' ,p_items_label_rendered=>true ,p_items_label_position=>'center' -,p_items_label_display_as=>'PERCENT' ,p_items_label_font_size=>'10' -,p_threshold_display=>'onIndicator' ); wwv_flow_api.create_jet_chart_axis( p_id=>wwv_flow_api.id(15052096900989912) @@ -21484,7 +21505,7 @@ wwv_flow_api.create_jet_chart_series( ' sum(COST_MY_COST) as COST_USAGE', 'from oci_cost', 'where ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', ' (:P5_COMPARTMENT_TOP is null or prd_compartment_path like :P5_COMPARTMENT_TOP ||''%'') and', ' (:P5_PRODUCT_SERVICE is null or prd_service = :P5_PRODUCT_SERVICE) and', @@ -21512,9 +21533,7 @@ wwv_flow_api.create_jet_chart_series( ,p_assigned_to_y2=>'off' ,p_items_label_rendered=>true ,p_items_label_position=>'center' -,p_items_label_display_as=>'PERCENT' ,p_items_label_font_size=>'10' -,p_threshold_display=>'onIndicator' ); wwv_flow_api.create_jet_chart_axis( p_id=>wwv_flow_api.id(15052900863989921) @@ -21618,7 +21637,7 @@ wwv_flow_api.create_report_region( ' FROM', ' oci_cost ', ' WHERE ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' :P5_PERIOD=''Daily'' and ', ' to_char(USAGE_INTERVAL_START,''YYYY-MM'') = :P5_PERIOD_RANGE and', ' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', @@ -22202,7 +22221,7 @@ wwv_flow_api.create_report_region( 'from', ' oci_cost ', 'WHERE ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' :P5_PERIOD=''Weekly'' and ', ' to_char(USAGE_INTERVAL_START,''YYYY'') = :P5_PERIOD_RANGE and', ' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', @@ -23039,7 +23058,7 @@ wwv_flow_api.create_report_region( 'FROM ', ' oci_cost ', 'WHERE ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' :P5_PERIOD=''Monthly'' and ', ' to_char(USAGE_INTERVAL_START,''YYYY'') = :P5_PERIOD_RANGE and', ' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', @@ -23357,7 +23376,7 @@ wwv_flow_api.create_jet_chart_series( ' sum(COST_MY_COST) as COST_USAGE', 'from oci_cost', 'where ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', ' (:P5_COMPARTMENT_TOP is null or prd_compartment_path like :P5_COMPARTMENT_TOP ||''%'') and', ' (:P5_PRODUCT_SERVICE is null or prd_service = :P5_PRODUCT_SERVICE) and', @@ -23385,9 +23404,7 @@ wwv_flow_api.create_jet_chart_series( ,p_assigned_to_y2=>'off' ,p_items_label_rendered=>true ,p_items_label_position=>'center' -,p_items_label_display_as=>'PERCENT' ,p_items_label_font_size=>'10' -,p_threshold_display=>'onIndicator' ); wwv_flow_api.create_jet_chart_axis( p_id=>wwv_flow_api.id(16360289843490327) @@ -23491,7 +23508,7 @@ wwv_flow_api.create_report_region( 'FROM ', ' oci_cost ', 'WHERE ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' :P5_PERIOD=''Hourly'' and ', ' to_char(USAGE_INTERVAL_START,''YYYY-MM-DD'') = :P5_PERIOD_RANGE and', ' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', @@ -23958,7 +23975,7 @@ wwv_flow_api.create_report_region( ' FROM', ' oci_cost ', ' WHERE ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' :P5_PERIOD=''Hourly'' and ', ' to_char(USAGE_INTERVAL_START,''YYYY-MM-DD'') = :P5_PERIOD_RANGE and', ' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', @@ -24346,271 +24363,11 @@ wwv_flow_api.create_report_columns( ,p_derived_column=>'N' ,p_include_in_export=>'Y' ); -wwv_flow_api.create_page_plug( - p_id=>wwv_flow_api.id(23961814581267567) -,p_plug_name=>'Cost Over Time - &P5_PERIOD.' -,p_parent_plug_id=>wwv_flow_api.id(33638842014589649) -,p_region_template_options=>'#DEFAULT#:t-Region--accent15:t-Region--scrollBody' -,p_escape_on_http_output=>'Y' -,p_plug_template=>wwv_flow_api.id(9765042323688020) -,p_plug_display_sequence=>20 -,p_plug_display_point=>'BODY' -,p_plug_source_type=>'NATIVE_JET_CHART' -,p_plug_query_num_rows=>15 -,p_plug_query_options=>'DERIVED_REPORT_COLUMNS' -,p_plug_display_condition_type=>'VALUE_OF_ITEM_IN_CONDITION_IN_COLON_DELIMITED_LIST' -,p_plug_display_when_condition=>'P5_REPORT_SELECTOR' -,p_plug_display_when_cond2=>'Hourly Cost Over Time:Daily Cost Over Time:Weekly Cost Over Time:Monthly Cost Over Time' -); -wwv_flow_api.create_jet_chart( - p_id=>wwv_flow_api.id(12036462660075984) -,p_region_id=>wwv_flow_api.id(23961814581267567) -,p_chart_type=>'bar' -,p_height=>'500' -,p_animation_on_display=>'auto' -,p_animation_on_data_change=>'auto' -,p_orientation=>'vertical' -,p_data_cursor=>'auto' -,p_data_cursor_behavior=>'auto' -,p_hide_and_show_behavior=>'none' -,p_hover_behavior=>'none' -,p_stack=>'on' -,p_stack_label=>'off' -,p_connect_nulls=>'Y' -,p_value_position=>'auto' -,p_sorting=>'label-asc' -,p_fill_multi_series_gaps=>true -,p_zoom_and_scroll=>'off' -,p_tooltip_rendered=>'Y' -,p_show_series_name=>true -,p_show_group_name=>true -,p_show_value=>true -,p_show_label=>true -,p_show_row=>true -,p_show_start=>true -,p_show_end=>true -,p_show_progress=>true -,p_show_baseline=>true -,p_legend_rendered=>'on' -,p_legend_position=>'bottom' -,p_overview_rendered=>'off' -,p_horizontal_grid=>'auto' -,p_vertical_grid=>'auto' -,p_gauge_orientation=>'circular' -,p_gauge_plot_area=>'on' -,p_show_gauge_value=>true -); -wwv_flow_api.create_jet_chart_series( - p_id=>wwv_flow_api.id(12038129542075985) -,p_chart_id=>wwv_flow_api.id(12036462660075984) -,p_seq=>10 -,p_name=>'Usage' -,p_data_source_type=>'SQL' -,p_data_source=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select /*+ parallel(oci_cost,8) full(oci_cost) */ ', -' case ', -' when :P5_PERIOD=''Hourly'' then to_char(USAGE_INTERVAL_START,''YYYY-MM-DD HH24'') ', -' when :P5_PERIOD=''Daily'' then to_char(USAGE_INTERVAL_START,''YYYY-MM-DD'') ', -' when :P5_PERIOD=''Weekly'' then to_char(USAGE_INTERVAL_START,''YYYY-WW'') ', -' when :P5_PERIOD=''Monthly'' or :P5_PERIOD is null then to_char(USAGE_INTERVAL_START,''YYYY-MM-MON'')', -' end PERIOD,', -' sum(COST_MY_COST-nvl(COST_MY_COST_OVERAGE,0)) as COST_USAGE', -'from oci_cost', -'where ', -' tenant_name=:P5_TENANT_NAME and', -' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', -' (:P5_COMPARTMENT_TOP is null or prd_compartment_path like :P5_COMPARTMENT_TOP ||''%'') and', -' (:P5_PRODUCT_SERVICE is null or prd_service = :P5_PRODUCT_SERVICE) and', -' (:P5_PRODUCT_REGION is null or prd_region = :P5_PRODUCT_REGION) and', -' (:P5_COST_PRODUCT_SKU is null or COST_PRODUCT_SKU = :P5_COST_PRODUCT_SKU) and', -' (:P5_TENANT_ID is null or tenant_id = :P5_TENANT_ID) and', -' (:P5_TAG_KEY is null or tags_data like ''%#'' || :P5_TAG_KEY || ''=%'') and', -' (:P5_TAG_SPECIAL is null or :P5_TAG_SPECIAL = TAG_SPECIAL) and', -' (:P5_TAG_DATA is null or tags_data like ''%#'' || nvl(:P5_TAG_KEY,''%'') || ''=%'' || :P5_TAG_DATA || ''#'') and', -' (:P5_PERIOD=''Hourly'' and to_char(USAGE_INTERVAL_START,''YYYY-MM-DD'') = :P5_PERIOD_RANGE or :P5_PERIOD=''Daily'' and to_char(USAGE_INTERVAL_START,''YYYY-MM'') = :P5_PERIOD_RANGE or :P5_PERIOD in (''Monthly'',''Weekly'') and to_char(USAGE_INTERVAL_START,''YY' -||'YY'') = :P5_PERIOD_RANGE) and', -' not (:P5_TAG_SPECIAL is null and :P5_TENANT_ID is null and :P5_COMPARTMENT_NAME is null and :P5_PRODUCT_SERVICE is null and :P5_PRODUCT_REGION is null and :P5_COMPARTMENT_TOP is null and :P5_TAG_KEY is null and :P5_TAG_DATA is null and :P5_COST_P' -||'RODUCT_SKU is null) and', -' :P5_REPORT_SELECTOR in (''Hourly Cost Over Time'',''Daily Cost Over Time'',''Weekly Cost Over Time'',''Monthly Cost Over Time'') ', -' group by ', -' case ', -' when :P5_PERIOD=''Hourly'' then to_char(USAGE_INTERVAL_START,''YYYY-MM-DD HH24'') ', -' when :P5_PERIOD=''Daily'' then to_char(USAGE_INTERVAL_START,''YYYY-MM-DD'') ', -' when :P5_PERIOD=''Weekly'' then to_char(USAGE_INTERVAL_START,''YYYY-WW'') ', -' when :P5_PERIOD=''Monthly'' or :P5_PERIOD is null then to_char(USAGE_INTERVAL_START,''YYYY-MM-MON'')', -' end', -'union all', -'select ', -' case ', -' when :P5_PERIOD=''Hourly'' then to_char(USAGE_INTERVAL_START,''YYYY-MM-DD HH24'') ', -' when :P5_PERIOD=''Daily'' then to_char(USAGE_INTERVAL_START,''YYYY-MM-DD'') ', -' when :P5_PERIOD=''Weekly'' then to_char(USAGE_INTERVAL_START,''YYYY-WW'') ', -' when :P5_PERIOD=''Monthly'' or :P5_PERIOD is null then to_char(USAGE_INTERVAL_START,''YYYY-MM-MON'')', -' end PERIOD,', -' sum(COST_MY_COST-nvl(COST_MY_COST_OVERAGE,0)) as COST_USAGE', -'from oci_cost_stats', -'where ', -' tenant_name=:P5_TENANT_NAME and', -' (:P5_PERIOD=''Hourly'' and to_char(USAGE_INTERVAL_START,''YYYY-MM-DD'') = :P5_PERIOD_RANGE or :P5_PERIOD=''Daily'' and to_char(USAGE_INTERVAL_START,''YYYY-MM'') = :P5_PERIOD_RANGE or :P5_PERIOD in (''Monthly'',''Weekly'') and to_char(USAGE_INTERVAL_START,''YY' -||'YY'') = :P5_PERIOD_RANGE) and', -' (:P5_TAG_SPECIAL is null and :P5_TENANT_ID is null and :P5_COMPARTMENT_NAME is null and :P5_PRODUCT_SERVICE is null and :P5_PRODUCT_REGION is null and :P5_COMPARTMENT_TOP is null and :P5_TAG_KEY is null and :P5_TAG_DATA is null and :P5_COST_PRODU' -||'CT_SKU is null) and', -' :P5_REPORT_SELECTOR in (''Hourly Cost Over Time'',''Daily Cost Over Time'',''Weekly Cost Over Time'',''Monthly Cost Over Time'') ', -' group by ', -' case ', -' when :P5_PERIOD=''Hourly'' then to_char(USAGE_INTERVAL_START,''YYYY-MM-DD HH24'') ', -' when :P5_PERIOD=''Daily'' then to_char(USAGE_INTERVAL_START,''YYYY-MM-DD'') ', -' when :P5_PERIOD=''Weekly'' then to_char(USAGE_INTERVAL_START,''YYYY-WW'') ', -' when :P5_PERIOD=''Monthly'' or :P5_PERIOD is null then to_char(USAGE_INTERVAL_START,''YYYY-MM-MON'')', -' end', -'order by 1', -'', -'', -'', -'')) -,p_items_value_column_name=>'COST_USAGE' -,p_items_label_column_name=>'PERIOD' -,p_color=>'#34AADC' -,p_assigned_to_y2=>'off' -,p_items_label_rendered=>true -,p_items_label_position=>'center' -,p_items_label_display_as=>'PERCENT' -,p_items_label_font_size=>'10' -,p_threshold_display=>'onIndicator' -); -wwv_flow_api.create_jet_chart_series( - p_id=>wwv_flow_api.id(11933638002191629) -,p_chart_id=>wwv_flow_api.id(12036462660075984) -,p_seq=>20 -,p_name=>'Overage' -,p_data_source_type=>'SQL' -,p_data_source=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select /*+ parallel(oci_cost,8) full(oci_cost) */ ', -' case ', -' when :P5_PERIOD=''Hourly'' then to_char(USAGE_INTERVAL_START,''YYYY-MM-DD HH24'') ', -' when :P5_PERIOD=''Daily'' then to_char(USAGE_INTERVAL_START,''YYYY-MM-DD'') ', -' when :P5_PERIOD=''Weekly'' then to_char(USAGE_INTERVAL_START,''YYYY-WW'') ', -' when :P5_PERIOD=''Monthly'' or :P5_PERIOD is null then to_char(USAGE_INTERVAL_START,''YYYY-MM-MON'')', -' end PERIOD,', -' sum(nvl(COST_MY_COST_OVERAGE,0)) as COST_MY_COST_OVERAGE', -'from oci_cost', -'where ', -' tenant_name=:P5_TENANT_NAME and', -' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', -' (:P5_COMPARTMENT_TOP is null or prd_compartment_path like :P5_COMPARTMENT_TOP ||''%'') and', -' (:P5_PRODUCT_SERVICE is null or prd_service = :P5_PRODUCT_SERVICE) and', -' (:P5_PRODUCT_REGION is null or prd_region = :P5_PRODUCT_REGION) and', -' (:P5_COST_PRODUCT_SKU is null or COST_PRODUCT_SKU = :P5_COST_PRODUCT_SKU) and', -' (:P5_TAG_KEY is null or tags_data like ''%#'' || :P5_TAG_KEY || ''=%'') and', -' (:P5_TENANT_ID is null or tenant_id = :P5_TENANT_ID) and', -' (:P5_TAG_SPECIAL is null or :P5_TAG_SPECIAL = TAG_SPECIAL) and', -' (:P5_TAG_DATA is null or tags_data like ''%#'' || nvl(:P5_TAG_KEY,''%'') || ''=%'' || :P5_TAG_DATA || ''#'') and', -' (:P5_PERIOD=''Hourly'' and to_char(USAGE_INTERVAL_START,''YYYY-MM-DD'') = :P5_PERIOD_RANGE or :P5_PERIOD=''Daily'' and to_char(USAGE_INTERVAL_START,''YYYY-MM'') = :P5_PERIOD_RANGE or :P5_PERIOD in (''Monthly'',''Weekly'') and to_char(USAGE_INTERVAL_START,''YY' -||'YY'') = :P5_PERIOD_RANGE) and', -' not (:P5_TAG_SPECIAL is null and :P5_TENANT_ID is null and :P5_COMPARTMENT_NAME is null and :P5_PRODUCT_SERVICE is null and :P5_PRODUCT_REGION is null and :P5_COMPARTMENT_TOP is null and :P5_TAG_KEY is null and :P5_TAG_DATA is null and :P5_COST_P' -||'RODUCT_SKU is null) and', -' :P5_REPORT_SELECTOR in (''Hourly Cost Over Time'',''Daily Cost Over Time'',''Weekly Cost Over Time'',''Monthly Cost Over Time'') ', -' group by ', -' case ', -' when :P5_PERIOD=''Hourly'' then to_char(USAGE_INTERVAL_START,''YYYY-MM-DD HH24'') ', -' when :P5_PERIOD=''Daily'' then to_char(USAGE_INTERVAL_START,''YYYY-MM-DD'') ', -' when :P5_PERIOD=''Weekly'' then to_char(USAGE_INTERVAL_START,''YYYY-WW'') ', -' when :P5_PERIOD=''Monthly'' or :P5_PERIOD is null then to_char(USAGE_INTERVAL_START,''YYYY-MM-MON'')', -' end', -'union all', -'select ', -' case ', -' when :P5_PERIOD=''Hourly'' then to_char(USAGE_INTERVAL_START,''YYYY-MM-DD HH24'') ', -' when :P5_PERIOD=''Daily'' then to_char(USAGE_INTERVAL_START,''YYYY-MM-DD'') ', -' when :P5_PERIOD=''Weekly'' then to_char(USAGE_INTERVAL_START,''YYYY-WW'') ', -' when :P5_PERIOD=''Monthly'' or :P5_PERIOD is null then to_char(USAGE_INTERVAL_START,''YYYY-MM-MON'')', -' end PERIOD,', -' sum(nvl(COST_MY_COST_OVERAGE,0)) as COST_USAGE', -'from oci_cost_stats', -'where ', -' tenant_name=:P5_TENANT_NAME and', -' (:P5_PERIOD=''Hourly'' and to_char(USAGE_INTERVAL_START,''YYYY-MM-DD'') = :P5_PERIOD_RANGE or :P5_PERIOD=''Daily'' and to_char(USAGE_INTERVAL_START,''YYYY-MM'') = :P5_PERIOD_RANGE or :P5_PERIOD in (''Monthly'',''Weekly'') and to_char(USAGE_INTERVAL_START,''YY' -||'YY'') = :P5_PERIOD_RANGE) and', -' (:P5_TAG_SPECIAL is null and :P5_TENANT_ID is null and :P5_COMPARTMENT_NAME is null and :P5_PRODUCT_SERVICE is null and :P5_PRODUCT_REGION is null and :P5_COMPARTMENT_TOP is null and :P5_TAG_KEY is null and :P5_TAG_DATA is null and :P5_COST_PRODU' -||'CT_SKU is null) and', -' :P5_REPORT_SELECTOR in (''Hourly Cost Over Time'',''Daily Cost Over Time'',''Weekly Cost Over Time'',''Monthly Cost Over Time'') ', -' group by ', -' case ', -' when :P5_PERIOD=''Hourly'' then to_char(USAGE_INTERVAL_START,''YYYY-MM-DD HH24'') ', -' when :P5_PERIOD=''Daily'' then to_char(USAGE_INTERVAL_START,''YYYY-MM-DD'') ', -' when :P5_PERIOD=''Weekly'' then to_char(USAGE_INTERVAL_START,''YYYY-WW'') ', -' when :P5_PERIOD=''Monthly'' or :P5_PERIOD is null then to_char(USAGE_INTERVAL_START,''YYYY-MM-MON'')', -' end', -'order by 1', -'', -'', -'', -'')) -,p_items_value_column_name=>'COST_MY_COST_OVERAGE' -,p_items_label_column_name=>'PERIOD' -,p_color=>'#FFCC00' -,p_assigned_to_y2=>'off' -,p_items_label_rendered=>true -,p_items_label_position=>'center' -,p_items_label_display_as=>'PERCENT' -,p_items_label_font_size=>'10' -,p_threshold_display=>'onIndicator' -); -end; -/ -begin -wwv_flow_api.create_jet_chart_axis( - p_id=>wwv_flow_api.id(12037572792075985) -,p_chart_id=>wwv_flow_api.id(12036462660075984) -,p_axis=>'y' -,p_is_rendered=>'on' -,p_format_type=>'decimal' -,p_decimal_places=>1 -,p_format_scaling=>'auto' -,p_scaling=>'linear' -,p_baseline_scaling=>'zero' -,p_position=>'auto' -,p_major_tick_rendered=>'on' -,p_minor_tick_rendered=>'off' -,p_tick_label_rendered=>'on' -,p_zoom_order_seconds=>false -,p_zoom_order_minutes=>false -,p_zoom_order_hours=>false -,p_zoom_order_days=>false -,p_zoom_order_weeks=>false -,p_zoom_order_months=>false -,p_zoom_order_quarters=>false -,p_zoom_order_years=>false -); -wwv_flow_api.create_jet_chart_axis( - p_id=>wwv_flow_api.id(12036986078075984) -,p_chart_id=>wwv_flow_api.id(12036462660075984) -,p_axis=>'x' -,p_is_rendered=>'on' -,p_format_type=>'date-short' -,p_numeric_pattern=>'DD-MON-YYYY' -,p_format_scaling=>'auto' -,p_scaling=>'linear' -,p_baseline_scaling=>'zero' -,p_major_tick_rendered=>'on' -,p_minor_tick_rendered=>'off' -,p_tick_label_rendered=>'on' -,p_tick_label_rotation=>'auto' -,p_tick_label_position=>'outside' -,p_zoom_order_seconds=>false -,p_zoom_order_minutes=>false -,p_zoom_order_hours=>false -,p_zoom_order_days=>false -,p_zoom_order_weeks=>false -,p_zoom_order_months=>false -,p_zoom_order_quarters=>false -,p_zoom_order_years=>false -); wwv_flow_api.create_page_plug( p_id=>wwv_flow_api.id(41488126786200900) ,p_plug_name=>'Graph Report Selector' ,p_parent_plug_id=>wwv_flow_api.id(33638842014589649) -,p_region_template_options=>'#DEFAULT#:t-Region--noPadding:t-Region--removeHeader js-removeLandmark:t-Region--noUI:t-Region--hiddenOverflow:t-Form--noPadding:margin-top-none:margin-bottom-none:margin-left-none:margin-right-none' +,p_region_template_options=>'#DEFAULT#:t-Region--noPadding:t-Region--removeHeader js-removeLandmark:t-Region--noUI:t-Region--hiddenOverflow:t-Form--noPadding:margin-top-none:margin-bottom-md:margin-left-none:margin-right-none' ,p_plug_template=>wwv_flow_api.id(9765042323688020) ,p_plug_display_sequence=>10 ,p_plug_display_point=>'BODY' @@ -24653,30 +24410,33 @@ wwv_flow_api.create_page_button( wwv_flow_api.create_page_item( p_id=>wwv_flow_api.id(11790776892177240) ,p_name=>'P5_TAG_SPECIAL' -,p_item_sequence=>160 +,p_item_sequence=>150 ,p_item_plug_id=>wwv_flow_api.id(22846551592241693) ,p_prompt=>'Tag Special Data' -,p_display_as=>'NATIVE_SELECT_LIST' +,p_display_as=>'NATIVE_POPUP_LOV' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct ref_name o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P5_TENANT_NAME', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'')', ' and ref_type=''TAG_SPECIAL''', 'order by 1')) ,p_lov_display_null=>'YES' ,p_lov_null_text=>'All' ,p_lov_cascade_parent_items=>'P5_TENANT_NAME' ,p_ajax_optimize_refresh=>'Y' -,p_cHeight=>1 +,p_cSize=>30 ,p_begin_on_new_line=>'N' ,p_colspan=>2 ,p_field_template=>wwv_flow_api.id(9820028477688087) ,p_item_template_options=>'#DEFAULT#' ,p_lov_display_extra=>'YES' -,p_attribute_01=>'NONE' -,p_attribute_02=>'N' +,p_attribute_01=>'POPUP' +,p_attribute_02=>'FIRST_ROWSET' +,p_attribute_03=>'N' +,p_attribute_04=>'N' +,p_attribute_05=>'N' ); wwv_flow_api.create_page_item( p_id=>wwv_flow_api.id(11790835644177241) @@ -24752,7 +24512,7 @@ wwv_flow_api.create_page_item( ' from ', ' oci_cost_stats', ' where', -' tenant_name=:P5_TENANT_NAME and :P5_PERIOD is not null', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and :P5_PERIOD is not null', ' and (:P5_PERIOD <> ''Hourly'' or USAGE_INTERVAL_START>trunc(sysdate)-90 and USAGE_INTERVAL_START'SUBMIT' ,p_attribute_03=>'Y' ); +end; +/ +begin wwv_flow_api.create_page_item( p_id=>wwv_flow_api.id(11979657320439228) ,p_name=>'P5_TAG_SPECIAL_KEY' -,p_item_sequence=>150 +,p_item_sequence=>160 ,p_item_plug_id=>wwv_flow_api.id(22846551592241693) ,p_use_cache_before_default=>'NO' ,p_prompt=>'Tag Special Key' ,p_format_mask=>'FML999G999G999G999G990D00' ,p_source=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o', +'select distinct ref_name o', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P5_TENANT_NAME', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'')', ' and ref_type=''TAG_SPECIAL_KEY''', 'order by 1')) ,p_source_type=>'QUERY_COLON' @@ -24832,7 +24595,10 @@ wwv_flow_api.create_page_item( ,p_item_plug_id=>wwv_flow_api.id(22846551592241693) ,p_prompt=>'Tenant Name' ,p_display_as=>'NATIVE_SELECT_LIST' -,p_lov=>'select distinct tenant_name o, tenant_name r from oci_cost_stats order by 1' +,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( +'select ''All'' o, ''ALL'' r from dual', +'union all', +'select distinct tenant_name o, tenant_name r from OCI_COST_REFERENCE order by 1')) ,p_lov_display_null=>'YES' ,p_lov_null_text=>'Please Choose...' ,p_cHeight=>1 @@ -24852,11 +24618,11 @@ wwv_flow_api.create_page_item( ,p_prompt=>'Product Service' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct initcap(ref_name) o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P5_TENANT_NAME', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'')', ' and ref_type=''PRD_SERVICE''', 'order by 1')) ,p_lov_display_null=>'YES' @@ -24880,11 +24646,11 @@ wwv_flow_api.create_page_item( ,p_prompt=>'Top Level Compartment' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct ref_name o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P5_TENANT_NAME', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'')', ' and ref_type=''PRD_COMPARTMENT_PATH''', 'order by 1')) ,p_lov_display_null=>'YES' @@ -24908,11 +24674,11 @@ wwv_flow_api.create_page_item( ,p_prompt=>'Product Region' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct ref_name o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P5_TENANT_NAME', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'')', ' and ref_type=''PRD_REGION''', 'order by 1')) ,p_lov_display_null=>'YES' @@ -24936,13 +24702,14 @@ wwv_flow_api.create_page_item( ,p_prompt=>'Product SKU' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, substr(ref_name,1,6) r ', +'select distinct replace(replace(ref_name,substr(ref_name,1,6)||'' - '',''''),''Oracle Cloud Infrastructure'',''OCI'') o, substr(ref_name,1,6) r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P5_TENANT_NAME', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'')', ' and ref_type=''COST_PRODUCT_SKU''', -'order by 1')) +'order by 1', +'')) ,p_lov_display_null=>'YES' ,p_lov_null_text=>'All' ,p_lov_cascade_parent_items=>'P5_TENANT_NAME,P5_PERIOD_RANGE' @@ -24964,11 +24731,11 @@ wwv_flow_api.create_page_item( ,p_prompt=>'Compartment' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct ref_name o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P5_TENANT_NAME', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'')', ' and ref_type=''PRD_COMPARTMENT_NAME''', 'order by 1')) ,p_lov_display_null=>'YES' @@ -24990,26 +24757,29 @@ wwv_flow_api.create_page_item( ,p_item_sequence=>50 ,p_item_plug_id=>wwv_flow_api.id(22846551592241693) ,p_prompt=>'Tag Key' -,p_display_as=>'NATIVE_SELECT_LIST' +,p_display_as=>'NATIVE_POPUP_LOV' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( 'select distinct tag_key o, tag_key r ', 'from ', ' oci_cost_tag_keys', 'where', -' tenant_name=:P5_TENANT_NAME', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'')', 'order by 1')) ,p_lov_display_null=>'YES' ,p_lov_null_text=>'All' ,p_lov_cascade_parent_items=>'P5_TENANT_NAME' ,p_ajax_optimize_refresh=>'Y' -,p_cHeight=>1 +,p_cSize=>30 ,p_begin_on_new_line=>'N' ,p_colspan=>2 ,p_field_template=>wwv_flow_api.id(9820028477688087) ,p_item_template_options=>'#DEFAULT#' ,p_lov_display_extra=>'YES' -,p_attribute_01=>'NONE' -,p_attribute_02=>'N' +,p_attribute_01=>'POPUP' +,p_attribute_02=>'FIRST_ROWSET' +,p_attribute_03=>'N' +,p_attribute_04=>'N' +,p_attribute_05=>'N' ); wwv_flow_api.create_page_item( p_id=>wwv_flow_api.id(12053398346076066) @@ -25064,7 +24834,7 @@ wwv_flow_api.create_page_item( 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P5_TENANT_NAME', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'')', ' and ref_type=''COST_SUBSCRIPTION_ID''', 'order by 1')) ,p_source_type=>'QUERY_COLON' @@ -25086,11 +24856,11 @@ wwv_flow_api.create_page_item( ,p_prompt=>'Tenant Id' ,p_display_as=>'NATIVE_SELECT_LIST' ,p_lov=>wwv_flow_string.join(wwv_flow_t_varchar2( -'select ref_name o, ref_name r ', +'select distinct ref_name o, ref_name r ', 'from ', ' OCI_COST_REFERENCE ', 'where', -' tenant_name=:P5_TENANT_NAME', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'')', ' and ref_type=''TENANT_ID''', 'order by 1')) ,p_lov_display_null=>'YES' @@ -25117,8 +24887,6 @@ wwv_flow_api.create_page_item( '(', ' select ''Hourly Cost Over Time - Total'' report_name from dual where :P5_PERIOD=''Hourly''', ' union all', -' select ''Hourly Cost Over Time'' report_name from dual where :P5_PERIOD=''Hourly''', -' union all', ' select ''Hourly Cost By Service'' report_name from dual where :P5_PERIOD=''Hourly''', ' union all', ' select ''Hourly Cost By SKU'' report_name from dual where :P5_PERIOD=''Hourly''', @@ -25135,8 +24903,6 @@ wwv_flow_api.create_page_item( ' union all', ' select ''Daily Cost Over Time - Total'' report_name from dual where :P5_PERIOD=''Daily''', ' union all', -' select ''Daily Cost Over Time'' report_name from dual where :P5_PERIOD=''Daily''', -' union all', ' select ''Daily Cost By Service'' report_name from dual where :P5_PERIOD=''Daily''', ' union all', ' select ''Daily Cost By SKU'' report_name from dual where :P5_PERIOD=''Daily''', @@ -25155,8 +24921,6 @@ wwv_flow_api.create_page_item( ' union all', ' select ''Weekly Cost Over Time - Total'' report_name from dual where :P5_PERIOD=''Weekly''', ' union all', -' select ''Weekly Cost Over Time'' report_name from dual where :P5_PERIOD=''Weekly''', -' union all', ' select ''Weekly Cost By Service'' report_name from dual where :P5_PERIOD=''Weekly''', ' union all', ' select ''Weekly Cost By SKU'' report_name from dual where :P5_PERIOD=''Weekly''', @@ -25173,8 +24937,6 @@ wwv_flow_api.create_page_item( ' union all', ' select ''Monthly Cost Over Time - Total'' report_name from dual where :P5_PERIOD=''Monthly''', ' union all', -' select ''Monthly Cost Over Time'' report_name from dual where :P5_PERIOD=''Monthly''', -' union all', ' select ''Monthly Cost By Service'' report_name from dual where :P5_PERIOD=''Monthly''', ' union all', ' select ''Monthly Cost By SKU'' report_name from dual where :P5_PERIOD=''Monthly''', @@ -25195,6 +24957,7 @@ wwv_flow_api.create_page_item( ,p_lov_cascade_parent_items=>'P5_PERIOD' ,p_ajax_optimize_refresh=>'Y' ,p_cHeight=>1 +,p_tag_attributes=>'style="background-color: #F5FBB4; font-weight: bold; font-size: 13px;"' ,p_begin_on_new_line=>'N' ,p_colspan=>3 ,p_field_template=>wwv_flow_api.id(9820028477688087) @@ -25231,7 +24994,7 @@ wwv_flow_api.create_page_item( ' to_char(max(USAGE_INTERVAL_START),''DD-MON-YY HH24:MI'') dte', 'from oci_cost_stats', 'where ', -' tenant_name=:P5_TENANT_NAME')) +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'')')) ,p_source_type=>'QUERY' ,p_display_as=>'NATIVE_DISPLAY_ONLY' ,p_tag_attributes=>'style="background-color:#e8e8e8"' @@ -25257,7 +25020,7 @@ wwv_flow_api.create_page_item( ' count(distinct USAGE_INTERVAL_START) cnt', ' from oci_cost', ' where ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', ' (:P5_PRODUCT_SERVICE is null or prd_service = :P5_PRODUCT_SERVICE) and', ' (:P5_PRODUCT_REGION is null or prd_region = :P5_PRODUCT_REGION) and', @@ -25273,7 +25036,7 @@ wwv_flow_api.create_page_item( ' count(distinct USAGE_INTERVAL_START) cnt', ' from oci_cost_stats', ' where ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' (:P5_PERIOD=''Daily'' and to_char(USAGE_INTERVAL_START,''YYYY-MM'') = :P5_PERIOD_RANGE or :P5_PERIOD in (''Monthly'',''Weekly'') and to_char(USAGE_INTERVAL_START,''YYYY'') = :P5_PERIOD_RANGE) and', ' (:P5_TENANT_ID is null and :P5_COMPARTMENT_NAME is null and :P5_PRODUCT_SERVICE is null and :P5_PRODUCT_REGION is null and :P5_COMPARTMENT_TOP is null and :P5_TAG_KEY is null and :P5_TAG_DATA is null and :P5_COST_PRODUCT_SKU is null)', ')')) @@ -25329,7 +25092,7 @@ wwv_flow_api.create_page_computation( 'from ', ' oci_cost_stats', 'where', -'tenant_name=:P5_TENANT_NAME ')) +'(tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') ')) ,p_compute_when=>'P5_PERIOD_RANGE' ,p_compute_when_type=>'ITEM_IS_NULL' ); @@ -25370,7 +25133,7 @@ wwv_flow_api.create_page_process( ' count(*) CNT', ' from oci_cost', ' where ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' (:P5_COMPARTMENT_NAME is null or prd_compartment_name = :P5_COMPARTMENT_NAME) and', ' (:P5_PRODUCT_SERVICE is null or prd_service = :P5_PRODUCT_SERVICE) and', ' (:P5_PRODUCT_REGION is null or prd_region = :P5_PRODUCT_REGION) and', @@ -25392,7 +25155,7 @@ wwv_flow_api.create_page_process( ' sum(num_rows) cnt', ' from oci_cost_stats', ' where ', -' tenant_name=:P5_TENANT_NAME and', +' (tenant_name=:P5_TENANT_NAME or :P5_TENANT_NAME = ''ALL'') and', ' (:P5_PERIOD=''Hourly'' and to_char(USAGE_INTERVAL_START,''YYYY-MM-DD'') = :P5_PERIOD_RANGE or :P5_PERIOD=''Daily'' and to_char(USAGE_INTERVAL_START,''YYYY-MM'') = :P5_PERIOD_RANGE or :P5_PERIOD in (''Monthly'',''Weekly'') and to_char(USAGE_INTERVAL_START' ||',''YYYY'') = :P5_PERIOD_RANGE) and', ' (:P5_COMPARTMENT_NAME is null and :P5_PRODUCT_SERVICE is null and :P5_PRODUCT_REGION is null and :P5_COMPARTMENT_TOP is null and :P5_TAG_KEY is null and :P5_TAG_DATA is null and :P5_COST_PRODUCT_SKU is null and :P5_TENANT_ID is null and :P5_T' diff --git a/examples/usage_reports_to_adw/usage2adw.py b/examples/usage_reports_to_adw/usage2adw.py index f2bc4fbe5f..daaa81ef15 100755 --- a/examples/usage_reports_to_adw/usage2adw.py +++ b/examples/usage_reports_to_adw/usage2adw.py @@ -3,7 +3,7 @@ # Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # -# DISCLAIMER – This is not an official Oracle application, It does not supported by Oracle Support, +# DISCLAIMER This is not an official Oracle application, It does not supported by Oracle Support, # It should NOT be used for utilization calculation purposes, and rather OCI's official # # usage2adw.py @@ -73,7 +73,7 @@ import time -version = "21.11.01" +version = "21.12.12" usage_report_namespace = "bling" work_report_dir = os.curdir + "/work_report_dir" diff --git a/examples/user_crud.py b/examples/user_crud.py index 4cc94e939d..8998e2597d 100644 --- a/examples/user_crud.py +++ b/examples/user_crud.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci diff --git a/examples/volume_attachment_example.py b/examples/volume_attachment_example.py index e272c87a7d..ddf3b16aed 100644 --- a/examples/volume_attachment_example.py +++ b/examples/volume_attachment_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This example demonstrates how to attach volumes to an instance using different volume attachment diff --git a/examples/volume_attachment_pv_encryption_intransit_example.py b/examples/volume_attachment_pv_encryption_intransit_example.py index 611b2bff8f..9708e040a9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 53985f3169..5e49e4b301 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 diff --git a/examples/wait_for_resource_in_state.py b/examples/wait_for_resource_in_state.py index 162bd161d8..a109cc4b42 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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) diff --git a/examples/work_requests.py b/examples/work_requests.py index c47d682b29..b61aa67541 100644 --- a/examples/work_requests.py +++ b/examples/work_requests.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This script provides a basic example of how to use work requests using Python SDK. diff --git a/scripts/wercker_validate.py b/scripts/wercker_validate.py index a319036c12..d127414b6a 100644 --- a/scripts/wercker_validate.py +++ b/scripts/wercker_validate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # A very basic script that can be run at the end of a wercker build to ensure that the SDK can be imported diff --git a/setup.py b/setup.py index a6d7482a0a..d056fa7bb3 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import io diff --git a/src/oci/__init__.py b/src/oci/__init__.py index 4868ab7d3e..a62cba77de 100644 --- a/src/oci/__init__.py +++ b/src/oci/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from . import auth, config, constants, decorators, exceptions, regions, pagination, retry, fips diff --git a/src/oci/_vendor/__init__.py b/src/oci/_vendor/__init__.py index d89b173fa1..f95071234c 100644 --- a/src/oci/_vendor/__init__.py +++ b/src/oci/_vendor/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from . import chardet # noqa: F401 diff --git a/src/oci/_vendor/chardet/__init__.py b/src/oci/_vendor/chardet/__init__.py index 3f3e4dda0f..dd78c9466b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/big5freq.py b/src/oci/_vendor/chardet/big5freq.py index f3716d2307..ace8bf4075 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/big5prober.py b/src/oci/_vendor/chardet/big5prober.py index 7ab79f6e81..12cedc8e09 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/chardistribution.py b/src/oci/_vendor/chardet/chardistribution.py index 0a3bc3689f..67848354a7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/charsetgroupprober.py b/src/oci/_vendor/chardet/charsetgroupprober.py index d86cb77e32..6926fdf51b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/charsetprober.py b/src/oci/_vendor/chardet/charsetprober.py index ff062ef548..6e2934f1ed 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/cli/__init__.py b/src/oci/_vendor/chardet/cli/__init__.py index 87feee2abf..a65b41a674 100644 --- a/src/oci/_vendor/chardet/cli/__init__.py +++ b/src/oci/_vendor/chardet/cli/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/cli/chardetect.py b/src/oci/_vendor/chardet/cli/chardetect.py index 11839edd39..0488104dfe 100644 --- a/src/oci/_vendor/chardet/cli/chardetect.py +++ b/src/oci/_vendor/chardet/cli/chardetect.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/codingstatemachine.py b/src/oci/_vendor/chardet/codingstatemachine.py index 0ce85d1cb6..bab23b175b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/compat.py b/src/oci/_vendor/chardet/compat.py index a32e7cf54b..15336889e3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/cp949prober.py b/src/oci/_vendor/chardet/cp949prober.py index 593c924e01..a0058db91d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/enums.py b/src/oci/_vendor/chardet/enums.py index 0eb7c2be7c..deb1d779b3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 fc2d725403..5ded65d151 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/escsm.py b/src/oci/_vendor/chardet/escsm.py index e167adb4ed..eccde1e92b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/eucjpprober.py b/src/oci/_vendor/chardet/eucjpprober.py index f225033b0c..04e81fe708 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/euckrfreq.py b/src/oci/_vendor/chardet/euckrfreq.py index a7f3d6fc1a..8ffbde961f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/euckrprober.py b/src/oci/_vendor/chardet/euckrprober.py index 4a75d60dfb..3dab9ec064 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/euctwfreq.py b/src/oci/_vendor/chardet/euctwfreq.py index 5cdd07c14d..72ec974155 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/euctwprober.py b/src/oci/_vendor/chardet/euctwprober.py index f28a7c34b4..b767e54554 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/gb2312freq.py b/src/oci/_vendor/chardet/gb2312freq.py index a780fabf78..56e431004f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/gb2312prober.py b/src/oci/_vendor/chardet/gb2312prober.py index cffa7a3318..078ce43ad4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/hebrewprober.py b/src/oci/_vendor/chardet/hebrewprober.py index e293b2a13d..140e818916 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/jisfreq.py b/src/oci/_vendor/chardet/jisfreq.py index 6a79e537fe..769d9e5c15 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/jpcntx.py b/src/oci/_vendor/chardet/jpcntx.py index 5782844dd1..9595777230 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 0a053a2faf..49085f4e72 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/langgreekmodel.py b/src/oci/_vendor/chardet/langgreekmodel.py index 68a88725cb..58a51a9722 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/langhebrewmodel.py b/src/oci/_vendor/chardet/langhebrewmodel.py index 45398653bb..d0042270cd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/langhungarianmodel.py b/src/oci/_vendor/chardet/langhungarianmodel.py index 081cec0418..7646fef08a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/langrussianmodel.py b/src/oci/_vendor/chardet/langrussianmodel.py index b94e8a78a2..3942c7f6c0 100644 --- a/src/oci/_vendor/chardet/langrussianmodel.py +++ b/src/oci/_vendor/chardet/langrussianmodel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/langthaimodel.py b/src/oci/_vendor/chardet/langthaimodel.py index 15868eecfa..03b57f4086 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/langturkishmodel.py b/src/oci/_vendor/chardet/langturkishmodel.py index 7d24a0e01e..a7aab3add3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/latin1prober.py b/src/oci/_vendor/chardet/latin1prober.py index feba385798..04d836a679 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/mbcharsetprober.py b/src/oci/_vendor/chardet/mbcharsetprober.py index ad01aa5644..45ffb378a4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/mbcsgroupprober.py b/src/oci/_vendor/chardet/mbcsgroupprober.py index ad80ecca2d..91d892ef69 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/mbcssm.py b/src/oci/_vendor/chardet/mbcssm.py index e518b2b61a..d0fda57ee3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/metadata/__init__.py b/src/oci/_vendor/chardet/metadata/__init__.py index 87feee2abf..a65b41a674 100644 --- a/src/oci/_vendor/chardet/metadata/__init__.py +++ b/src/oci/_vendor/chardet/metadata/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/metadata/languages.py b/src/oci/_vendor/chardet/metadata/languages.py index 4184a3b2d9..acd940c216 100644 --- a/src/oci/_vendor/chardet/metadata/languages.py +++ b/src/oci/_vendor/chardet/metadata/languages.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/sbcharsetprober.py b/src/oci/_vendor/chardet/sbcharsetprober.py index 7d92921f75..3182e80fc3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/sbcsgroupprober.py b/src/oci/_vendor/chardet/sbcsgroupprober.py index 80bf883889..c155bb831b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/sjisprober.py b/src/oci/_vendor/chardet/sjisprober.py index aae6738dd0..a954fb9ac1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/universaldetector.py b/src/oci/_vendor/chardet/universaldetector.py index ea9b80a817..fe3983cc1a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 2d7094a58e..692c9a1d8e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2018 Character Encoding Detector contributors. https://github.com/chardet diff --git a/src/oci/_vendor/chardet/version.py b/src/oci/_vendor/chardet/version.py index 3242d51d2a..d646522a3d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 fcf89cf981..58957568f9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 fd534cbf5a..1263f06f1a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 87cfdde9e6..d66767cd85 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 df9ec87491..bf2a0b5e62 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 0023509914..323c46b48f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 0c91b4ac0f..aab0165e80 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright (c) 2013-2018, Kim Davies. All rights reserved. diff --git a/src/oci/_vendor/idna/codec.py b/src/oci/_vendor/idna/codec.py index 7bc5978397..23e4276294 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright (c) 2013-2018, Kim Davies. All rights reserved. diff --git a/src/oci/_vendor/idna/compat.py b/src/oci/_vendor/idna/compat.py index 265d294da3..2c48261e80 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright (c) 2013-2018, Kim Davies. All rights reserved. diff --git a/src/oci/_vendor/idna/core.py b/src/oci/_vendor/idna/core.py index 7b43a78d1b..ffaef0ea5f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright (c) 2013-2018, Kim Davies. All rights reserved. diff --git a/src/oci/_vendor/idna/idnadata.py b/src/oci/_vendor/idna/idnadata.py index 34ccdbf669..cea8e87a77 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright (c) 2013-2018, Kim Davies. All rights reserved. diff --git a/src/oci/_vendor/idna/intranges.py b/src/oci/_vendor/idna/intranges.py index f452b3d40d..97b91c7c79 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 a6ad955b52..49cd3ecfbb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright (c) 2013-2018, Kim Davies. All rights reserved. diff --git a/src/oci/_vendor/idna/uts46data.py b/src/oci/_vendor/idna/uts46data.py index 7f5c34f972..dfa9b67bc8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright (c) 2013-2018, Kim Davies. All rights reserved. diff --git a/src/oci/_vendor/jwt/__init__.py b/src/oci/_vendor/jwt/__init__.py index 517b8ded69..71bdd10190 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2015 José Padilla diff --git a/src/oci/_vendor/jwt/__main__.py b/src/oci/_vendor/jwt/__main__.py index af7d681081..517870ec90 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2015 José Padilla diff --git a/src/oci/_vendor/jwt/algorithms.py b/src/oci/_vendor/jwt/algorithms.py index 5b2e1429c8..6b3be3b0c7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2015 José Padilla diff --git a/src/oci/_vendor/jwt/api_jws.py b/src/oci/_vendor/jwt/api_jws.py index 0a9cb9f58e..b786681a1a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2015 José Padilla diff --git a/src/oci/_vendor/jwt/api_jwt.py b/src/oci/_vendor/jwt/api_jwt.py index 2b68eaa4d6..3cdc567f63 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2015 José Padilla diff --git a/src/oci/_vendor/jwt/compat.py b/src/oci/_vendor/jwt/compat.py index d41e037321..4134260552 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2015 José Padilla diff --git a/src/oci/_vendor/jwt/exceptions.py b/src/oci/_vendor/jwt/exceptions.py index bb09a63831..3136f7443b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2015 José Padilla diff --git a/src/oci/_vendor/jwt/help.py b/src/oci/_vendor/jwt/help.py index bca938d83d..a66b6f9a6c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2015 José Padilla diff --git a/src/oci/_vendor/jwt/utils.py b/src/oci/_vendor/jwt/utils.py index 52b66c6b45..078e500a1a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Original Work: Copyright (c) 2015 José Padilla diff --git a/src/oci/_vendor/requests/__init__.py b/src/oci/_vendor/requests/__init__.py index 8053e18793..9cbac60cac 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2018 Kenneth Reitz diff --git a/src/oci/_vendor/requests/__version__.py b/src/oci/_vendor/requests/__version__.py index 9b0d97f59e..538df308b7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2018 Kenneth Reitz diff --git a/src/oci/_vendor/requests/_internal_utils.py b/src/oci/_vendor/requests/_internal_utils.py index 051fa2cc63..2eb592e49a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2018 Kenneth Reitz diff --git a/src/oci/_vendor/requests/adapters.py b/src/oci/_vendor/requests/adapters.py index 8a55b7959e..509d52a564 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2018 Kenneth Reitz diff --git a/src/oci/_vendor/requests/api.py b/src/oci/_vendor/requests/api.py index fcefb8e725..6dc4ff4679 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2018 Kenneth Reitz diff --git a/src/oci/_vendor/requests/auth.py b/src/oci/_vendor/requests/auth.py index e60e3027c6..aecd4d34f0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2018 Kenneth Reitz diff --git a/src/oci/_vendor/requests/certs.py b/src/oci/_vendor/requests/certs.py index 9c90fc5a7f..1bc69130f4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2018 Kenneth Reitz diff --git a/src/oci/_vendor/requests/compat.py b/src/oci/_vendor/requests/compat.py index 5bcec9258f..17b9a64c11 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2018 Kenneth Reitz diff --git a/src/oci/_vendor/requests/cookies.py b/src/oci/_vendor/requests/cookies.py index 38d7d57d61..03701faba0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2018 Kenneth Reitz diff --git a/src/oci/_vendor/requests/exceptions.py b/src/oci/_vendor/requests/exceptions.py index 0a57689518..02100654f4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2018 Kenneth Reitz diff --git a/src/oci/_vendor/requests/help.py b/src/oci/_vendor/requests/help.py index fd8019355b..6afaff1021 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2018 Kenneth Reitz diff --git a/src/oci/_vendor/requests/hooks.py b/src/oci/_vendor/requests/hooks.py index cc52dc877d..df68965945 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2018 Kenneth Reitz diff --git a/src/oci/_vendor/requests/models.py b/src/oci/_vendor/requests/models.py index 1bcc03f83a..791a5c63de 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2018 Kenneth Reitz diff --git a/src/oci/_vendor/requests/packages.py b/src/oci/_vendor/requests/packages.py index 56d5043e66..472bbb2b43 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2018 Kenneth Reitz diff --git a/src/oci/_vendor/requests/sessions.py b/src/oci/_vendor/requests/sessions.py index f08b2e6c83..d3496afdaa 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2018 Kenneth Reitz diff --git a/src/oci/_vendor/requests/status_codes.py b/src/oci/_vendor/requests/status_codes.py index 4ee36a0e0a..5a01a716c8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2018 Kenneth Reitz diff --git a/src/oci/_vendor/requests/structures.py b/src/oci/_vendor/requests/structures.py index 6163f03d07..c3ed851f9b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2018 Kenneth Reitz diff --git a/src/oci/_vendor/requests/utils.py b/src/oci/_vendor/requests/utils.py index b786677abb..a3c01b3e42 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2018 Kenneth Reitz diff --git a/src/oci/_vendor/urllib3/__init__.py b/src/oci/_vendor/urllib3/__init__.py index eaa53d8653..67007bfd8a 100644 --- a/src/oci/_vendor/urllib3/__init__.py +++ b/src/oci/_vendor/urllib3/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/_collections.py b/src/oci/_vendor/urllib3/_collections.py index bbdaf112c4..a9a683c70d 100644 --- a/src/oci/_vendor/urllib3/_collections.py +++ b/src/oci/_vendor/urllib3/_collections.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/_version.py b/src/oci/_vendor/urllib3/_version.py index ef75bba43b..a13c0bb319 100644 --- a/src/oci/_vendor/urllib3/_version.py +++ b/src/oci/_vendor/urllib3/_version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/connection.py b/src/oci/_vendor/urllib3/connection.py index 1a4adac481..f1380858de 100644 --- a/src/oci/_vendor/urllib3/connection.py +++ b/src/oci/_vendor/urllib3/connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/connectionpool.py b/src/oci/_vendor/urllib3/connectionpool.py index 67d52f7080..b86849b125 100644 --- a/src/oci/_vendor/urllib3/connectionpool.py +++ b/src/oci/_vendor/urllib3/connectionpool.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/contrib/__init__.py b/src/oci/_vendor/urllib3/contrib/__init__.py index 6fc89dbd54..a720550f68 100644 --- a/src/oci/_vendor/urllib3/contrib/__init__.py +++ b/src/oci/_vendor/urllib3/contrib/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/contrib/_appengine_environ.py b/src/oci/_vendor/urllib3/contrib/_appengine_environ.py index fc690d3eb8..85229f10ad 100644 --- a/src/oci/_vendor/urllib3/contrib/_appengine_environ.py +++ b/src/oci/_vendor/urllib3/contrib/_appengine_environ.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/contrib/_securetransport/__init__.py b/src/oci/_vendor/urllib3/contrib/_securetransport/__init__.py index 6fc89dbd54..a720550f68 100644 --- a/src/oci/_vendor/urllib3/contrib/_securetransport/__init__.py +++ b/src/oci/_vendor/urllib3/contrib/_securetransport/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/contrib/_securetransport/bindings.py b/src/oci/_vendor/urllib3/contrib/_securetransport/bindings.py index 9d0e93b6aa..e4f004123f 100644 --- a/src/oci/_vendor/urllib3/contrib/_securetransport/bindings.py +++ b/src/oci/_vendor/urllib3/contrib/_securetransport/bindings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/contrib/_securetransport/low_level.py b/src/oci/_vendor/urllib3/contrib/_securetransport/low_level.py index b3f7c8a0bf..b913652590 100644 --- a/src/oci/_vendor/urllib3/contrib/_securetransport/low_level.py +++ b/src/oci/_vendor/urllib3/contrib/_securetransport/low_level.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/contrib/appengine.py b/src/oci/_vendor/urllib3/contrib/appengine.py index cf5931ce8e..763eada9ba 100644 --- a/src/oci/_vendor/urllib3/contrib/appengine.py +++ b/src/oci/_vendor/urllib3/contrib/appengine.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/contrib/ntlmpool.py b/src/oci/_vendor/urllib3/contrib/ntlmpool.py index 81b18d8fd2..afedd77010 100644 --- a/src/oci/_vendor/urllib3/contrib/ntlmpool.py +++ b/src/oci/_vendor/urllib3/contrib/ntlmpool.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/contrib/pyopenssl.py b/src/oci/_vendor/urllib3/contrib/pyopenssl.py index 185b17ceb1..472bcb61b0 100644 --- a/src/oci/_vendor/urllib3/contrib/pyopenssl.py +++ b/src/oci/_vendor/urllib3/contrib/pyopenssl.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/contrib/securetransport.py b/src/oci/_vendor/urllib3/contrib/securetransport.py index c7d8ea4ad0..8ac4788da4 100644 --- a/src/oci/_vendor/urllib3/contrib/securetransport.py +++ b/src/oci/_vendor/urllib3/contrib/securetransport.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/contrib/socks.py b/src/oci/_vendor/urllib3/contrib/socks.py index 920b298285..2102ac4242 100644 --- a/src/oci/_vendor/urllib3/contrib/socks.py +++ b/src/oci/_vendor/urllib3/contrib/socks.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/exceptions.py b/src/oci/_vendor/urllib3/exceptions.py index cb5f2d5ad1..6e103485d1 100644 --- a/src/oci/_vendor/urllib3/exceptions.py +++ b/src/oci/_vendor/urllib3/exceptions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/fields.py b/src/oci/_vendor/urllib3/fields.py index f3553c6bb3..e13eb99ca6 100644 --- a/src/oci/_vendor/urllib3/fields.py +++ b/src/oci/_vendor/urllib3/fields.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/filepost.py b/src/oci/_vendor/urllib3/filepost.py index dfdf56e0a7..a827fecaed 100644 --- a/src/oci/_vendor/urllib3/filepost.py +++ b/src/oci/_vendor/urllib3/filepost.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/packages/__init__.py b/src/oci/_vendor/urllib3/packages/__init__.py index b4262bc172..8600dba86c 100644 --- a/src/oci/_vendor/urllib3/packages/__init__.py +++ b/src/oci/_vendor/urllib3/packages/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/packages/backports/__init__.py b/src/oci/_vendor/urllib3/packages/backports/__init__.py index 6fc89dbd54..a720550f68 100644 --- a/src/oci/_vendor/urllib3/packages/backports/__init__.py +++ b/src/oci/_vendor/urllib3/packages/backports/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/packages/backports/makefile.py b/src/oci/_vendor/urllib3/packages/backports/makefile.py index fcd7980888..d78ad681b9 100644 --- a/src/oci/_vendor/urllib3/packages/backports/makefile.py +++ b/src/oci/_vendor/urllib3/packages/backports/makefile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/packages/six.py b/src/oci/_vendor/urllib3/packages/six.py index de17ea59b7..ba382bdbb1 100644 --- a/src/oci/_vendor/urllib3/packages/six.py +++ b/src/oci/_vendor/urllib3/packages/six.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/packages/ssl_match_hostname/__init__.py b/src/oci/_vendor/urllib3/packages/ssl_match_hostname/__init__.py index 01b54ce8ba..caf93b995b 100644 --- a/src/oci/_vendor/urllib3/packages/ssl_match_hostname/__init__.py +++ b/src/oci/_vendor/urllib3/packages/ssl_match_hostname/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py b/src/oci/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py index b09348fe91..c7f89550e9 100644 --- a/src/oci/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py +++ b/src/oci/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/poolmanager.py b/src/oci/_vendor/urllib3/poolmanager.py index e1f86e5354..b7c9196453 100644 --- a/src/oci/_vendor/urllib3/poolmanager.py +++ b/src/oci/_vendor/urllib3/poolmanager.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/request.py b/src/oci/_vendor/urllib3/request.py index b7de9d6be8..0d013d1e6b 100644 --- a/src/oci/_vendor/urllib3/request.py +++ b/src/oci/_vendor/urllib3/request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/response.py b/src/oci/_vendor/urllib3/response.py index de85bacb4a..92290fc58c 100644 --- a/src/oci/_vendor/urllib3/response.py +++ b/src/oci/_vendor/urllib3/response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/__init__.py b/src/oci/_vendor/urllib3/util/__init__.py index 8de8548b26..d8bd7f0162 100644 --- a/src/oci/_vendor/urllib3/util/__init__.py +++ b/src/oci/_vendor/urllib3/util/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/connection.py b/src/oci/_vendor/urllib3/util/connection.py index 79a20327e0..294623a001 100644 --- a/src/oci/_vendor/urllib3/util/connection.py +++ b/src/oci/_vendor/urllib3/util/connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/proxy.py b/src/oci/_vendor/urllib3/util/proxy.py index 7225308660..bd83a4863a 100644 --- a/src/oci/_vendor/urllib3/util/proxy.py +++ b/src/oci/_vendor/urllib3/util/proxy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/queue.py b/src/oci/_vendor/urllib3/util/queue.py index 9adb76a080..9489c6a13d 100644 --- a/src/oci/_vendor/urllib3/util/queue.py +++ b/src/oci/_vendor/urllib3/util/queue.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/request.py b/src/oci/_vendor/urllib3/util/request.py index 35a7f75ed3..36aaacfe38 100644 --- a/src/oci/_vendor/urllib3/util/request.py +++ b/src/oci/_vendor/urllib3/util/request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/response.py b/src/oci/_vendor/urllib3/util/response.py index be603de9d5..938864d55a 100644 --- a/src/oci/_vendor/urllib3/util/response.py +++ b/src/oci/_vendor/urllib3/util/response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/retry.py b/src/oci/_vendor/urllib3/util/retry.py index 3de1dacaaa..5d60e982d5 100644 --- a/src/oci/_vendor/urllib3/util/retry.py +++ b/src/oci/_vendor/urllib3/util/retry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/ssl_.py b/src/oci/_vendor/urllib3/util/ssl_.py index 352da30e28..caa57b5d59 100644 --- a/src/oci/_vendor/urllib3/util/ssl_.py +++ b/src/oci/_vendor/urllib3/util/ssl_.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/ssltransport.py b/src/oci/_vendor/urllib3/util/ssltransport.py index 2a02b18e4a..5ef54c8cde 100644 --- a/src/oci/_vendor/urllib3/util/ssltransport.py +++ b/src/oci/_vendor/urllib3/util/ssltransport.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/timeout.py b/src/oci/_vendor/urllib3/util/timeout.py index 03c62b2f24..6b137bca13 100644 --- a/src/oci/_vendor/urllib3/util/timeout.py +++ b/src/oci/_vendor/urllib3/util/timeout.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/url.py b/src/oci/_vendor/urllib3/util/url.py index 5b78d79f52..0b114ab206 100644 --- a/src/oci/_vendor/urllib3/util/url.py +++ b/src/oci/_vendor/urllib3/util/url.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/wait.py b/src/oci/_vendor/urllib3/util/wait.py index 4222f856c8..92a5889784 100644 --- a/src/oci/_vendor/urllib3/util/wait.py +++ b/src/oci/_vendor/urllib3/util/wait.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Copyright 2008-2016 Andrey Petrov and contributors diff --git a/src/oci/ai_anomaly_detection/__init__.py b/src/oci/ai_anomaly_detection/__init__.py index 53c04c9dac..dcf2dabef6 100644 --- a/src/oci/ai_anomaly_detection/__init__.py +++ b/src/oci/ai_anomaly_detection/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/ai_anomaly_detection/anomaly_detection_client.py b/src/oci/ai_anomaly_detection/anomaly_detection_client.py index 9578733d29..424e79ac87 100644 --- a/src/oci/ai_anomaly_detection/anomaly_detection_client.py +++ b/src/oci/ai_anomaly_detection/anomaly_detection_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -66,6 +66,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -96,6 +100,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("anomaly_detection", config, signer, ai_anomaly_detection_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -126,6 +132,10 @@ def cancel_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -137,6 +147,7 @@ def cancel_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -222,6 +233,10 @@ def change_ai_private_endpoint_compartment(self, ai_private_endpoint_id, change_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -233,6 +248,7 @@ def change_ai_private_endpoint_compartment(self, ai_private_endpoint_id, change_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -323,6 +339,10 @@ def change_data_asset_compartment(self, data_asset_id, change_data_asset_compart To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.DataAsset` :rtype: :class:`~oci.response.Response` @@ -334,6 +354,7 @@ def change_data_asset_compartment(self, data_asset_id, change_data_asset_compart # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -426,6 +447,10 @@ def change_model_compartment(self, model_id, change_model_compartment_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -437,6 +462,7 @@ def change_model_compartment(self, model_id, change_model_compartment_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -527,6 +553,10 @@ def change_project_compartment(self, project_id, change_project_compartment_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -538,6 +568,7 @@ def change_project_compartment(self, project_id, change_project_compartment_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -618,6 +649,10 @@ def create_ai_private_endpoint(self, create_ai_private_endpoint_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -629,6 +664,7 @@ def create_ai_private_endpoint(self, create_ai_private_endpoint_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -695,6 +731,10 @@ def create_data_asset(self, create_data_asset_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.DataAsset` :rtype: :class:`~oci.response.Response` @@ -706,6 +746,7 @@ def create_data_asset(self, create_data_asset_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -774,6 +815,10 @@ def create_model(self, create_model_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.Model` :rtype: :class:`~oci.response.Response` @@ -785,6 +830,7 @@ def create_model(self, create_model_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -853,6 +899,10 @@ def create_project(self, create_project_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.Project` :rtype: :class:`~oci.response.Response` @@ -864,6 +914,7 @@ def create_project(self, create_project_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -932,6 +983,10 @@ def delete_ai_private_endpoint(self, ai_private_endpoint_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -943,6 +998,7 @@ def delete_ai_private_endpoint(self, ai_private_endpoint_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1018,6 +1074,10 @@ def delete_data_asset(self, data_asset_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1029,6 +1089,7 @@ def delete_data_asset(self, data_asset_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1104,6 +1165,10 @@ def delete_model(self, model_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1115,6 +1180,7 @@ def delete_model(self, model_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1190,6 +1256,10 @@ def delete_project(self, project_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1201,6 +1271,7 @@ def delete_project(self, project_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1291,6 +1362,10 @@ def detect_anomalies(self, detect_anomalies_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.AnomalyDetectResult` :rtype: :class:`~oci.response.Response` @@ -1302,6 +1377,7 @@ def detect_anomalies(self, detect_anomalies_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -1365,6 +1441,10 @@ def get_ai_private_endpoint(self, ai_private_endpoint_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.AiPrivateEndpoint` :rtype: :class:`~oci.response.Response` @@ -1376,6 +1456,7 @@ def get_ai_private_endpoint(self, ai_private_endpoint_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1444,6 +1525,10 @@ def get_data_asset(self, data_asset_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.DataAsset` :rtype: :class:`~oci.response.Response` @@ -1455,6 +1540,7 @@ def get_data_asset(self, data_asset_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1523,6 +1609,10 @@ def get_model(self, model_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.Model` :rtype: :class:`~oci.response.Response` @@ -1534,6 +1624,7 @@ def get_model(self, model_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1602,6 +1693,10 @@ def get_project(self, project_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.Project` :rtype: :class:`~oci.response.Response` @@ -1613,6 +1708,7 @@ def get_project(self, project_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1681,6 +1777,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -1692,6 +1792,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1788,6 +1889,10 @@ def list_ai_private_endpoints(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.AiPrivateEndpointCollection` :rtype: :class:`~oci.response.Response` @@ -1799,6 +1904,7 @@ def list_ai_private_endpoints(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "display_name", @@ -1925,6 +2031,10 @@ def list_data_assets(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.DataAssetCollection` :rtype: :class:`~oci.response.Response` @@ -1936,6 +2046,7 @@ def list_data_assets(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "project_id", "display_name", @@ -2065,6 +2176,10 @@ def list_models(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.ModelCollection` :rtype: :class:`~oci.response.Response` @@ -2076,6 +2191,7 @@ def list_models(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "project_id", "lifecycle_state", @@ -2202,6 +2318,10 @@ def list_projects(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.ProjectCollection` :rtype: :class:`~oci.response.Response` @@ -2213,6 +2333,7 @@ def list_projects(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "display_name", @@ -2315,6 +2436,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -2326,6 +2451,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -2410,6 +2536,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -2421,6 +2551,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -2508,6 +2639,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.WorkRequestSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -2519,6 +2654,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "work_request_id", "opc_request_id", @@ -2598,6 +2734,10 @@ def update_ai_private_endpoint(self, ai_private_endpoint_id, update_ai_private_e To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2609,6 +2749,7 @@ def update_ai_private_endpoint(self, ai_private_endpoint_id, update_ai_private_e # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2689,6 +2830,10 @@ def update_data_asset(self, data_asset_id, update_data_asset_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.DataAsset` :rtype: :class:`~oci.response.Response` @@ -2700,6 +2845,7 @@ def update_data_asset(self, data_asset_id, update_data_asset_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2782,6 +2928,10 @@ def update_model(self, model_id, update_model_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2793,6 +2943,7 @@ def update_model(self, model_id, update_model_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2873,6 +3024,10 @@ def update_project(self, project_id, update_project_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_anomaly_detection.models.Project` :rtype: :class:`~oci.response.Response` @@ -2884,6 +3039,7 @@ def update_project(self, project_id, update_project_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/ai_anomaly_detection/anomaly_detection_client_composite_operations.py b/src/oci/ai_anomaly_detection/anomaly_detection_client_composite_operations.py index 9fedf43580..45973637ee 100644 --- a/src/oci/ai_anomaly_detection/anomaly_detection_client_composite_operations.py +++ b/src/oci/ai_anomaly_detection/anomaly_detection_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/ai_anomaly_detection/models/__init__.py b/src/oci/ai_anomaly_detection/models/__init__.py index bbfc6d630a..fd8a859299 100644 --- a/src/oci/ai_anomaly_detection/models/__init__.py +++ b/src/oci/ai_anomaly_detection/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/ai_anomaly_detection/models/ai_private_endpoint.py b/src/oci/ai_anomaly_detection/models/ai_private_endpoint.py index 0bc6b0ea58..6ad156a3f7 100644 --- a/src/oci/ai_anomaly_detection/models/ai_private_endpoint.py +++ b/src/oci/ai_anomaly_detection/models/ai_private_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/ai_private_endpoint_collection.py b/src/oci/ai_anomaly_detection/models/ai_private_endpoint_collection.py index f893de125e..48f6bbd030 100644 --- a/src/oci/ai_anomaly_detection/models/ai_private_endpoint_collection.py +++ b/src/oci/ai_anomaly_detection/models/ai_private_endpoint_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/ai_private_endpoint_summary.py b/src/oci/ai_anomaly_detection/models/ai_private_endpoint_summary.py index cb5b8d155d..9f1f0e664b 100644 --- a/src/oci/ai_anomaly_detection/models/ai_private_endpoint_summary.py +++ b/src/oci/ai_anomaly_detection/models/ai_private_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/anomaly.py b/src/oci/ai_anomaly_detection/models/anomaly.py index 8dc770170d..e4671f440b 100644 --- a/src/oci/ai_anomaly_detection/models/anomaly.py +++ b/src/oci/ai_anomaly_detection/models/anomaly.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/anomaly_detect_result.py b/src/oci/ai_anomaly_detection/models/anomaly_detect_result.py index a39827acda..0d3deb08ce 100644 --- a/src/oci/ai_anomaly_detection/models/anomaly_detect_result.py +++ b/src/oci/ai_anomaly_detection/models/anomaly_detect_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/change_ai_private_endpoint_compartment_details.py b/src/oci/ai_anomaly_detection/models/change_ai_private_endpoint_compartment_details.py index 6fb7449065..6a1ad18a44 100644 --- a/src/oci/ai_anomaly_detection/models/change_ai_private_endpoint_compartment_details.py +++ b/src/oci/ai_anomaly_detection/models/change_ai_private_endpoint_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/change_data_asset_compartment_details.py b/src/oci/ai_anomaly_detection/models/change_data_asset_compartment_details.py index 33dc69dee0..947ec359f7 100644 --- a/src/oci/ai_anomaly_detection/models/change_data_asset_compartment_details.py +++ b/src/oci/ai_anomaly_detection/models/change_data_asset_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/change_model_compartment_details.py b/src/oci/ai_anomaly_detection/models/change_model_compartment_details.py index e47efd906f..e9a7702261 100644 --- a/src/oci/ai_anomaly_detection/models/change_model_compartment_details.py +++ b/src/oci/ai_anomaly_detection/models/change_model_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/change_project_compartment_details.py b/src/oci/ai_anomaly_detection/models/change_project_compartment_details.py index 38a5a32782..3e2ddcf23c 100644 --- a/src/oci/ai_anomaly_detection/models/change_project_compartment_details.py +++ b/src/oci/ai_anomaly_detection/models/change_project_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/create_ai_private_endpoint_details.py b/src/oci/ai_anomaly_detection/models/create_ai_private_endpoint_details.py index ee825c29d2..478c92698a 100644 --- a/src/oci/ai_anomaly_detection/models/create_ai_private_endpoint_details.py +++ b/src/oci/ai_anomaly_detection/models/create_ai_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/create_data_asset_details.py b/src/oci/ai_anomaly_detection/models/create_data_asset_details.py index 9ebbf19546..f7deedb17d 100644 --- a/src/oci/ai_anomaly_detection/models/create_data_asset_details.py +++ b/src/oci/ai_anomaly_detection/models/create_data_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/create_model_details.py b/src/oci/ai_anomaly_detection/models/create_model_details.py index 1446f210d4..fb019abfee 100644 --- a/src/oci/ai_anomaly_detection/models/create_model_details.py +++ b/src/oci/ai_anomaly_detection/models/create_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/create_project_details.py b/src/oci/ai_anomaly_detection/models/create_project_details.py index c01316c37c..1edde88dc2 100644 --- a/src/oci/ai_anomaly_detection/models/create_project_details.py +++ b/src/oci/ai_anomaly_detection/models/create_project_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/data_asset.py b/src/oci/ai_anomaly_detection/models/data_asset.py index d482b88a8f..b0cac9a068 100644 --- a/src/oci/ai_anomaly_detection/models/data_asset.py +++ b/src/oci/ai_anomaly_detection/models/data_asset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/data_asset_collection.py b/src/oci/ai_anomaly_detection/models/data_asset_collection.py index 3eceba2721..d137f9e5d9 100644 --- a/src/oci/ai_anomaly_detection/models/data_asset_collection.py +++ b/src/oci/ai_anomaly_detection/models/data_asset_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/data_asset_summary.py b/src/oci/ai_anomaly_detection/models/data_asset_summary.py index 2faa2ccf8c..d7fa46f583 100644 --- a/src/oci/ai_anomaly_detection/models/data_asset_summary.py +++ b/src/oci/ai_anomaly_detection/models/data_asset_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/data_item.py b/src/oci/ai_anomaly_detection/models/data_item.py index 3a6ba33e39..5560855b8d 100644 --- a/src/oci/ai_anomaly_detection/models/data_item.py +++ b/src/oci/ai_anomaly_detection/models/data_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/data_source_details.py b/src/oci/ai_anomaly_detection/models/data_source_details.py index 2398a5bc64..8f1790d3b2 100644 --- a/src/oci/ai_anomaly_detection/models/data_source_details.py +++ b/src/oci/ai_anomaly_detection/models/data_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/data_source_details_atp.py b/src/oci/ai_anomaly_detection/models/data_source_details_atp.py index 285f83162d..497ac41676 100644 --- a/src/oci/ai_anomaly_detection/models/data_source_details_atp.py +++ b/src/oci/ai_anomaly_detection/models/data_source_details_atp.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_source_details import DataSourceDetails diff --git a/src/oci/ai_anomaly_detection/models/data_source_details_influx.py b/src/oci/ai_anomaly_detection/models/data_source_details_influx.py index fadae5c48a..bbfb12e4fb 100644 --- a/src/oci/ai_anomaly_detection/models/data_source_details_influx.py +++ b/src/oci/ai_anomaly_detection/models/data_source_details_influx.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_source_details import DataSourceDetails diff --git a/src/oci/ai_anomaly_detection/models/data_source_details_object_storage.py b/src/oci/ai_anomaly_detection/models/data_source_details_object_storage.py index e4686c8ea7..c8843e8a29 100644 --- a/src/oci/ai_anomaly_detection/models/data_source_details_object_storage.py +++ b/src/oci/ai_anomaly_detection/models/data_source_details_object_storage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_source_details import DataSourceDetails diff --git a/src/oci/ai_anomaly_detection/models/detect_anomalies_details.py b/src/oci/ai_anomaly_detection/models/detect_anomalies_details.py index a7901b90ea..58b194f170 100644 --- a/src/oci/ai_anomaly_detection/models/detect_anomalies_details.py +++ b/src/oci/ai_anomaly_detection/models/detect_anomalies_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/detection_result_item.py b/src/oci/ai_anomaly_detection/models/detection_result_item.py index 6a6663f967..c55dfd899c 100644 --- a/src/oci/ai_anomaly_detection/models/detection_result_item.py +++ b/src/oci/ai_anomaly_detection/models/detection_result_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/embedded_detect_anomalies_request.py b/src/oci/ai_anomaly_detection/models/embedded_detect_anomalies_request.py index f214dc3502..c4e5c692d7 100644 --- a/src/oci/ai_anomaly_detection/models/embedded_detect_anomalies_request.py +++ b/src/oci/ai_anomaly_detection/models/embedded_detect_anomalies_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .detect_anomalies_details import DetectAnomaliesDetails diff --git a/src/oci/ai_anomaly_detection/models/influx_details.py b/src/oci/ai_anomaly_detection/models/influx_details.py index 8fc9448b0a..28509ca1ad 100644 --- a/src/oci/ai_anomaly_detection/models/influx_details.py +++ b/src/oci/ai_anomaly_detection/models/influx_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/influx_details_v1v8.py b/src/oci/ai_anomaly_detection/models/influx_details_v1v8.py index b777671c1f..3feece0e29 100644 --- a/src/oci/ai_anomaly_detection/models/influx_details_v1v8.py +++ b/src/oci/ai_anomaly_detection/models/influx_details_v1v8.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .influx_details import InfluxDetails diff --git a/src/oci/ai_anomaly_detection/models/influx_details_v2v0.py b/src/oci/ai_anomaly_detection/models/influx_details_v2v0.py index 5084ff79a0..272cb930ae 100644 --- a/src/oci/ai_anomaly_detection/models/influx_details_v2v0.py +++ b/src/oci/ai_anomaly_detection/models/influx_details_v2v0.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .influx_details import InfluxDetails diff --git a/src/oci/ai_anomaly_detection/models/inline_detect_anomalies_request.py b/src/oci/ai_anomaly_detection/models/inline_detect_anomalies_request.py index a00c03383d..3958f92683 100644 --- a/src/oci/ai_anomaly_detection/models/inline_detect_anomalies_request.py +++ b/src/oci/ai_anomaly_detection/models/inline_detect_anomalies_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .detect_anomalies_details import DetectAnomaliesDetails diff --git a/src/oci/ai_anomaly_detection/models/model.py b/src/oci/ai_anomaly_detection/models/model.py index b36d96f23e..a98009d7d3 100644 --- a/src/oci/ai_anomaly_detection/models/model.py +++ b/src/oci/ai_anomaly_detection/models/model.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/model_collection.py b/src/oci/ai_anomaly_detection/models/model_collection.py index 7084d2fe5c..6b523d74e0 100644 --- a/src/oci/ai_anomaly_detection/models/model_collection.py +++ b/src/oci/ai_anomaly_detection/models/model_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/model_summary.py b/src/oci/ai_anomaly_detection/models/model_summary.py index abd5e986bb..579b6a2f6c 100644 --- a/src/oci/ai_anomaly_detection/models/model_summary.py +++ b/src/oci/ai_anomaly_detection/models/model_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/model_training_details.py b/src/oci/ai_anomaly_detection/models/model_training_details.py index 37bb7d2e6c..aea1a6ba90 100644 --- a/src/oci/ai_anomaly_detection/models/model_training_details.py +++ b/src/oci/ai_anomaly_detection/models/model_training_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/model_training_results.py b/src/oci/ai_anomaly_detection/models/model_training_results.py index 62fe9a3872..24ace552b8 100644 --- a/src/oci/ai_anomaly_detection/models/model_training_results.py +++ b/src/oci/ai_anomaly_detection/models/model_training_results.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/per_signal_details.py b/src/oci/ai_anomaly_detection/models/per_signal_details.py index eb567cea39..80135844df 100644 --- a/src/oci/ai_anomaly_detection/models/per_signal_details.py +++ b/src/oci/ai_anomaly_detection/models/per_signal_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/project.py b/src/oci/ai_anomaly_detection/models/project.py index 1bd8d1cef0..3737ddf096 100644 --- a/src/oci/ai_anomaly_detection/models/project.py +++ b/src/oci/ai_anomaly_detection/models/project.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/project_collection.py b/src/oci/ai_anomaly_detection/models/project_collection.py index 33d8b352ea..65af09e58a 100644 --- a/src/oci/ai_anomaly_detection/models/project_collection.py +++ b/src/oci/ai_anomaly_detection/models/project_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/project_summary.py b/src/oci/ai_anomaly_detection/models/project_summary.py index a0abe04813..ce6ccdc5e9 100644 --- a/src/oci/ai_anomaly_detection/models/project_summary.py +++ b/src/oci/ai_anomaly_detection/models/project_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/row_reduction_details.py b/src/oci/ai_anomaly_detection/models/row_reduction_details.py index ebc704a825..d8db8ee1d7 100644 --- a/src/oci/ai_anomaly_detection/models/row_reduction_details.py +++ b/src/oci/ai_anomaly_detection/models/row_reduction_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/update_ai_private_endpoint_details.py b/src/oci/ai_anomaly_detection/models/update_ai_private_endpoint_details.py index e0510c4e90..296f6fa0f1 100644 --- a/src/oci/ai_anomaly_detection/models/update_ai_private_endpoint_details.py +++ b/src/oci/ai_anomaly_detection/models/update_ai_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/update_data_asset_details.py b/src/oci/ai_anomaly_detection/models/update_data_asset_details.py index 9ab735e307..ecfee3a75d 100644 --- a/src/oci/ai_anomaly_detection/models/update_data_asset_details.py +++ b/src/oci/ai_anomaly_detection/models/update_data_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/update_model_details.py b/src/oci/ai_anomaly_detection/models/update_model_details.py index 9087a7b5f4..3d63794f09 100644 --- a/src/oci/ai_anomaly_detection/models/update_model_details.py +++ b/src/oci/ai_anomaly_detection/models/update_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/update_project_details.py b/src/oci/ai_anomaly_detection/models/update_project_details.py index 3651fdb7d9..7041b73644 100644 --- a/src/oci/ai_anomaly_detection/models/update_project_details.py +++ b/src/oci/ai_anomaly_detection/models/update_project_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/work_request.py b/src/oci/ai_anomaly_detection/models/work_request.py index 475ced6fd8..b93042b466 100644 --- a/src/oci/ai_anomaly_detection/models/work_request.py +++ b/src/oci/ai_anomaly_detection/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/work_request_error.py b/src/oci/ai_anomaly_detection/models/work_request_error.py index 04dde83e08..26ac6a8cc9 100644 --- a/src/oci/ai_anomaly_detection/models/work_request_error.py +++ b/src/oci/ai_anomaly_detection/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/work_request_error_collection.py b/src/oci/ai_anomaly_detection/models/work_request_error_collection.py index 454c9b72e5..4acb33324a 100644 --- a/src/oci/ai_anomaly_detection/models/work_request_error_collection.py +++ b/src/oci/ai_anomaly_detection/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/work_request_log_entry.py b/src/oci/ai_anomaly_detection/models/work_request_log_entry.py index 8d02a6a994..7b37ab8d12 100644 --- a/src/oci/ai_anomaly_detection/models/work_request_log_entry.py +++ b/src/oci/ai_anomaly_detection/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/work_request_log_entry_collection.py b/src/oci/ai_anomaly_detection/models/work_request_log_entry_collection.py index a9bd7963c2..80c42463a7 100644 --- a/src/oci/ai_anomaly_detection/models/work_request_log_entry_collection.py +++ b/src/oci/ai_anomaly_detection/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/work_request_resource.py b/src/oci/ai_anomaly_detection/models/work_request_resource.py index 6decbf1282..4a492bf1d8 100644 --- a/src/oci/ai_anomaly_detection/models/work_request_resource.py +++ b/src/oci/ai_anomaly_detection/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/work_request_summary.py b/src/oci/ai_anomaly_detection/models/work_request_summary.py index 82acb8b333..1b85694452 100644 --- a/src/oci/ai_anomaly_detection/models/work_request_summary.py +++ b/src/oci/ai_anomaly_detection/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_anomaly_detection/models/work_request_summary_collection.py b/src/oci/ai_anomaly_detection/models/work_request_summary_collection.py index c029c155b3..c07f4156e5 100644 --- a/src/oci/ai_anomaly_detection/models/work_request_summary_collection.py +++ b/src/oci/ai_anomaly_detection/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/__init__.py b/src/oci/ai_language/__init__.py index e3624a1e67..e3fe51f2a3 100644 --- a/src/oci/ai_language/__init__.py +++ b/src/oci/ai_language/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/ai_language/ai_service_language_client.py b/src/oci/ai_language/ai_service_language_client.py index 87fdb2b521..e8b7abee82 100644 --- a/src/oci/ai_language/ai_service_language_client.py +++ b/src/oci/ai_language/ai_service_language_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -66,6 +66,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -96,6 +100,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("ai_service_language", config, signer, ai_language_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -119,6 +125,10 @@ def batch_detect_dominant_language(self, batch_detect_dominant_language_details, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_language.models.BatchDetectDominantLanguageResult` :rtype: :class:`~oci.response.Response` @@ -130,6 +140,7 @@ def batch_detect_dominant_language(self, batch_detect_dominant_language_details, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -188,6 +199,10 @@ def batch_detect_language_entities(self, batch_detect_language_entities_details, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_language.models.BatchDetectLanguageEntitiesResult` :rtype: :class:`~oci.response.Response` @@ -199,6 +214,7 @@ def batch_detect_language_entities(self, batch_detect_language_entities_details, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -257,6 +273,10 @@ def batch_detect_language_key_phrases(self, batch_detect_language_key_phrases_de To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_language.models.BatchDetectLanguageKeyPhrasesResult` :rtype: :class:`~oci.response.Response` @@ -268,6 +288,7 @@ def batch_detect_language_key_phrases(self, batch_detect_language_key_phrases_de # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -334,6 +355,10 @@ def batch_detect_language_sentiments(self, batch_detect_language_sentiments_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_language.models.BatchDetectLanguageSentimentsResult` :rtype: :class:`~oci.response.Response` @@ -345,6 +370,7 @@ def batch_detect_language_sentiments(self, batch_detect_language_sentiments_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "level" @@ -419,6 +445,10 @@ def batch_detect_language_text_classification(self, batch_detect_language_text_c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_language.models.BatchDetectLanguageTextClassificationResult` :rtype: :class:`~oci.response.Response` @@ -430,6 +460,7 @@ def batch_detect_language_text_classification(self, batch_detect_language_text_c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -488,6 +519,10 @@ def detect_dominant_language(self, detect_dominant_language_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_language.models.DetectDominantLanguageResult` :rtype: :class:`~oci.response.Response` @@ -499,6 +534,7 @@ def detect_dominant_language(self, detect_dominant_language_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -566,6 +602,10 @@ def detect_language_entities(self, detect_language_entities_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_language.models.DetectLanguageEntitiesResult` :rtype: :class:`~oci.response.Response` @@ -577,6 +617,7 @@ def detect_language_entities(self, detect_language_entities_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "model_version", @@ -652,6 +693,10 @@ def detect_language_key_phrases(self, detect_language_key_phrases_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_language.models.DetectLanguageKeyPhrasesResult` :rtype: :class:`~oci.response.Response` @@ -663,6 +708,7 @@ def detect_language_key_phrases(self, detect_language_key_phrases_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -721,6 +767,10 @@ def detect_language_sentiments(self, detect_language_sentiments_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_language.models.DetectLanguageSentimentsResult` :rtype: :class:`~oci.response.Response` @@ -732,6 +782,7 @@ def detect_language_sentiments(self, detect_language_sentiments_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -790,6 +841,10 @@ def detect_language_text_classification(self, detect_language_text_classificatio To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ai_language.models.DetectLanguageTextClassificationResult` :rtype: :class:`~oci.response.Response` @@ -801,6 +856,7 @@ def detect_language_text_classification(self, detect_language_text_classificatio # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] diff --git a/src/oci/ai_language/ai_service_language_client_composite_operations.py b/src/oci/ai_language/ai_service_language_client_composite_operations.py index b6b4527121..a06a8f6f12 100644 --- a/src/oci/ai_language/ai_service_language_client_composite_operations.py +++ b/src/oci/ai_language/ai_service_language_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/ai_language/models/__init__.py b/src/oci/ai_language/models/__init__.py index ddf3975250..f7ebc586f0 100644 --- a/src/oci/ai_language/models/__init__.py +++ b/src/oci/ai_language/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/ai_language/models/batch_detect_dominant_language_details.py b/src/oci/ai_language/models/batch_detect_dominant_language_details.py index 5c71c04bff..ae7ca7948e 100644 --- a/src/oci/ai_language/models/batch_detect_dominant_language_details.py +++ b/src/oci/ai_language/models/batch_detect_dominant_language_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/batch_detect_dominant_language_result.py b/src/oci/ai_language/models/batch_detect_dominant_language_result.py index 74b0427504..446b3e54ab 100644 --- a/src/oci/ai_language/models/batch_detect_dominant_language_result.py +++ b/src/oci/ai_language/models/batch_detect_dominant_language_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/batch_detect_language_entities_details.py b/src/oci/ai_language/models/batch_detect_language_entities_details.py index fd5e43b82d..f7b45e9ea8 100644 --- a/src/oci/ai_language/models/batch_detect_language_entities_details.py +++ b/src/oci/ai_language/models/batch_detect_language_entities_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/batch_detect_language_entities_result.py b/src/oci/ai_language/models/batch_detect_language_entities_result.py index 2b64de386d..635da228b1 100644 --- a/src/oci/ai_language/models/batch_detect_language_entities_result.py +++ b/src/oci/ai_language/models/batch_detect_language_entities_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/batch_detect_language_key_phrases_details.py b/src/oci/ai_language/models/batch_detect_language_key_phrases_details.py index 92f68e8e03..3d3263fe41 100644 --- a/src/oci/ai_language/models/batch_detect_language_key_phrases_details.py +++ b/src/oci/ai_language/models/batch_detect_language_key_phrases_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/batch_detect_language_key_phrases_result.py b/src/oci/ai_language/models/batch_detect_language_key_phrases_result.py index 7672b6722a..13d42babd7 100644 --- a/src/oci/ai_language/models/batch_detect_language_key_phrases_result.py +++ b/src/oci/ai_language/models/batch_detect_language_key_phrases_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/batch_detect_language_sentiments_details.py b/src/oci/ai_language/models/batch_detect_language_sentiments_details.py index 20e25d5e5f..732a8514db 100644 --- a/src/oci/ai_language/models/batch_detect_language_sentiments_details.py +++ b/src/oci/ai_language/models/batch_detect_language_sentiments_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/batch_detect_language_sentiments_result.py b/src/oci/ai_language/models/batch_detect_language_sentiments_result.py index b1117c5377..07eddced14 100644 --- a/src/oci/ai_language/models/batch_detect_language_sentiments_result.py +++ b/src/oci/ai_language/models/batch_detect_language_sentiments_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/batch_detect_language_text_classification_details.py b/src/oci/ai_language/models/batch_detect_language_text_classification_details.py index 5081d76561..ff065b658c 100644 --- a/src/oci/ai_language/models/batch_detect_language_text_classification_details.py +++ b/src/oci/ai_language/models/batch_detect_language_text_classification_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/batch_detect_language_text_classification_result.py b/src/oci/ai_language/models/batch_detect_language_text_classification_result.py index ce9ba5e763..ddf986b11d 100644 --- a/src/oci/ai_language/models/batch_detect_language_text_classification_result.py +++ b/src/oci/ai_language/models/batch_detect_language_text_classification_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/detect_dominant_language_details.py b/src/oci/ai_language/models/detect_dominant_language_details.py index 68b20eed1d..43c9aee5c1 100644 --- a/src/oci/ai_language/models/detect_dominant_language_details.py +++ b/src/oci/ai_language/models/detect_dominant_language_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/detect_dominant_language_result.py b/src/oci/ai_language/models/detect_dominant_language_result.py index 9a7c087923..bae9204e1d 100644 --- a/src/oci/ai_language/models/detect_dominant_language_result.py +++ b/src/oci/ai_language/models/detect_dominant_language_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/detect_language_entities_details.py b/src/oci/ai_language/models/detect_language_entities_details.py index bbb29c3af0..bfb7224d68 100644 --- a/src/oci/ai_language/models/detect_language_entities_details.py +++ b/src/oci/ai_language/models/detect_language_entities_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/detect_language_entities_result.py b/src/oci/ai_language/models/detect_language_entities_result.py index 7f5ba014a7..c19c2bda83 100644 --- a/src/oci/ai_language/models/detect_language_entities_result.py +++ b/src/oci/ai_language/models/detect_language_entities_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/detect_language_key_phrases_details.py b/src/oci/ai_language/models/detect_language_key_phrases_details.py index 6192199b32..adfc3c7d39 100644 --- a/src/oci/ai_language/models/detect_language_key_phrases_details.py +++ b/src/oci/ai_language/models/detect_language_key_phrases_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/detect_language_key_phrases_result.py b/src/oci/ai_language/models/detect_language_key_phrases_result.py index d5a5b3b90d..1ad36c1530 100644 --- a/src/oci/ai_language/models/detect_language_key_phrases_result.py +++ b/src/oci/ai_language/models/detect_language_key_phrases_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/detect_language_sentiments_details.py b/src/oci/ai_language/models/detect_language_sentiments_details.py index 41c391aa99..f08a01326b 100644 --- a/src/oci/ai_language/models/detect_language_sentiments_details.py +++ b/src/oci/ai_language/models/detect_language_sentiments_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/detect_language_sentiments_result.py b/src/oci/ai_language/models/detect_language_sentiments_result.py index 270d0736a2..4dc659d842 100644 --- a/src/oci/ai_language/models/detect_language_sentiments_result.py +++ b/src/oci/ai_language/models/detect_language_sentiments_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/detect_language_text_classification_details.py b/src/oci/ai_language/models/detect_language_text_classification_details.py index ce261fb8e9..e8544ae95a 100644 --- a/src/oci/ai_language/models/detect_language_text_classification_details.py +++ b/src/oci/ai_language/models/detect_language_text_classification_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/detect_language_text_classification_result.py b/src/oci/ai_language/models/detect_language_text_classification_result.py index cf7148c45c..23c402504b 100644 --- a/src/oci/ai_language/models/detect_language_text_classification_result.py +++ b/src/oci/ai_language/models/detect_language_text_classification_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/detected_language.py b/src/oci/ai_language/models/detected_language.py index 1b5452666e..5aa1911686 100644 --- a/src/oci/ai_language/models/detected_language.py +++ b/src/oci/ai_language/models/detected_language.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/document_error.py b/src/oci/ai_language/models/document_error.py index 92dec7a295..a3c2ce41cf 100644 --- a/src/oci/ai_language/models/document_error.py +++ b/src/oci/ai_language/models/document_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/dominant_language_document.py b/src/oci/ai_language/models/dominant_language_document.py index c48d4f19ae..ef8b4b5d20 100644 --- a/src/oci/ai_language/models/dominant_language_document.py +++ b/src/oci/ai_language/models/dominant_language_document.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/dominant_language_document_result.py b/src/oci/ai_language/models/dominant_language_document_result.py index 2901fa512b..16c2ab1364 100644 --- a/src/oci/ai_language/models/dominant_language_document_result.py +++ b/src/oci/ai_language/models/dominant_language_document_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/entity.py b/src/oci/ai_language/models/entity.py index 78536326e0..a7eea94636 100644 --- a/src/oci/ai_language/models/entity.py +++ b/src/oci/ai_language/models/entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/entity_document.py b/src/oci/ai_language/models/entity_document.py index b0f16dd54c..a2030c1125 100644 --- a/src/oci/ai_language/models/entity_document.py +++ b/src/oci/ai_language/models/entity_document.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/entity_document_result.py b/src/oci/ai_language/models/entity_document_result.py index fb2afcaba7..27f1936b3c 100644 --- a/src/oci/ai_language/models/entity_document_result.py +++ b/src/oci/ai_language/models/entity_document_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/error_details.py b/src/oci/ai_language/models/error_details.py index 28df9cee6f..738d2fab21 100644 --- a/src/oci/ai_language/models/error_details.py +++ b/src/oci/ai_language/models/error_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/hierarchical_entity.py b/src/oci/ai_language/models/hierarchical_entity.py index 632383550c..9e9706ee11 100644 --- a/src/oci/ai_language/models/hierarchical_entity.py +++ b/src/oci/ai_language/models/hierarchical_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/key_phrase.py b/src/oci/ai_language/models/key_phrase.py index 6316eaca0b..02659473bb 100644 --- a/src/oci/ai_language/models/key_phrase.py +++ b/src/oci/ai_language/models/key_phrase.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/key_phrase_document.py b/src/oci/ai_language/models/key_phrase_document.py index c2c579c694..9159a79a95 100644 --- a/src/oci/ai_language/models/key_phrase_document.py +++ b/src/oci/ai_language/models/key_phrase_document.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/key_phrase_document_result.py b/src/oci/ai_language/models/key_phrase_document_result.py index a72cd4d932..37cf340e8f 100644 --- a/src/oci/ai_language/models/key_phrase_document_result.py +++ b/src/oci/ai_language/models/key_phrase_document_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/sentiment_aspect.py b/src/oci/ai_language/models/sentiment_aspect.py index 757638866f..992ef8393e 100644 --- a/src/oci/ai_language/models/sentiment_aspect.py +++ b/src/oci/ai_language/models/sentiment_aspect.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/sentiment_document_result.py b/src/oci/ai_language/models/sentiment_document_result.py index 9b84935dd0..5d3379cf7e 100644 --- a/src/oci/ai_language/models/sentiment_document_result.py +++ b/src/oci/ai_language/models/sentiment_document_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/sentiment_sentence.py b/src/oci/ai_language/models/sentiment_sentence.py index 8f0afbd123..0999eb0904 100644 --- a/src/oci/ai_language/models/sentiment_sentence.py +++ b/src/oci/ai_language/models/sentiment_sentence.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/sentiments_document.py b/src/oci/ai_language/models/sentiments_document.py index 311a3432e0..e6b33133b7 100644 --- a/src/oci/ai_language/models/sentiments_document.py +++ b/src/oci/ai_language/models/sentiments_document.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/text_classification.py b/src/oci/ai_language/models/text_classification.py index 3519aad3ab..3e81fc3cac 100644 --- a/src/oci/ai_language/models/text_classification.py +++ b/src/oci/ai_language/models/text_classification.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/text_classification_document.py b/src/oci/ai_language/models/text_classification_document.py index 0ab3176c08..9383bc103f 100644 --- a/src/oci/ai_language/models/text_classification_document.py +++ b/src/oci/ai_language/models/text_classification_document.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ai_language/models/text_classification_document_result.py b/src/oci/ai_language/models/text_classification_document_result.py index 9d229705e7..d3c23d26e9 100644 --- a/src/oci/ai_language/models/text_classification_document_result.py +++ b/src/oci/ai_language/models/text_classification_document_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/__init__.py b/src/oci/analytics/__init__.py index cde4f5b48f..c8f6b2b82d 100644 --- a/src/oci/analytics/__init__.py +++ b/src/oci/analytics/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/analytics/analytics_client.py b/src/oci/analytics/analytics_client.py index 5a1327dfd9..0a6112ee82 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("analytics", config, signer, analytics_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -134,6 +140,10 @@ def change_analytics_instance_compartment(self, analytics_instance_id, change_co To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -145,6 +155,7 @@ def change_analytics_instance_compartment(self, analytics_instance_id, change_co # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -235,6 +246,10 @@ def change_analytics_instance_network_endpoint(self, analytics_instance_id, chan To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -246,6 +261,7 @@ def change_analytics_instance_network_endpoint(self, analytics_instance_id, chan # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -328,6 +344,10 @@ def create_analytics_instance(self, create_analytics_instance_details, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.analytics.models.AnalyticsInstance` :rtype: :class:`~oci.response.Response` @@ -339,6 +359,7 @@ def create_analytics_instance(self, create_analytics_instance_details, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -412,6 +433,10 @@ def create_private_access_channel(self, analytics_instance_id, create_private_ac To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -423,6 +448,7 @@ def create_private_access_channel(self, analytics_instance_id, create_private_ac # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -506,6 +532,10 @@ def create_vanity_url(self, analytics_instance_id, create_vanity_url_details, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -517,6 +547,7 @@ def create_vanity_url(self, analytics_instance_id, create_vanity_url_details, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -602,6 +633,10 @@ def delete_analytics_instance(self, analytics_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -613,6 +648,7 @@ def delete_analytics_instance(self, analytics_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -700,6 +736,10 @@ def delete_private_access_channel(self, private_access_channel_key, analytics_in To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -711,6 +751,7 @@ def delete_private_access_channel(self, private_access_channel_key, analytics_in # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -799,6 +840,10 @@ def delete_vanity_url(self, analytics_instance_id, vanity_url_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -810,6 +855,7 @@ def delete_vanity_url(self, analytics_instance_id, vanity_url_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -888,6 +934,10 @@ def delete_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -899,6 +949,7 @@ def delete_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -968,6 +1019,10 @@ def get_analytics_instance(self, analytics_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.analytics.models.AnalyticsInstance` :rtype: :class:`~oci.response.Response` @@ -979,6 +1034,7 @@ def get_analytics_instance(self, analytics_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1051,6 +1107,10 @@ def get_private_access_channel(self, private_access_channel_key, analytics_insta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.analytics.models.PrivateAccessChannel` :rtype: :class:`~oci.response.Response` @@ -1062,6 +1122,7 @@ def get_private_access_channel(self, private_access_channel_key, analytics_insta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1132,6 +1193,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.analytics.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -1143,6 +1208,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1260,6 +1326,10 @@ def list_analytics_instances(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.analytics.models.AnalyticsInstanceSummary` :rtype: :class:`~oci.response.Response` @@ -1271,6 +1341,7 @@ def list_analytics_instances(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "name", @@ -1402,6 +1473,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.analytics.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -1413,6 +1488,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -1508,6 +1584,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.analytics.models.WorkRequestLog` :rtype: :class:`~oci.response.Response` @@ -1519,6 +1599,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -1637,6 +1718,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.analytics.models.WorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -1648,6 +1733,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "resource_id", "resource_type", @@ -1771,6 +1857,10 @@ def scale_analytics_instance(self, analytics_instance_id, scale_analytics_instan To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1782,6 +1872,7 @@ def scale_analytics_instance(self, analytics_instance_id, scale_analytics_instan # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1869,6 +1960,10 @@ def start_analytics_instance(self, analytics_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1880,6 +1975,7 @@ def start_analytics_instance(self, analytics_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1965,6 +2061,10 @@ def stop_analytics_instance(self, analytics_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1976,6 +2076,7 @@ def stop_analytics_instance(self, analytics_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2058,6 +2159,10 @@ def update_analytics_instance(self, analytics_instance_id, update_analytics_inst To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.analytics.models.AnalyticsInstance` :rtype: :class:`~oci.response.Response` @@ -2069,6 +2174,7 @@ def update_analytics_instance(self, analytics_instance_id, update_analytics_inst # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2160,6 +2266,10 @@ def update_private_access_channel(self, private_access_channel_key, analytics_in To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2171,6 +2281,7 @@ def update_private_access_channel(self, private_access_channel_key, analytics_in # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2264,6 +2375,10 @@ def update_vanity_url(self, analytics_instance_id, vanity_url_key, update_vanity To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2275,6 +2390,7 @@ def update_vanity_url(self, analytics_instance_id, vanity_url_key, update_vanity # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", diff --git a/src/oci/analytics/analytics_client_composite_operations.py b/src/oci/analytics/analytics_client_composite_operations.py index ca87a1a64f..e12e2e4014 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/analytics/models/__init__.py b/src/oci/analytics/models/__init__.py index b5dde6dfdc..aa29c1a471 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/analytics/models/analytics_instance.py b/src/oci/analytics/models/analytics_instance.py index ceecde00df..402db4eb98 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/analytics_instance_summary.py b/src/oci/analytics/models/analytics_instance_summary.py index eb47e99c39..3ad0a9e568 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/capacity.py b/src/oci/analytics/models/capacity.py index e4bc3db707..200565521e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/change_analytics_instance_network_endpoint_details.py b/src/oci/analytics/models/change_analytics_instance_network_endpoint_details.py index 6f7953667c..d9be3e8781 100644 --- a/src/oci/analytics/models/change_analytics_instance_network_endpoint_details.py +++ b/src/oci/analytics/models/change_analytics_instance_network_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/change_compartment_details.py b/src/oci/analytics/models/change_compartment_details.py index 8db91f4b87..1dadb9e7af 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/create_analytics_instance_details.py b/src/oci/analytics/models/create_analytics_instance_details.py index abf597ffd0..f126602464 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/create_private_access_channel_details.py b/src/oci/analytics/models/create_private_access_channel_details.py index 8638e0b7d6..20a9537a02 100644 --- a/src/oci/analytics/models/create_private_access_channel_details.py +++ b/src/oci/analytics/models/create_private_access_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/create_vanity_url_details.py b/src/oci/analytics/models/create_vanity_url_details.py index 06d753516d..c9c2e85330 100644 --- a/src/oci/analytics/models/create_vanity_url_details.py +++ b/src/oci/analytics/models/create_vanity_url_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/network_endpoint_details.py b/src/oci/analytics/models/network_endpoint_details.py index 735facddf0..7db3b9e767 100644 --- a/src/oci/analytics/models/network_endpoint_details.py +++ b/src/oci/analytics/models/network_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/private_access_channel.py b/src/oci/analytics/models/private_access_channel.py index 8f7f386d6d..0536a6148f 100644 --- a/src/oci/analytics/models/private_access_channel.py +++ b/src/oci/analytics/models/private_access_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/private_endpoint_details.py b/src/oci/analytics/models/private_endpoint_details.py index c9de6dde6b..12cde115b3 100644 --- a/src/oci/analytics/models/private_endpoint_details.py +++ b/src/oci/analytics/models/private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .network_endpoint_details import NetworkEndpointDetails diff --git a/src/oci/analytics/models/private_source_dns_zone.py b/src/oci/analytics/models/private_source_dns_zone.py index 57512a53a6..9db8189a3f 100644 --- a/src/oci/analytics/models/private_source_dns_zone.py +++ b/src/oci/analytics/models/private_source_dns_zone.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/public_endpoint_details.py b/src/oci/analytics/models/public_endpoint_details.py index 8a649b6f01..9eca510024 100644 --- a/src/oci/analytics/models/public_endpoint_details.py +++ b/src/oci/analytics/models/public_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .network_endpoint_details import NetworkEndpointDetails diff --git a/src/oci/analytics/models/scale_analytics_instance_details.py b/src/oci/analytics/models/scale_analytics_instance_details.py index 8d1260bb19..65b1513c4d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/update_analytics_instance_details.py b/src/oci/analytics/models/update_analytics_instance_details.py index 1fe148445f..ddae03814a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/update_private_access_channel_details.py b/src/oci/analytics/models/update_private_access_channel_details.py index 7128a6d5b4..84699ae83b 100644 --- a/src/oci/analytics/models/update_private_access_channel_details.py +++ b/src/oci/analytics/models/update_private_access_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/update_vanity_url_details.py b/src/oci/analytics/models/update_vanity_url_details.py index cc5e6f51b9..851050e393 100644 --- a/src/oci/analytics/models/update_vanity_url_details.py +++ b/src/oci/analytics/models/update_vanity_url_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/vanity_url_details.py b/src/oci/analytics/models/vanity_url_details.py index e54ff84954..b1c7cafb01 100644 --- a/src/oci/analytics/models/vanity_url_details.py +++ b/src/oci/analytics/models/vanity_url_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/virtual_cloud_network.py b/src/oci/analytics/models/virtual_cloud_network.py index eceff65959..8aa0b1bbfb 100644 --- a/src/oci/analytics/models/virtual_cloud_network.py +++ b/src/oci/analytics/models/virtual_cloud_network.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/work_request.py b/src/oci/analytics/models/work_request.py index 7e46b0cfbe..4b3de4b31a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/work_request_error.py b/src/oci/analytics/models/work_request_error.py index 07aaf17253..1aa24d3272 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/work_request_log.py b/src/oci/analytics/models/work_request_log.py index 3457fc1534..b7bcac339d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/work_request_resource.py b/src/oci/analytics/models/work_request_resource.py index 6e2d81fdc4..1a93468f69 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/analytics/models/work_request_summary.py b/src/oci/analytics/models/work_request_summary.py index c88ae53c60..b5836e935f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/announcements_service/__init__.py b/src/oci/announcements_service/__init__.py index 90365d398b..e1ae20ddc5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/announcements_service/announcement_client.py b/src/oci/announcements_service/announcement_client.py index 7c8441e210..b5b7f00ba9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("announcement", config, signer, announcements_service_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -118,6 +124,10 @@ def get_announcement(self, announcement_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.announcements_service.models.Announcement` :rtype: :class:`~oci.response.Response` @@ -129,6 +139,7 @@ def get_announcement(self, announcement_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -198,6 +209,10 @@ def get_announcement_user_status(self, announcement_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.announcements_service.models.AnnouncementUserStatusDetails` :rtype: :class:`~oci.response.Response` @@ -209,6 +224,7 @@ def get_announcement_user_status(self, announcement_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -312,6 +328,10 @@ def list_announcements(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.announcements_service.models.AnnouncementsCollection` :rtype: :class:`~oci.response.Response` @@ -323,6 +343,7 @@ def list_announcements(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -432,6 +453,10 @@ def update_announcement_user_status(self, announcement_id, status_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -443,6 +468,7 @@ def update_announcement_user_status(self, announcement_id, status_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/announcements_service/announcement_client_composite_operations.py b/src/oci/announcements_service/announcement_client_composite_operations.py index f58e22540c..c036af9cfd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/announcements_service/announcements_preferences_client.py b/src/oci/announcements_service/announcements_preferences_client.py index 5590c188b9..843565f5a9 100644 --- a/src/oci/announcements_service/announcements_preferences_client.py +++ b/src/oci/announcements_service/announcements_preferences_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("announcements_preferences", config, signer, announcements_service_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -121,6 +127,10 @@ def create_announcements_preference(self, announcements_preference_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.announcements_service.models.AnnouncementsPreferencesSummary` :rtype: :class:`~oci.response.Response` @@ -132,6 +142,7 @@ def create_announcements_preference(self, announcements_preference_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -194,6 +205,10 @@ def get_announcements_preference(self, preference_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.announcements_service.models.AnnouncementsPreferences` :rtype: :class:`~oci.response.Response` @@ -205,6 +220,7 @@ def get_announcements_preference(self, preference_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -281,6 +297,10 @@ def list_announcements_preferences(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.announcements_service.models.AnnouncementsPreferencesSummary` :rtype: :class:`~oci.response.Response` @@ -292,6 +312,7 @@ def list_announcements_preferences(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -366,6 +387,10 @@ def update_announcements_preference(self, preference_id, announcements_preferenc To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.announcements_service.models.AnnouncementsPreferencesSummary` :rtype: :class:`~oci.response.Response` @@ -377,6 +402,7 @@ def update_announcements_preference(self, preference_id, announcements_preferenc # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" diff --git a/src/oci/announcements_service/announcements_preferences_client_composite_operations.py b/src/oci/announcements_service/announcements_preferences_client_composite_operations.py index ae483b411a..3091dae9a2 100644 --- a/src/oci/announcements_service/announcements_preferences_client_composite_operations.py +++ b/src/oci/announcements_service/announcements_preferences_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/announcements_service/models/__init__.py b/src/oci/announcements_service/models/__init__.py index 47272ba9ac..bd59e44ff3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 92c734e61e..ababe679b8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/announcements_service/models/announcement.py b/src/oci/announcements_service/models/announcement.py index 8b048ae513..7ca9c92f41 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .base_announcement import BaseAnnouncement diff --git a/src/oci/announcements_service/models/announcement_summary.py b/src/oci/announcements_service/models/announcement_summary.py index 55cd1a3874..2dd1f947d1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .base_announcement import BaseAnnouncement 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 012a75e3de..8a8491231e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/announcements_service/models/announcements_collection.py b/src/oci/announcements_service/models/announcements_collection.py index 2f1f6e9921..3218969cb0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/announcements_service/models/announcements_preferences.py b/src/oci/announcements_service/models/announcements_preferences.py index 70cb890819..f8be6dac74 100644 --- a/src/oci/announcements_service/models/announcements_preferences.py +++ b/src/oci/announcements_service/models/announcements_preferences.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .base_announcements_preferences import BaseAnnouncementsPreferences diff --git a/src/oci/announcements_service/models/announcements_preferences_summary.py b/src/oci/announcements_service/models/announcements_preferences_summary.py index c248e1fe74..30b1c8f9d4 100644 --- a/src/oci/announcements_service/models/announcements_preferences_summary.py +++ b/src/oci/announcements_service/models/announcements_preferences_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .base_announcements_preferences import BaseAnnouncementsPreferences diff --git a/src/oci/announcements_service/models/base_announcement.py b/src/oci/announcements_service/models/base_announcement.py index 66199d078b..f8aad822e4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/announcements_service/models/base_announcements_preferences.py b/src/oci/announcements_service/models/base_announcements_preferences.py index 938c59511c..3e9c92feac 100644 --- a/src/oci/announcements_service/models/base_announcements_preferences.py +++ b/src/oci/announcements_service/models/base_announcements_preferences.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/announcements_service/models/base_create_announcements_preferences_details.py b/src/oci/announcements_service/models/base_create_announcements_preferences_details.py index fe4383d6f9..94c9686ddd 100644 --- a/src/oci/announcements_service/models/base_create_announcements_preferences_details.py +++ b/src/oci/announcements_service/models/base_create_announcements_preferences_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/announcements_service/models/create_announcements_preferences_details.py b/src/oci/announcements_service/models/create_announcements_preferences_details.py index 2cb8417e4e..d174910883 100644 --- a/src/oci/announcements_service/models/create_announcements_preferences_details.py +++ b/src/oci/announcements_service/models/create_announcements_preferences_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .base_create_announcements_preferences_details import BaseCreateAnnouncementsPreferencesDetails diff --git a/src/oci/announcements_service/models/model_property.py b/src/oci/announcements_service/models/model_property.py index ad5995da52..783a1f6f46 100644 --- a/src/oci/announcements_service/models/model_property.py +++ b/src/oci/announcements_service/models/model_property.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/announcements_service/models/update_announcements_preferences_details.py b/src/oci/announcements_service/models/update_announcements_preferences_details.py index 18aa4b5b7a..8ae172abac 100644 --- a/src/oci/announcements_service/models/update_announcements_preferences_details.py +++ b/src/oci/announcements_service/models/update_announcements_preferences_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .base_create_announcements_preferences_details import BaseCreateAnnouncementsPreferencesDetails diff --git a/src/oci/apigateway/__init__.py b/src/oci/apigateway/__init__.py index 01e262c95d..b53e3d31fa 100644 --- a/src/oci/apigateway/__init__.py +++ b/src/oci/apigateway/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/apigateway/api_gateway_client.py b/src/oci/apigateway/api_gateway_client.py index ef3f667f42..4b369c08ab 100644 --- a/src/oci/apigateway/api_gateway_client.py +++ b/src/oci/apigateway/api_gateway_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -66,6 +66,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -96,6 +100,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("api_gateway", config, signer, apigateway_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -136,6 +142,10 @@ def change_api_compartment(self, api_id, change_api_compartment_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -147,6 +157,7 @@ def change_api_compartment(self, api_id, change_api_compartment_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -237,6 +248,10 @@ def change_certificate_compartment(self, certificate_id, change_certificate_comp To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -248,6 +263,7 @@ def change_certificate_compartment(self, certificate_id, change_certificate_comp # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -328,6 +344,10 @@ def create_api(self, create_api_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.Api` :rtype: :class:`~oci.response.Response` @@ -339,6 +359,7 @@ def create_api(self, create_api_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -407,6 +428,10 @@ def create_certificate(self, create_certificate_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.Certificate` :rtype: :class:`~oci.response.Response` @@ -418,6 +443,7 @@ def create_certificate(self, create_certificate_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -486,6 +512,10 @@ def create_sdk(self, create_sdk_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.Sdk` :rtype: :class:`~oci.response.Response` @@ -497,6 +527,7 @@ def create_sdk(self, create_sdk_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -565,6 +596,10 @@ def delete_api(self, api_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -576,6 +611,7 @@ def delete_api(self, api_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -651,6 +687,10 @@ def delete_certificate(self, certificate_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -662,6 +702,7 @@ def delete_certificate(self, certificate_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -737,6 +778,10 @@ def delete_sdk(self, sdk_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -748,6 +793,7 @@ def delete_sdk(self, sdk_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -816,6 +862,10 @@ def get_api(self, api_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.Api` :rtype: :class:`~oci.response.Response` @@ -827,6 +877,7 @@ def get_api(self, api_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -909,6 +960,10 @@ def get_api_content(self, api_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -920,6 +975,7 @@ def get_api_content(self, api_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -999,6 +1055,10 @@ def get_api_deployment_specification(self, api_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.ApiSpecification` :rtype: :class:`~oci.response.Response` @@ -1010,6 +1070,7 @@ def get_api_deployment_specification(self, api_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1087,6 +1148,10 @@ def get_api_validations(self, api_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.ApiValidations` :rtype: :class:`~oci.response.Response` @@ -1098,6 +1163,7 @@ def get_api_validations(self, api_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1168,6 +1234,10 @@ def get_certificate(self, certificate_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.Certificate` :rtype: :class:`~oci.response.Response` @@ -1179,6 +1249,7 @@ def get_certificate(self, certificate_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1247,6 +1318,10 @@ def get_sdk(self, sdk_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.Sdk` :rtype: :class:`~oci.response.Response` @@ -1258,6 +1333,7 @@ def get_sdk(self, sdk_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1357,6 +1433,10 @@ def list_apis(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.ApiCollection` :rtype: :class:`~oci.response.Response` @@ -1368,6 +1448,7 @@ def list_apis(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "lifecycle_state", @@ -1495,6 +1576,10 @@ def list_certificates(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.CertificateCollection` :rtype: :class:`~oci.response.Response` @@ -1506,6 +1591,7 @@ def list_certificates(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "lifecycle_state", @@ -1626,6 +1712,10 @@ def list_sdk_language_types(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.SdkLanguageTypeCollection` :rtype: :class:`~oci.response.Response` @@ -1637,6 +1727,7 @@ def list_sdk_language_types(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -1758,6 +1849,10 @@ def list_sdks(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.SdkCollection` :rtype: :class:`~oci.response.Response` @@ -1769,6 +1864,7 @@ def list_sdks(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "sdk_id", "display_name", @@ -1878,6 +1974,10 @@ def update_api(self, api_id, update_api_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1889,6 +1989,7 @@ def update_api(self, api_id, update_api_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1969,6 +2070,10 @@ def update_certificate(self, certificate_id, update_certificate_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1980,6 +2085,7 @@ def update_certificate(self, certificate_id, update_certificate_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2060,6 +2166,10 @@ def update_sdk(self, sdk_id, update_sdk_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2071,6 +2181,7 @@ def update_sdk(self, sdk_id, update_sdk_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/apigateway/api_gateway_client_composite_operations.py b/src/oci/apigateway/api_gateway_client_composite_operations.py index b9dafc9019..c7af03159c 100644 --- a/src/oci/apigateway/api_gateway_client_composite_operations.py +++ b/src/oci/apigateway/api_gateway_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/apigateway/deployment_client.py b/src/oci/apigateway/deployment_client.py index 32fb598c05..7226e52e11 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -66,6 +66,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -96,6 +100,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("deployment", config, signer, apigateway_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -136,6 +142,10 @@ def change_deployment_compartment(self, deployment_id, change_deployment_compart To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -147,6 +157,7 @@ def change_deployment_compartment(self, deployment_id, change_deployment_compart # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -227,6 +238,10 @@ def create_deployment(self, create_deployment_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.Deployment` :rtype: :class:`~oci.response.Response` @@ -238,6 +253,7 @@ def create_deployment(self, create_deployment_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -306,6 +322,10 @@ def delete_deployment(self, deployment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -317,6 +337,7 @@ def delete_deployment(self, deployment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -385,6 +406,10 @@ def get_deployment(self, deployment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.Deployment` :rtype: :class:`~oci.response.Response` @@ -396,6 +421,7 @@ def get_deployment(self, deployment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -498,6 +524,10 @@ def list_deployments(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.DeploymentCollection` :rtype: :class:`~oci.response.Response` @@ -509,6 +539,7 @@ def list_deployments(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "gateway_id", "display_name", @@ -617,6 +648,10 @@ def update_deployment(self, deployment_id, update_deployment_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -628,6 +663,7 @@ def update_deployment(self, deployment_id, update_deployment_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/apigateway/deployment_client_composite_operations.py b/src/oci/apigateway/deployment_client_composite_operations.py index 7037fd7260..91f2bd87ef 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/apigateway/gateway_client.py b/src/oci/apigateway/gateway_client.py index 5ddc7ff624..50763bdd83 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -66,6 +66,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -96,6 +100,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("gateway", config, signer, apigateway_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -136,6 +142,10 @@ def change_gateway_compartment(self, gateway_id, change_gateway_compartment_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -147,6 +157,7 @@ def change_gateway_compartment(self, gateway_id, change_gateway_compartment_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -227,6 +238,10 @@ def create_gateway(self, create_gateway_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.Gateway` :rtype: :class:`~oci.response.Response` @@ -238,6 +253,7 @@ def create_gateway(self, create_gateway_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -306,6 +322,10 @@ def delete_gateway(self, gateway_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -317,6 +337,7 @@ def delete_gateway(self, gateway_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -385,6 +406,10 @@ def get_gateway(self, gateway_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.Gateway` :rtype: :class:`~oci.response.Response` @@ -396,6 +421,7 @@ def get_gateway(self, gateway_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -498,6 +524,10 @@ def list_gateways(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.GatewayCollection` :rtype: :class:`~oci.response.Response` @@ -509,6 +539,7 @@ def list_gateways(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "certificate_id", "display_name", @@ -617,6 +648,10 @@ def update_gateway(self, gateway_id, update_gateway_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -628,6 +663,7 @@ def update_gateway(self, gateway_id, update_gateway_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/apigateway/gateway_client_composite_operations.py b/src/oci/apigateway/gateway_client_composite_operations.py index e0b8c93613..620e725238 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/apigateway/models/__init__.py b/src/oci/apigateway/models/__init__.py index a51b1000a7..4b6324bf9f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 95cb35ed30..2a723a87c4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/anonymous_route_authorization_policy.py b/src/oci/apigateway/models/anonymous_route_authorization_policy.py index f5ccfbad59..fe24a102be 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .route_authorization_policy import RouteAuthorizationPolicy 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 14239a61f5..4abdbea8b1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .route_authorization_policy import RouteAuthorizationPolicy diff --git a/src/oci/apigateway/models/api.py b/src/oci/apigateway/models/api.py index cb5e8098fa..580a543ca2 100644 --- a/src/oci/apigateway/models/api.py +++ b/src/oci/apigateway/models/api.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/api_collection.py b/src/oci/apigateway/models/api_collection.py index a448fe986b..1312a55d8e 100644 --- a/src/oci/apigateway/models/api_collection.py +++ b/src/oci/apigateway/models/api_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/api_specification.py b/src/oci/apigateway/models/api_specification.py index de67cf3955..9c7e2c8348 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/api_specification_logging_policies.py b/src/oci/apigateway/models/api_specification_logging_policies.py index 1701fdc806..1a7e44999c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/api_specification_request_policies.py b/src/oci/apigateway/models/api_specification_request_policies.py index b456d8865e..37504318e2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/api_specification_route.py b/src/oci/apigateway/models/api_specification_route.py index 39948241e3..1491877eeb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/api_specification_route_backend.py b/src/oci/apigateway/models/api_specification_route_backend.py index a8f8c43cc3..3856580278 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 fc4151906f..1c888417a3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/api_specification_route_response_policies.py b/src/oci/apigateway/models/api_specification_route_response_policies.py index 4b38b7a8a6..c8124dcfad 100644 --- a/src/oci/apigateway/models/api_specification_route_response_policies.py +++ b/src/oci/apigateway/models/api_specification_route_response_policies.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/api_summary.py b/src/oci/apigateway/models/api_summary.py index ab48a92551..c937c4be93 100644 --- a/src/oci/apigateway/models/api_summary.py +++ b/src/oci/apigateway/models/api_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/api_validation_detail.py b/src/oci/apigateway/models/api_validation_detail.py index 688a884747..585f9e490c 100644 --- a/src/oci/apigateway/models/api_validation_detail.py +++ b/src/oci/apigateway/models/api_validation_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/api_validation_details.py b/src/oci/apigateway/models/api_validation_details.py index c1be4c95d4..606b79acd4 100644 --- a/src/oci/apigateway/models/api_validation_details.py +++ b/src/oci/apigateway/models/api_validation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/api_validation_result.py b/src/oci/apigateway/models/api_validation_result.py index d3173080c1..9c76e1bf0d 100644 --- a/src/oci/apigateway/models/api_validation_result.py +++ b/src/oci/apigateway/models/api_validation_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/api_validations.py b/src/oci/apigateway/models/api_validations.py index 5e11647c29..87f4771a43 100644 --- a/src/oci/apigateway/models/api_validations.py +++ b/src/oci/apigateway/models/api_validations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 22f0146aba..bceec7bf17 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .route_authorization_policy import RouteAuthorizationPolicy diff --git a/src/oci/apigateway/models/authentication_policy.py b/src/oci/apigateway/models/authentication_policy.py index 058cc4e2bd..6d79229630 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/body_validation_request_policy.py b/src/oci/apigateway/models/body_validation_request_policy.py index 6473d103eb..a2280301a1 100644 --- a/src/oci/apigateway/models/body_validation_request_policy.py +++ b/src/oci/apigateway/models/body_validation_request_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/ca_bundle.py b/src/oci/apigateway/models/ca_bundle.py index 7ac80f9b01..3bf3ba9bb8 100644 --- a/src/oci/apigateway/models/ca_bundle.py +++ b/src/oci/apigateway/models/ca_bundle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/certificate.py b/src/oci/apigateway/models/certificate.py index f7f6762de8..3d88700ddd 100644 --- a/src/oci/apigateway/models/certificate.py +++ b/src/oci/apigateway/models/certificate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/certificate_collection.py b/src/oci/apigateway/models/certificate_collection.py index 72be940832..6e6036df70 100644 --- a/src/oci/apigateway/models/certificate_collection.py +++ b/src/oci/apigateway/models/certificate_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/certificate_summary.py b/src/oci/apigateway/models/certificate_summary.py index f0696b0885..58f6139b6b 100644 --- a/src/oci/apigateway/models/certificate_summary.py +++ b/src/oci/apigateway/models/certificate_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/certificates_ca_bundle.py b/src/oci/apigateway/models/certificates_ca_bundle.py index cca8edbe31..e53aa57443 100644 --- a/src/oci/apigateway/models/certificates_ca_bundle.py +++ b/src/oci/apigateway/models/certificates_ca_bundle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .ca_bundle import CaBundle diff --git a/src/oci/apigateway/models/certificates_certificate_authority.py b/src/oci/apigateway/models/certificates_certificate_authority.py index 7d7133d2c0..01248108de 100644 --- a/src/oci/apigateway/models/certificates_certificate_authority.py +++ b/src/oci/apigateway/models/certificates_certificate_authority.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .ca_bundle import CaBundle diff --git a/src/oci/apigateway/models/change_api_compartment_details.py b/src/oci/apigateway/models/change_api_compartment_details.py index 41380f899b..bdabd5d08e 100644 --- a/src/oci/apigateway/models/change_api_compartment_details.py +++ b/src/oci/apigateway/models/change_api_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/change_certificate_compartment_details.py b/src/oci/apigateway/models/change_certificate_compartment_details.py index 149938dce2..6bfee9bade 100644 --- a/src/oci/apigateway/models/change_certificate_compartment_details.py +++ b/src/oci/apigateway/models/change_certificate_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/change_deployment_compartment_details.py b/src/oci/apigateway/models/change_deployment_compartment_details.py index 8b28c7236e..071014f03d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/change_gateway_compartment_details.py b/src/oci/apigateway/models/change_gateway_compartment_details.py index a904fff446..57851f8fd1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/content_validation.py b/src/oci/apigateway/models/content_validation.py index 46f9843eb1..3425a70606 100644 --- a/src/oci/apigateway/models/content_validation.py +++ b/src/oci/apigateway/models/content_validation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/cors_policy.py b/src/oci/apigateway/models/cors_policy.py index b6420d7ebc..3045ffdd0c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/create_api_details.py b/src/oci/apigateway/models/create_api_details.py index 284a5346d4..f9f552d97f 100644 --- a/src/oci/apigateway/models/create_api_details.py +++ b/src/oci/apigateway/models/create_api_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/create_certificate_details.py b/src/oci/apigateway/models/create_certificate_details.py index d1d3b3fe23..a672608831 100644 --- a/src/oci/apigateway/models/create_certificate_details.py +++ b/src/oci/apigateway/models/create_certificate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/create_deployment_details.py b/src/oci/apigateway/models/create_deployment_details.py index f9996e6650..85afffb46e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/create_gateway_details.py b/src/oci/apigateway/models/create_gateway_details.py index c060d8ef09..55be2692ef 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/create_sdk_details.py b/src/oci/apigateway/models/create_sdk_details.py index 81acab0bf6..9ff65be2a1 100644 --- a/src/oci/apigateway/models/create_sdk_details.py +++ b/src/oci/apigateway/models/create_sdk_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/custom_authentication_policy.py b/src/oci/apigateway/models/custom_authentication_policy.py index 94167c9ce1..d85df4d1f5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .authentication_policy import AuthenticationPolicy diff --git a/src/oci/apigateway/models/deployment.py b/src/oci/apigateway/models/deployment.py index 8e853de71e..2e0eec1024 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/deployment_collection.py b/src/oci/apigateway/models/deployment_collection.py index 1bee965839..f7d3e1e270 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/deployment_summary.py b/src/oci/apigateway/models/deployment_summary.py index 37ddeadba0..06fcff049e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/execution_log_policy.py b/src/oci/apigateway/models/execution_log_policy.py index aca3ab6f85..dcde2d92c4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/external_resp_cache.py b/src/oci/apigateway/models/external_resp_cache.py index f383c845f3..8872544941 100644 --- a/src/oci/apigateway/models/external_resp_cache.py +++ b/src/oci/apigateway/models/external_resp_cache.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .response_cache_details import ResponseCacheDetails diff --git a/src/oci/apigateway/models/filter_header_policy.py b/src/oci/apigateway/models/filter_header_policy.py index de2678663f..e05b7a2ca9 100644 --- a/src/oci/apigateway/models/filter_header_policy.py +++ b/src/oci/apigateway/models/filter_header_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/filter_header_policy_item.py b/src/oci/apigateway/models/filter_header_policy_item.py index a7fdd619e8..24c0853b22 100644 --- a/src/oci/apigateway/models/filter_header_policy_item.py +++ b/src/oci/apigateway/models/filter_header_policy_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/filter_query_parameter_policy.py b/src/oci/apigateway/models/filter_query_parameter_policy.py index 44358fac6e..b74e236d91 100644 --- a/src/oci/apigateway/models/filter_query_parameter_policy.py +++ b/src/oci/apigateway/models/filter_query_parameter_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/filter_query_parameter_policy_item.py b/src/oci/apigateway/models/filter_query_parameter_policy_item.py index e01f3374a5..50efd8c36d 100644 --- a/src/oci/apigateway/models/filter_query_parameter_policy_item.py +++ b/src/oci/apigateway/models/filter_query_parameter_policy_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/fixed_ttl_response_cache_store_policy.py b/src/oci/apigateway/models/fixed_ttl_response_cache_store_policy.py index 01f308e94d..4f04ffa3e9 100644 --- a/src/oci/apigateway/models/fixed_ttl_response_cache_store_policy.py +++ b/src/oci/apigateway/models/fixed_ttl_response_cache_store_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .response_cache_store_policy import ResponseCacheStorePolicy diff --git a/src/oci/apigateway/models/gateway.py b/src/oci/apigateway/models/gateway.py index c8f4474d5b..ac5c005845 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/gateway_collection.py b/src/oci/apigateway/models/gateway_collection.py index e66a109ab6..367923d767 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/gateway_summary.py b/src/oci/apigateway/models/gateway_summary.py index 8b0ab232f1..62430f2961 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/header_field_specification.py b/src/oci/apigateway/models/header_field_specification.py index 76824e5660..6f1259e165 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/header_transformation_policy.py b/src/oci/apigateway/models/header_transformation_policy.py index ba6705d2a9..faa2e45458 100644 --- a/src/oci/apigateway/models/header_transformation_policy.py +++ b/src/oci/apigateway/models/header_transformation_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/header_validation_item.py b/src/oci/apigateway/models/header_validation_item.py index 04cc840224..4587b28647 100644 --- a/src/oci/apigateway/models/header_validation_item.py +++ b/src/oci/apigateway/models/header_validation_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/header_validation_request_policy.py b/src/oci/apigateway/models/header_validation_request_policy.py index 1c30ccfd8f..250155cbc1 100644 --- a/src/oci/apigateway/models/header_validation_request_policy.py +++ b/src/oci/apigateway/models/header_validation_request_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/http_backend.py b/src/oci/apigateway/models/http_backend.py index 869a5838a1..7ec80db1ec 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .api_specification_route_backend import ApiSpecificationRouteBackend diff --git a/src/oci/apigateway/models/ip_address.py b/src/oci/apigateway/models/ip_address.py index 6284924fa8..c3a962dcdd 100644 --- a/src/oci/apigateway/models/ip_address.py +++ b/src/oci/apigateway/models/ip_address.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/json_web_key.py b/src/oci/apigateway/models/json_web_key.py index 0f2ec54cea..e8d1d32f46 100644 --- a/src/oci/apigateway/models/json_web_key.py +++ b/src/oci/apigateway/models/json_web_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .static_public_key import StaticPublicKey diff --git a/src/oci/apigateway/models/json_web_token_claim.py b/src/oci/apigateway/models/json_web_token_claim.py index c28af7684e..1f694aff32 100644 --- a/src/oci/apigateway/models/json_web_token_claim.py +++ b/src/oci/apigateway/models/json_web_token_claim.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/jwt_authentication_policy.py b/src/oci/apigateway/models/jwt_authentication_policy.py index ad58962295..c7a44b4730 100644 --- a/src/oci/apigateway/models/jwt_authentication_policy.py +++ b/src/oci/apigateway/models/jwt_authentication_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .authentication_policy import AuthenticationPolicy diff --git a/src/oci/apigateway/models/mutual_tls_details.py b/src/oci/apigateway/models/mutual_tls_details.py index f3b3015aa8..1832d6f99f 100644 --- a/src/oci/apigateway/models/mutual_tls_details.py +++ b/src/oci/apigateway/models/mutual_tls_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/no_cache.py b/src/oci/apigateway/models/no_cache.py index 938c50f4d4..81cff7a353 100644 --- a/src/oci/apigateway/models/no_cache.py +++ b/src/oci/apigateway/models/no_cache.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .response_cache_details import ResponseCacheDetails diff --git a/src/oci/apigateway/models/no_content_validation.py b/src/oci/apigateway/models/no_content_validation.py index 60fc99a286..d477dc58fc 100644 --- a/src/oci/apigateway/models/no_content_validation.py +++ b/src/oci/apigateway/models/no_content_validation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .content_validation import ContentValidation diff --git a/src/oci/apigateway/models/oracle_function_backend.py b/src/oci/apigateway/models/oracle_function_backend.py index c01298ebaf..8ef12476d0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .api_specification_route_backend import ApiSpecificationRouteBackend diff --git a/src/oci/apigateway/models/pem_encoded_public_key.py b/src/oci/apigateway/models/pem_encoded_public_key.py index 2e0c9c9dff..f16e663433 100644 --- a/src/oci/apigateway/models/pem_encoded_public_key.py +++ b/src/oci/apigateway/models/pem_encoded_public_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .static_public_key import StaticPublicKey diff --git a/src/oci/apigateway/models/public_key_set.py b/src/oci/apigateway/models/public_key_set.py index b0ce29dbd2..55af3c830f 100644 --- a/src/oci/apigateway/models/public_key_set.py +++ b/src/oci/apigateway/models/public_key_set.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/query_parameter_transformation_policy.py b/src/oci/apigateway/models/query_parameter_transformation_policy.py index 318cea4120..07554acc47 100644 --- a/src/oci/apigateway/models/query_parameter_transformation_policy.py +++ b/src/oci/apigateway/models/query_parameter_transformation_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/query_parameter_validation_item.py b/src/oci/apigateway/models/query_parameter_validation_item.py index cd8cdbe725..d5311db210 100644 --- a/src/oci/apigateway/models/query_parameter_validation_item.py +++ b/src/oci/apigateway/models/query_parameter_validation_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/query_parameter_validation_request_policy.py b/src/oci/apigateway/models/query_parameter_validation_request_policy.py index bee6f5a310..978d15cbfb 100644 --- a/src/oci/apigateway/models/query_parameter_validation_request_policy.py +++ b/src/oci/apigateway/models/query_parameter_validation_request_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/rate_limiting_policy.py b/src/oci/apigateway/models/rate_limiting_policy.py index e74aea9890..dd2800a302 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/remote_json_web_key_set.py b/src/oci/apigateway/models/remote_json_web_key_set.py index 9c14834c78..db1b691901 100644 --- a/src/oci/apigateway/models/remote_json_web_key_set.py +++ b/src/oci/apigateway/models/remote_json_web_key_set.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .public_key_set import PublicKeySet diff --git a/src/oci/apigateway/models/rename_header_policy.py b/src/oci/apigateway/models/rename_header_policy.py index cd5ab3a59b..79cd2f6a4c 100644 --- a/src/oci/apigateway/models/rename_header_policy.py +++ b/src/oci/apigateway/models/rename_header_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/rename_header_policy_item.py b/src/oci/apigateway/models/rename_header_policy_item.py index 46e8c29222..ede4c10b05 100644 --- a/src/oci/apigateway/models/rename_header_policy_item.py +++ b/src/oci/apigateway/models/rename_header_policy_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/rename_query_parameter_policy.py b/src/oci/apigateway/models/rename_query_parameter_policy.py index 4e570d2449..81531d6b56 100644 --- a/src/oci/apigateway/models/rename_query_parameter_policy.py +++ b/src/oci/apigateway/models/rename_query_parameter_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/rename_query_parameter_policy_item.py b/src/oci/apigateway/models/rename_query_parameter_policy_item.py index 8f186a7296..b0d6d961ac 100644 --- a/src/oci/apigateway/models/rename_query_parameter_policy_item.py +++ b/src/oci/apigateway/models/rename_query_parameter_policy_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/request_parameter_validation.py b/src/oci/apigateway/models/request_parameter_validation.py index 8875406c7e..b42a705d10 100644 --- a/src/oci/apigateway/models/request_parameter_validation.py +++ b/src/oci/apigateway/models/request_parameter_validation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/response_cache_details.py b/src/oci/apigateway/models/response_cache_details.py index b7d21f07c4..0378b894bd 100644 --- a/src/oci/apigateway/models/response_cache_details.py +++ b/src/oci/apigateway/models/response_cache_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/response_cache_lookup_policy.py b/src/oci/apigateway/models/response_cache_lookup_policy.py index 486ff1df72..4052f70142 100644 --- a/src/oci/apigateway/models/response_cache_lookup_policy.py +++ b/src/oci/apigateway/models/response_cache_lookup_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/response_cache_resp_server.py b/src/oci/apigateway/models/response_cache_resp_server.py index d3f544bc6c..8272d08c9e 100644 --- a/src/oci/apigateway/models/response_cache_resp_server.py +++ b/src/oci/apigateway/models/response_cache_resp_server.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/response_cache_store_policy.py b/src/oci/apigateway/models/response_cache_store_policy.py index 7fb0e73eff..4b0e48b93e 100644 --- a/src/oci/apigateway/models/response_cache_store_policy.py +++ b/src/oci/apigateway/models/response_cache_store_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/route_authorization_policy.py b/src/oci/apigateway/models/route_authorization_policy.py index cf42cad4f0..1c0e015ed6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/sdk.py b/src/oci/apigateway/models/sdk.py index 46ac30eb09..c4d50af925 100644 --- a/src/oci/apigateway/models/sdk.py +++ b/src/oci/apigateway/models/sdk.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/sdk_collection.py b/src/oci/apigateway/models/sdk_collection.py index 2f935435b5..4bbe0f1894 100644 --- a/src/oci/apigateway/models/sdk_collection.py +++ b/src/oci/apigateway/models/sdk_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/sdk_language_optional_parameters.py b/src/oci/apigateway/models/sdk_language_optional_parameters.py index 1c882b7551..49b7828020 100644 --- a/src/oci/apigateway/models/sdk_language_optional_parameters.py +++ b/src/oci/apigateway/models/sdk_language_optional_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/sdk_language_optional_parameters_allowed_value.py b/src/oci/apigateway/models/sdk_language_optional_parameters_allowed_value.py index 9ea0c82da9..ae13ae2e7c 100644 --- a/src/oci/apigateway/models/sdk_language_optional_parameters_allowed_value.py +++ b/src/oci/apigateway/models/sdk_language_optional_parameters_allowed_value.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/sdk_language_type_collection.py b/src/oci/apigateway/models/sdk_language_type_collection.py index 5b809d791a..31b79d7986 100644 --- a/src/oci/apigateway/models/sdk_language_type_collection.py +++ b/src/oci/apigateway/models/sdk_language_type_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/sdk_language_type_summary.py b/src/oci/apigateway/models/sdk_language_type_summary.py index aea0554c81..377c6b21ea 100644 --- a/src/oci/apigateway/models/sdk_language_type_summary.py +++ b/src/oci/apigateway/models/sdk_language_type_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/sdk_language_types.py b/src/oci/apigateway/models/sdk_language_types.py index 495ae54c59..bc69440b33 100644 --- a/src/oci/apigateway/models/sdk_language_types.py +++ b/src/oci/apigateway/models/sdk_language_types.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/sdk_summary.py b/src/oci/apigateway/models/sdk_summary.py index b5e3f2b1db..17d8b6ec5d 100644 --- a/src/oci/apigateway/models/sdk_summary.py +++ b/src/oci/apigateway/models/sdk_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/set_header_policy.py b/src/oci/apigateway/models/set_header_policy.py index 613a4a6cb9..f07394f414 100644 --- a/src/oci/apigateway/models/set_header_policy.py +++ b/src/oci/apigateway/models/set_header_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/set_header_policy_item.py b/src/oci/apigateway/models/set_header_policy_item.py index cb52c0b9f6..3904f17199 100644 --- a/src/oci/apigateway/models/set_header_policy_item.py +++ b/src/oci/apigateway/models/set_header_policy_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/set_query_parameter_policy.py b/src/oci/apigateway/models/set_query_parameter_policy.py index ecb7c355b2..9281e4a00a 100644 --- a/src/oci/apigateway/models/set_query_parameter_policy.py +++ b/src/oci/apigateway/models/set_query_parameter_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/set_query_parameter_policy_item.py b/src/oci/apigateway/models/set_query_parameter_policy_item.py index 7290e878b6..8a7efe6fec 100644 --- a/src/oci/apigateway/models/set_query_parameter_policy_item.py +++ b/src/oci/apigateway/models/set_query_parameter_policy_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/simple_lookup_policy.py b/src/oci/apigateway/models/simple_lookup_policy.py index 1cdb41ad91..0a6c20a502 100644 --- a/src/oci/apigateway/models/simple_lookup_policy.py +++ b/src/oci/apigateway/models/simple_lookup_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .response_cache_lookup_policy import ResponseCacheLookupPolicy diff --git a/src/oci/apigateway/models/static_public_key.py b/src/oci/apigateway/models/static_public_key.py index 248dc7327c..eb9aafe8bd 100644 --- a/src/oci/apigateway/models/static_public_key.py +++ b/src/oci/apigateway/models/static_public_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/static_public_key_set.py b/src/oci/apigateway/models/static_public_key_set.py index 63bb90fe18..f34479fe4f 100644 --- a/src/oci/apigateway/models/static_public_key_set.py +++ b/src/oci/apigateway/models/static_public_key_set.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .public_key_set import PublicKeySet diff --git a/src/oci/apigateway/models/stock_response_backend.py b/src/oci/apigateway/models/stock_response_backend.py index d18c40041c..d4c33f811e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .api_specification_route_backend import ApiSpecificationRouteBackend diff --git a/src/oci/apigateway/models/update_api_details.py b/src/oci/apigateway/models/update_api_details.py index 797c83e621..e70e58caff 100644 --- a/src/oci/apigateway/models/update_api_details.py +++ b/src/oci/apigateway/models/update_api_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/update_certificate_details.py b/src/oci/apigateway/models/update_certificate_details.py index 1717513bc2..bf6098b3c2 100644 --- a/src/oci/apigateway/models/update_certificate_details.py +++ b/src/oci/apigateway/models/update_certificate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/update_deployment_details.py b/src/oci/apigateway/models/update_deployment_details.py index fb5d6da0b9..f4592495ac 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/update_gateway_details.py b/src/oci/apigateway/models/update_gateway_details.py index fa992bdab4..216b03c072 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/update_sdk_details.py b/src/oci/apigateway/models/update_sdk_details.py index 9951351897..3887fc13a5 100644 --- a/src/oci/apigateway/models/update_sdk_details.py +++ b/src/oci/apigateway/models/update_sdk_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/validation_request_policy.py b/src/oci/apigateway/models/validation_request_policy.py index 021fbe21ee..58234a4cf0 100644 --- a/src/oci/apigateway/models/validation_request_policy.py +++ b/src/oci/apigateway/models/validation_request_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/work_request.py b/src/oci/apigateway/models/work_request.py index 7ac9a94ecb..bb70c3b2c5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/work_request_collection.py b/src/oci/apigateway/models/work_request_collection.py index b7d635c0d8..dc51269fd4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/work_request_error.py b/src/oci/apigateway/models/work_request_error.py index dae56ed9ea..e95a075b37 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/work_request_error_collection.py b/src/oci/apigateway/models/work_request_error_collection.py index 3ded3a6e04..5c8d499b74 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/work_request_log.py b/src/oci/apigateway/models/work_request_log.py index 99e5282381..4a590bf9dd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/work_request_log_collection.py b/src/oci/apigateway/models/work_request_log_collection.py index 2ecc3a749a..8165ba7063 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/work_request_resource.py b/src/oci/apigateway/models/work_request_resource.py index 92386dac20..8f78b12ed4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/models/work_request_summary.py b/src/oci/apigateway/models/work_request_summary.py index 6a66b588b6..fabce15f9c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apigateway/work_requests_client.py b/src/oci/apigateway/work_requests_client.py index 56828840c3..75f069f85a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -66,6 +66,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -96,6 +100,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("work_requests", config, signer, apigateway_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -133,6 +139,10 @@ def cancel_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -144,6 +154,7 @@ def cancel_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -215,6 +226,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -226,6 +241,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -313,6 +329,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -324,6 +344,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -439,6 +460,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.WorkRequestLogCollection` :rtype: :class:`~oci.response.Response` @@ -450,6 +475,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -568,6 +594,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apigateway.models.WorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -579,6 +609,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "resource_id", "opc_request_id", diff --git a/src/oci/apigateway/work_requests_client_composite_operations.py b/src/oci/apigateway/work_requests_client_composite_operations.py index 0b4490a5a9..8ba8a7d630 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/apm_config/__init__.py b/src/oci/apm_config/__init__.py index 6b925b1b00..3c7ea256ba 100644 --- a/src/oci/apm_config/__init__.py +++ b/src/oci/apm_config/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/apm_config/config_client.py b/src/oci/apm_config/config_client.py index 77196acdb4..5c8d9ef540 100644 --- a/src/oci/apm_config/config_client.py +++ b/src/oci/apm_config/config_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("config", config, signer, apm_config_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -132,6 +138,10 @@ def create_config(self, apm_domain_id, create_config_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_config.models.Config` :rtype: :class:`~oci.response.Response` @@ -143,6 +153,7 @@ def create_config(self, apm_domain_id, create_config_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -224,6 +235,10 @@ def delete_config(self, apm_domain_id, config_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -235,6 +250,7 @@ def delete_config(self, apm_domain_id, config_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -314,6 +330,10 @@ def get_config(self, apm_domain_id, config_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_config.models.Config` :rtype: :class:`~oci.response.Response` @@ -325,6 +345,7 @@ def get_config(self, apm_domain_id, config_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -432,6 +453,10 @@ def list_configs(self, apm_domain_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_config.models.ConfigCollection` :rtype: :class:`~oci.response.Response` @@ -443,6 +468,7 @@ def list_configs(self, apm_domain_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "config_type", @@ -550,6 +576,10 @@ def update_config(self, apm_domain_id, config_id, update_config_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_config.models.Config` :rtype: :class:`~oci.response.Response` @@ -561,6 +591,7 @@ def update_config(self, apm_domain_id, config_id, update_config_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", diff --git a/src/oci/apm_config/config_client_composite_operations.py b/src/oci/apm_config/config_client_composite_operations.py index d71d99a511..c6cbfceca7 100644 --- a/src/oci/apm_config/config_client_composite_operations.py +++ b/src/oci/apm_config/config_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/apm_config/models/__init__.py b/src/oci/apm_config/models/__init__.py index 3fb384a5cd..9ca500811f 100644 --- a/src/oci/apm_config/models/__init__.py +++ b/src/oci/apm_config/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/apm_config/models/apdex.py b/src/oci/apm_config/models/apdex.py index 6d35b8fd3d..7f37b698c4 100644 --- a/src/oci/apm_config/models/apdex.py +++ b/src/oci/apm_config/models/apdex.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_config/models/apdex_rules.py b/src/oci/apm_config/models/apdex_rules.py index 126ae55314..4a5e4cf2ef 100644 --- a/src/oci/apm_config/models/apdex_rules.py +++ b/src/oci/apm_config/models/apdex_rules.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .config import Config diff --git a/src/oci/apm_config/models/apdex_rules_summary.py b/src/oci/apm_config/models/apdex_rules_summary.py index a1bffbdbda..6234e15061 100644 --- a/src/oci/apm_config/models/apdex_rules_summary.py +++ b/src/oci/apm_config/models/apdex_rules_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .config_summary import ConfigSummary diff --git a/src/oci/apm_config/models/config.py b/src/oci/apm_config/models/config.py index ab06b3acbf..27e057e955 100644 --- a/src/oci/apm_config/models/config.py +++ b/src/oci/apm_config/models/config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_config/models/config_collection.py b/src/oci/apm_config/models/config_collection.py index 77365a0386..47a6139b28 100644 --- a/src/oci/apm_config/models/config_collection.py +++ b/src/oci/apm_config/models/config_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_config/models/config_summary.py b/src/oci/apm_config/models/config_summary.py index d0fa649a1a..10497e606d 100644 --- a/src/oci/apm_config/models/config_summary.py +++ b/src/oci/apm_config/models/config_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_config/models/create_apdex_rules_details.py b/src/oci/apm_config/models/create_apdex_rules_details.py index e75429c459..24aed2e9b3 100644 --- a/src/oci/apm_config/models/create_apdex_rules_details.py +++ b/src/oci/apm_config/models/create_apdex_rules_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_config_details import CreateConfigDetails diff --git a/src/oci/apm_config/models/create_config_details.py b/src/oci/apm_config/models/create_config_details.py index fc5073e684..ec45360218 100644 --- a/src/oci/apm_config/models/create_config_details.py +++ b/src/oci/apm_config/models/create_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_config/models/create_metric_group_details.py b/src/oci/apm_config/models/create_metric_group_details.py index 62849887dd..804b5a674c 100644 --- a/src/oci/apm_config/models/create_metric_group_details.py +++ b/src/oci/apm_config/models/create_metric_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_config_details import CreateConfigDetails diff --git a/src/oci/apm_config/models/create_span_filter_details.py b/src/oci/apm_config/models/create_span_filter_details.py index ffcb14d4ef..7ac96ae956 100644 --- a/src/oci/apm_config/models/create_span_filter_details.py +++ b/src/oci/apm_config/models/create_span_filter_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_config_details import CreateConfigDetails diff --git a/src/oci/apm_config/models/dimension.py b/src/oci/apm_config/models/dimension.py index bac8cfe5dd..45f317b946 100644 --- a/src/oci/apm_config/models/dimension.py +++ b/src/oci/apm_config/models/dimension.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_config/models/metric.py b/src/oci/apm_config/models/metric.py index e0647c2df0..79cedcf246 100644 --- a/src/oci/apm_config/models/metric.py +++ b/src/oci/apm_config/models/metric.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_config/models/metric_group.py b/src/oci/apm_config/models/metric_group.py index bb6f1f98e9..b63d2984b5 100644 --- a/src/oci/apm_config/models/metric_group.py +++ b/src/oci/apm_config/models/metric_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .config import Config diff --git a/src/oci/apm_config/models/metric_group_summary.py b/src/oci/apm_config/models/metric_group_summary.py index f8016680f8..5864a04aef 100644 --- a/src/oci/apm_config/models/metric_group_summary.py +++ b/src/oci/apm_config/models/metric_group_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .config_summary import ConfigSummary diff --git a/src/oci/apm_config/models/span_filter.py b/src/oci/apm_config/models/span_filter.py index a7d950f827..b06100d5d6 100644 --- a/src/oci/apm_config/models/span_filter.py +++ b/src/oci/apm_config/models/span_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .config import Config diff --git a/src/oci/apm_config/models/span_filter_summary.py b/src/oci/apm_config/models/span_filter_summary.py index 4a2b5eb26d..97b7d5cf89 100644 --- a/src/oci/apm_config/models/span_filter_summary.py +++ b/src/oci/apm_config/models/span_filter_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .config_summary import ConfigSummary diff --git a/src/oci/apm_config/models/update_apdex_rules_details.py b/src/oci/apm_config/models/update_apdex_rules_details.py index 0957c136a9..f1df26cc5c 100644 --- a/src/oci/apm_config/models/update_apdex_rules_details.py +++ b/src/oci/apm_config/models/update_apdex_rules_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_config_details import UpdateConfigDetails diff --git a/src/oci/apm_config/models/update_config_details.py b/src/oci/apm_config/models/update_config_details.py index e0d478f6f8..20ce6d8b3d 100644 --- a/src/oci/apm_config/models/update_config_details.py +++ b/src/oci/apm_config/models/update_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_config/models/update_metric_group_details.py b/src/oci/apm_config/models/update_metric_group_details.py index 9bb9dac1a6..664f3d3d74 100644 --- a/src/oci/apm_config/models/update_metric_group_details.py +++ b/src/oci/apm_config/models/update_metric_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_config_details import UpdateConfigDetails diff --git a/src/oci/apm_config/models/update_span_filter_details.py b/src/oci/apm_config/models/update_span_filter_details.py index 1ff321e2db..d776681e7d 100644 --- a/src/oci/apm_config/models/update_span_filter_details.py +++ b/src/oci/apm_config/models/update_span_filter_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_config_details import UpdateConfigDetails diff --git a/src/oci/apm_control_plane/__init__.py b/src/oci/apm_control_plane/__init__.py index f41c11e8ff..07ecac5520 100644 --- a/src/oci/apm_control_plane/__init__.py +++ b/src/oci/apm_control_plane/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/apm_control_plane/apm_domain_client.py b/src/oci/apm_control_plane/apm_domain_client.py index fa93f8ec7a..ebf92f52fb 100644 --- a/src/oci/apm_control_plane/apm_domain_client.py +++ b/src/oci/apm_control_plane/apm_domain_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("apm_domain", config, signer, apm_control_plane_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -134,6 +140,10 @@ def change_apm_domain_compartment(self, apm_domain_id, change_apm_domain_compart To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -145,6 +155,7 @@ def change_apm_domain_compartment(self, apm_domain_id, change_apm_domain_compart # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -225,6 +236,10 @@ def create_apm_domain(self, create_apm_domain_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -236,6 +251,7 @@ def create_apm_domain(self, create_apm_domain_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -303,6 +319,10 @@ def delete_apm_domain(self, apm_domain_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -314,6 +334,7 @@ def delete_apm_domain(self, apm_domain_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -392,6 +413,10 @@ def generate_data_keys(self, generate_data_keys_list_details, apm_domain_id, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -403,6 +428,7 @@ def generate_data_keys(self, generate_data_keys_list_details, apm_domain_id, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -473,6 +499,10 @@ def get_apm_domain(self, apm_domain_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_control_plane.models.ApmDomain` :rtype: :class:`~oci.response.Response` @@ -484,6 +514,7 @@ def get_apm_domain(self, apm_domain_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -552,6 +583,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_control_plane.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -563,6 +598,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -637,6 +673,10 @@ def list_apm_domain_work_requests(self, apm_domain_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.apm_control_plane.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -648,6 +688,7 @@ def list_apm_domain_work_requests(self, apm_domain_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -750,6 +791,10 @@ def list_apm_domains(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.apm_control_plane.models.ApmDomainSummary` :rtype: :class:`~oci.response.Response` @@ -761,6 +806,7 @@ def list_apm_domains(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "lifecycle_state", @@ -863,6 +909,10 @@ def list_data_keys(self, apm_domain_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.apm_control_plane.models.DataKeySummary` :rtype: :class:`~oci.response.Response` @@ -874,6 +924,7 @@ def list_data_keys(self, apm_domain_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "data_key_type", "opc_request_id" @@ -963,6 +1014,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.apm_control_plane.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -974,6 +1029,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1058,6 +1114,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.apm_control_plane.models.WorkRequestLogEntry` :rtype: :class:`~oci.response.Response` @@ -1069,6 +1129,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1153,6 +1214,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.apm_control_plane.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -1164,6 +1229,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1241,6 +1307,10 @@ def remove_data_keys(self, apm_domain_id, remove_data_keys_list_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1252,6 +1322,7 @@ def remove_data_keys(self, apm_domain_id, remove_data_keys_list_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1331,6 +1402,10 @@ def update_apm_domain(self, apm_domain_id, update_apm_domain_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1342,6 +1417,7 @@ def update_apm_domain(self, apm_domain_id, update_apm_domain_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/apm_control_plane/apm_domain_client_composite_operations.py b/src/oci/apm_control_plane/apm_domain_client_composite_operations.py index c8b3067994..76d7412f8b 100644 --- a/src/oci/apm_control_plane/apm_domain_client_composite_operations.py +++ b/src/oci/apm_control_plane/apm_domain_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/apm_control_plane/models/__init__.py b/src/oci/apm_control_plane/models/__init__.py index add607a1cd..3c07f84926 100644 --- a/src/oci/apm_control_plane/models/__init__.py +++ b/src/oci/apm_control_plane/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/apm_control_plane/models/apm_domain.py b/src/oci/apm_control_plane/models/apm_domain.py index b0c3af7414..0e0bcf4dca 100644 --- a/src/oci/apm_control_plane/models/apm_domain.py +++ b/src/oci/apm_control_plane/models/apm_domain.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_control_plane/models/apm_domain_summary.py b/src/oci/apm_control_plane/models/apm_domain_summary.py index 3eec3039ff..2aa567155f 100644 --- a/src/oci/apm_control_plane/models/apm_domain_summary.py +++ b/src/oci/apm_control_plane/models/apm_domain_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_control_plane/models/base_domain_details.py b/src/oci/apm_control_plane/models/base_domain_details.py index f97e121e4b..247b92b997 100644 --- a/src/oci/apm_control_plane/models/base_domain_details.py +++ b/src/oci/apm_control_plane/models/base_domain_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_control_plane/models/base_key_details.py b/src/oci/apm_control_plane/models/base_key_details.py index ad1890dfd9..4b08c193dd 100644 --- a/src/oci/apm_control_plane/models/base_key_details.py +++ b/src/oci/apm_control_plane/models/base_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_control_plane/models/change_apm_domain_compartment_details.py b/src/oci/apm_control_plane/models/change_apm_domain_compartment_details.py index 8870b98e04..5690f94cb6 100644 --- a/src/oci/apm_control_plane/models/change_apm_domain_compartment_details.py +++ b/src/oci/apm_control_plane/models/change_apm_domain_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_control_plane/models/create_apm_domain_details.py b/src/oci/apm_control_plane/models/create_apm_domain_details.py index 8d1ec51016..a382281d80 100644 --- a/src/oci/apm_control_plane/models/create_apm_domain_details.py +++ b/src/oci/apm_control_plane/models/create_apm_domain_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_control_plane/models/data_key.py b/src/oci/apm_control_plane/models/data_key.py index 04adb86f7d..baf9dbade5 100644 --- a/src/oci/apm_control_plane/models/data_key.py +++ b/src/oci/apm_control_plane/models/data_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_control_plane/models/data_key_summary.py b/src/oci/apm_control_plane/models/data_key_summary.py index 34c2ee644f..116612e835 100644 --- a/src/oci/apm_control_plane/models/data_key_summary.py +++ b/src/oci/apm_control_plane/models/data_key_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_control_plane/models/generate_data_key_details.py b/src/oci/apm_control_plane/models/generate_data_key_details.py index 21d7918cdb..a469527b32 100644 --- a/src/oci/apm_control_plane/models/generate_data_key_details.py +++ b/src/oci/apm_control_plane/models/generate_data_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_control_plane/models/remove_data_key_details.py b/src/oci/apm_control_plane/models/remove_data_key_details.py index 86de22bab0..46c6321508 100644 --- a/src/oci/apm_control_plane/models/remove_data_key_details.py +++ b/src/oci/apm_control_plane/models/remove_data_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_control_plane/models/update_apm_domain_details.py b/src/oci/apm_control_plane/models/update_apm_domain_details.py index 159db550ab..17b45496e9 100644 --- a/src/oci/apm_control_plane/models/update_apm_domain_details.py +++ b/src/oci/apm_control_plane/models/update_apm_domain_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_control_plane/models/work_request.py b/src/oci/apm_control_plane/models/work_request.py index 83b349ed3b..78b74ccd34 100644 --- a/src/oci/apm_control_plane/models/work_request.py +++ b/src/oci/apm_control_plane/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_control_plane/models/work_request_error.py b/src/oci/apm_control_plane/models/work_request_error.py index abfc24ba54..0251faceea 100644 --- a/src/oci/apm_control_plane/models/work_request_error.py +++ b/src/oci/apm_control_plane/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_control_plane/models/work_request_log_entry.py b/src/oci/apm_control_plane/models/work_request_log_entry.py index 5f3f17a1f8..5d039750dc 100644 --- a/src/oci/apm_control_plane/models/work_request_log_entry.py +++ b/src/oci/apm_control_plane/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_control_plane/models/work_request_resource.py b/src/oci/apm_control_plane/models/work_request_resource.py index 58d553cbf5..dfd20b0886 100644 --- a/src/oci/apm_control_plane/models/work_request_resource.py +++ b/src/oci/apm_control_plane/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/__init__.py b/src/oci/apm_synthetics/__init__.py index 743aaf6191..3162d0fad2 100644 --- a/src/oci/apm_synthetics/__init__.py +++ b/src/oci/apm_synthetics/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/apm_synthetics/apm_synthetic_client.py b/src/oci/apm_synthetics/apm_synthetic_client.py index 3a8d69d263..e8e7112dcb 100644 --- a/src/oci/apm_synthetics/apm_synthetic_client.py +++ b/src/oci/apm_synthetics/apm_synthetic_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("apm_synthetic", config, signer, apm_synthetics_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -128,6 +134,10 @@ def create_monitor(self, apm_domain_id, create_monitor_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_synthetics.models.Monitor` :rtype: :class:`~oci.response.Response` @@ -139,6 +149,7 @@ def create_monitor(self, apm_domain_id, create_monitor_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -218,6 +229,10 @@ def create_script(self, apm_domain_id, create_script_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_synthetics.models.Script` :rtype: :class:`~oci.response.Response` @@ -229,6 +244,7 @@ def create_script(self, apm_domain_id, create_script_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -308,6 +324,10 @@ def delete_monitor(self, apm_domain_id, monitor_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -319,6 +339,7 @@ def delete_monitor(self, apm_domain_id, monitor_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -405,6 +426,10 @@ def delete_script(self, apm_domain_id, script_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -416,6 +441,7 @@ def delete_script(self, apm_domain_id, script_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -495,6 +521,10 @@ def get_monitor(self, apm_domain_id, monitor_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_synthetics.models.Monitor` :rtype: :class:`~oci.response.Response` @@ -506,6 +536,7 @@ def get_monitor(self, apm_domain_id, monitor_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -597,6 +628,10 @@ def get_monitor_result(self, apm_domain_id, monitor_id, vantage_point, result_ty To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_synthetics.models.MonitorResult` :rtype: :class:`~oci.response.Response` @@ -608,6 +643,7 @@ def get_monitor_result(self, apm_domain_id, monitor_id, vantage_point, result_ty # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -691,6 +727,10 @@ def get_script(self, apm_domain_id, script_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_synthetics.models.Script` :rtype: :class:`~oci.response.Response` @@ -702,6 +742,7 @@ def get_script(self, apm_domain_id, script_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -818,6 +859,10 @@ def list_monitors(self, apm_domain_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_synthetics.models.MonitorCollection` :rtype: :class:`~oci.response.Response` @@ -829,6 +874,7 @@ def list_monitors(self, apm_domain_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "script_id", @@ -959,6 +1005,10 @@ def list_public_vantage_points(self, apm_domain_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_synthetics.models.PublicVantagePointCollection` :rtype: :class:`~oci.response.Response` @@ -970,6 +1020,7 @@ def list_public_vantage_points(self, apm_domain_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -1091,6 +1142,10 @@ def list_scripts(self, apm_domain_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_synthetics.models.ScriptCollection` :rtype: :class:`~oci.response.Response` @@ -1102,6 +1157,7 @@ def list_scripts(self, apm_domain_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "display_name", @@ -1205,6 +1261,10 @@ def update_monitor(self, apm_domain_id, monitor_id, update_monitor_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_synthetics.models.Monitor` :rtype: :class:`~oci.response.Response` @@ -1216,6 +1276,7 @@ def update_monitor(self, apm_domain_id, monitor_id, update_monitor_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1309,6 +1370,10 @@ def update_script(self, apm_domain_id, script_id, update_script_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_synthetics.models.Script` :rtype: :class:`~oci.response.Response` @@ -1320,6 +1385,7 @@ def update_script(self, apm_domain_id, script_id, update_script_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/apm_synthetics/apm_synthetic_client_composite_operations.py b/src/oci/apm_synthetics/apm_synthetic_client_composite_operations.py index 2f96da5740..d4d060278a 100644 --- a/src/oci/apm_synthetics/apm_synthetic_client_composite_operations.py +++ b/src/oci/apm_synthetics/apm_synthetic_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/apm_synthetics/models/__init__.py b/src/oci/apm_synthetics/models/__init__.py index f84ea0d5de..651bec81da 100644 --- a/src/oci/apm_synthetics/models/__init__.py +++ b/src/oci/apm_synthetics/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/apm_synthetics/models/browser_monitor_configuration.py b/src/oci/apm_synthetics/models/browser_monitor_configuration.py index 471da849d2..74d6c68c0f 100644 --- a/src/oci/apm_synthetics/models/browser_monitor_configuration.py +++ b/src/oci/apm_synthetics/models/browser_monitor_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .monitor_configuration import MonitorConfiguration diff --git a/src/oci/apm_synthetics/models/create_monitor_details.py b/src/oci/apm_synthetics/models/create_monitor_details.py index 1e85e98a2b..e842bd0599 100644 --- a/src/oci/apm_synthetics/models/create_monitor_details.py +++ b/src/oci/apm_synthetics/models/create_monitor_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/create_script_details.py b/src/oci/apm_synthetics/models/create_script_details.py index a752c84a01..732f311ef6 100644 --- a/src/oci/apm_synthetics/models/create_script_details.py +++ b/src/oci/apm_synthetics/models/create_script_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/geo_summary.py b/src/oci/apm_synthetics/models/geo_summary.py index 7cae6716c8..606cb9ee14 100644 --- a/src/oci/apm_synthetics/models/geo_summary.py +++ b/src/oci/apm_synthetics/models/geo_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/header.py b/src/oci/apm_synthetics/models/header.py index 944c6cb88e..14a54dca2d 100644 --- a/src/oci/apm_synthetics/models/header.py +++ b/src/oci/apm_synthetics/models/header.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/monitor.py b/src/oci/apm_synthetics/models/monitor.py index 65aaa0ae51..a8238675c5 100644 --- a/src/oci/apm_synthetics/models/monitor.py +++ b/src/oci/apm_synthetics/models/monitor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/monitor_collection.py b/src/oci/apm_synthetics/models/monitor_collection.py index f4bd873f07..4b6dba7307 100644 --- a/src/oci/apm_synthetics/models/monitor_collection.py +++ b/src/oci/apm_synthetics/models/monitor_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/monitor_configuration.py b/src/oci/apm_synthetics/models/monitor_configuration.py index 284f799080..f1ccdb4c21 100644 --- a/src/oci/apm_synthetics/models/monitor_configuration.py +++ b/src/oci/apm_synthetics/models/monitor_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/monitor_result.py b/src/oci/apm_synthetics/models/monitor_result.py index bfee8e6edb..128952e1e2 100644 --- a/src/oci/apm_synthetics/models/monitor_result.py +++ b/src/oci/apm_synthetics/models/monitor_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/monitor_result_data.py b/src/oci/apm_synthetics/models/monitor_result_data.py index 8226b56616..04c12089c1 100644 --- a/src/oci/apm_synthetics/models/monitor_result_data.py +++ b/src/oci/apm_synthetics/models/monitor_result_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/monitor_script_parameter.py b/src/oci/apm_synthetics/models/monitor_script_parameter.py index d63596c259..36e4510b81 100644 --- a/src/oci/apm_synthetics/models/monitor_script_parameter.py +++ b/src/oci/apm_synthetics/models/monitor_script_parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/monitor_script_parameter_info.py b/src/oci/apm_synthetics/models/monitor_script_parameter_info.py index 9ae59ced2c..61a128cc3f 100644 --- a/src/oci/apm_synthetics/models/monitor_script_parameter_info.py +++ b/src/oci/apm_synthetics/models/monitor_script_parameter_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/monitor_status_count_map.py b/src/oci/apm_synthetics/models/monitor_status_count_map.py index 6b10fb3c97..7baff4a4f4 100644 --- a/src/oci/apm_synthetics/models/monitor_status_count_map.py +++ b/src/oci/apm_synthetics/models/monitor_status_count_map.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/monitor_summary.py b/src/oci/apm_synthetics/models/monitor_summary.py index ae0d909458..30861710cb 100644 --- a/src/oci/apm_synthetics/models/monitor_summary.py +++ b/src/oci/apm_synthetics/models/monitor_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/network_configuration.py b/src/oci/apm_synthetics/models/network_configuration.py index 0f4ff067d8..e5f4787059 100644 --- a/src/oci/apm_synthetics/models/network_configuration.py +++ b/src/oci/apm_synthetics/models/network_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/public_vantage_point_collection.py b/src/oci/apm_synthetics/models/public_vantage_point_collection.py index 552f891e3a..191141abd0 100644 --- a/src/oci/apm_synthetics/models/public_vantage_point_collection.py +++ b/src/oci/apm_synthetics/models/public_vantage_point_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/public_vantage_point_summary.py b/src/oci/apm_synthetics/models/public_vantage_point_summary.py index d5a4cb1cda..9cdc8d6f34 100644 --- a/src/oci/apm_synthetics/models/public_vantage_point_summary.py +++ b/src/oci/apm_synthetics/models/public_vantage_point_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/request_authentication_details.py b/src/oci/apm_synthetics/models/request_authentication_details.py index 8803d3c428..3ca8348581 100644 --- a/src/oci/apm_synthetics/models/request_authentication_details.py +++ b/src/oci/apm_synthetics/models/request_authentication_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/request_query_param.py b/src/oci/apm_synthetics/models/request_query_param.py index de081b5a5f..2e357fa939 100644 --- a/src/oci/apm_synthetics/models/request_query_param.py +++ b/src/oci/apm_synthetics/models/request_query_param.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/rest_monitor_configuration.py b/src/oci/apm_synthetics/models/rest_monitor_configuration.py index ac6746ff7a..00658fa192 100644 --- a/src/oci/apm_synthetics/models/rest_monitor_configuration.py +++ b/src/oci/apm_synthetics/models/rest_monitor_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .monitor_configuration import MonitorConfiguration diff --git a/src/oci/apm_synthetics/models/script.py b/src/oci/apm_synthetics/models/script.py index 775564a660..ed7967fd73 100644 --- a/src/oci/apm_synthetics/models/script.py +++ b/src/oci/apm_synthetics/models/script.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/script_collection.py b/src/oci/apm_synthetics/models/script_collection.py index a7f8ad18b8..3c58f0985a 100644 --- a/src/oci/apm_synthetics/models/script_collection.py +++ b/src/oci/apm_synthetics/models/script_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/script_parameter.py b/src/oci/apm_synthetics/models/script_parameter.py index a6b7fd20ff..afa8d26d77 100644 --- a/src/oci/apm_synthetics/models/script_parameter.py +++ b/src/oci/apm_synthetics/models/script_parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/script_parameter_info.py b/src/oci/apm_synthetics/models/script_parameter_info.py index 24dd0b4db9..6efa465e6c 100644 --- a/src/oci/apm_synthetics/models/script_parameter_info.py +++ b/src/oci/apm_synthetics/models/script_parameter_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/script_summary.py b/src/oci/apm_synthetics/models/script_summary.py index e980deb16a..a62da95717 100644 --- a/src/oci/apm_synthetics/models/script_summary.py +++ b/src/oci/apm_synthetics/models/script_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/scripted_browser_monitor_configuration.py b/src/oci/apm_synthetics/models/scripted_browser_monitor_configuration.py index fb31645689..6368cbc470 100644 --- a/src/oci/apm_synthetics/models/scripted_browser_monitor_configuration.py +++ b/src/oci/apm_synthetics/models/scripted_browser_monitor_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .monitor_configuration import MonitorConfiguration diff --git a/src/oci/apm_synthetics/models/scripted_rest_monitor_configuration.py b/src/oci/apm_synthetics/models/scripted_rest_monitor_configuration.py index 98bd165104..a11a5bd169 100644 --- a/src/oci/apm_synthetics/models/scripted_rest_monitor_configuration.py +++ b/src/oci/apm_synthetics/models/scripted_rest_monitor_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .monitor_configuration import MonitorConfiguration diff --git a/src/oci/apm_synthetics/models/update_monitor_details.py b/src/oci/apm_synthetics/models/update_monitor_details.py index 4cbcb69526..9b22d279d4 100644 --- a/src/oci/apm_synthetics/models/update_monitor_details.py +++ b/src/oci/apm_synthetics/models/update_monitor_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/update_script_details.py b/src/oci/apm_synthetics/models/update_script_details.py index 802fb945c0..79528ac5eb 100644 --- a/src/oci/apm_synthetics/models/update_script_details.py +++ b/src/oci/apm_synthetics/models/update_script_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/vantage_point_info.py b/src/oci/apm_synthetics/models/vantage_point_info.py index 1d987fa4b6..ffca7135ee 100644 --- a/src/oci/apm_synthetics/models/vantage_point_info.py +++ b/src/oci/apm_synthetics/models/vantage_point_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_synthetics/models/verify_text.py b/src/oci/apm_synthetics/models/verify_text.py index fb2247e334..d6c94a245f 100644 --- a/src/oci/apm_synthetics/models/verify_text.py +++ b/src/oci/apm_synthetics/models/verify_text.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_traces/__init__.py b/src/oci/apm_traces/__init__.py index 596ec87c29..ebf0d9c79b 100644 --- a/src/oci/apm_traces/__init__.py +++ b/src/oci/apm_traces/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/apm_traces/models/__init__.py b/src/oci/apm_traces/models/__init__.py index 1636ff8084..29274cde2a 100644 --- a/src/oci/apm_traces/models/__init__.py +++ b/src/oci/apm_traces/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/apm_traces/models/query_details.py b/src/oci/apm_traces/models/query_details.py index 38834440aa..a7b00e8272 100644 --- a/src/oci/apm_traces/models/query_details.py +++ b/src/oci/apm_traces/models/query_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_traces/models/query_result_metadata_summary.py b/src/oci/apm_traces/models/query_result_metadata_summary.py index fd191b43d6..5a8493b255 100644 --- a/src/oci/apm_traces/models/query_result_metadata_summary.py +++ b/src/oci/apm_traces/models/query_result_metadata_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_traces/models/query_result_response.py b/src/oci/apm_traces/models/query_result_response.py index 67389322d6..82c647cd9b 100644 --- a/src/oci/apm_traces/models/query_result_response.py +++ b/src/oci/apm_traces/models/query_result_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_traces/models/query_result_row.py b/src/oci/apm_traces/models/query_result_row.py index 75d4b20a78..efdd84e1cf 100644 --- a/src/oci/apm_traces/models/query_result_row.py +++ b/src/oci/apm_traces/models/query_result_row.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_traces/models/query_result_row_type_summary.py b/src/oci/apm_traces/models/query_result_row_type_summary.py index 0ecedb23d8..a70617c03e 100644 --- a/src/oci/apm_traces/models/query_result_row_type_summary.py +++ b/src/oci/apm_traces/models/query_result_row_type_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_traces/models/query_results_grouped_by_summary.py b/src/oci/apm_traces/models/query_results_grouped_by_summary.py index 35d88df288..724d5939b3 100644 --- a/src/oci/apm_traces/models/query_results_grouped_by_summary.py +++ b/src/oci/apm_traces/models/query_results_grouped_by_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_traces/models/query_results_ordered_by_summary.py b/src/oci/apm_traces/models/query_results_ordered_by_summary.py index d1feaa2419..ab307c3012 100644 --- a/src/oci/apm_traces/models/query_results_ordered_by_summary.py +++ b/src/oci/apm_traces/models/query_results_ordered_by_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_traces/models/quick_pick_summary.py b/src/oci/apm_traces/models/quick_pick_summary.py index 5e86c478a7..6354b27bb6 100644 --- a/src/oci/apm_traces/models/quick_pick_summary.py +++ b/src/oci/apm_traces/models/quick_pick_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_traces/models/span.py b/src/oci/apm_traces/models/span.py index ba3213f609..efbd0a200d 100644 --- a/src/oci/apm_traces/models/span.py +++ b/src/oci/apm_traces/models/span.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_traces/models/span_log.py b/src/oci/apm_traces/models/span_log.py index bf3282d18f..814fb78410 100644 --- a/src/oci/apm_traces/models/span_log.py +++ b/src/oci/apm_traces/models/span_log.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_traces/models/span_log_collection.py b/src/oci/apm_traces/models/span_log_collection.py index f649c50983..a475a46798 100644 --- a/src/oci/apm_traces/models/span_log_collection.py +++ b/src/oci/apm_traces/models/span_log_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_traces/models/tag.py b/src/oci/apm_traces/models/tag.py index 2eddff381f..1218b0c7b8 100644 --- a/src/oci/apm_traces/models/tag.py +++ b/src/oci/apm_traces/models/tag.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_traces/models/trace.py b/src/oci/apm_traces/models/trace.py index 9a482786bf..965a1759c7 100644 --- a/src/oci/apm_traces/models/trace.py +++ b/src/oci/apm_traces/models/trace.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_traces/models/trace_service_summary.py b/src/oci/apm_traces/models/trace_service_summary.py index fe5843871c..8db058ef75 100644 --- a/src/oci/apm_traces/models/trace_service_summary.py +++ b/src/oci/apm_traces/models/trace_service_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_traces/models/trace_span_summary.py b/src/oci/apm_traces/models/trace_span_summary.py index ecdd5be28c..acc192660b 100644 --- a/src/oci/apm_traces/models/trace_span_summary.py +++ b/src/oci/apm_traces/models/trace_span_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/apm_traces/query_client.py b/src/oci/apm_traces/query_client.py index f3bd124ecd..78b138f3af 100644 --- a/src/oci/apm_traces/query_client.py +++ b/src/oci/apm_traces/query_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("query", config, signer, apm_traces_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -126,6 +132,10 @@ def list_quick_picks(self, apm_domain_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.apm_traces.models.QuickPickSummary` :rtype: :class:`~oci.response.Response` @@ -137,6 +147,7 @@ def list_quick_picks(self, apm_domain_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -224,6 +235,10 @@ def query(self, apm_domain_id, time_span_started_greater_than_or_equal_to, time_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_traces.models.QueryResultResponse` :rtype: :class:`~oci.response.Response` @@ -235,6 +250,7 @@ def query(self, apm_domain_id, time_span_started_greater_than_or_equal_to, time_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -328,6 +344,10 @@ def query_old(self, apm_domain_id, time_span_started_greater_than_or_equal_to, t To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_traces.models.QueryResultResponse` :rtype: :class:`~oci.response.Response` @@ -339,6 +359,7 @@ def query_old(self, apm_domain_id, time_span_started_greater_than_or_equal_to, t # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", diff --git a/src/oci/apm_traces/query_client_composite_operations.py b/src/oci/apm_traces/query_client_composite_operations.py index 72affd06fc..5353e36821 100644 --- a/src/oci/apm_traces/query_client_composite_operations.py +++ b/src/oci/apm_traces/query_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/apm_traces/trace_client.py b/src/oci/apm_traces/trace_client.py index d071f21c35..b1aaeedb4a 100644 --- a/src/oci/apm_traces/trace_client.py +++ b/src/oci/apm_traces/trace_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("trace", config, signer, apm_traces_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -124,6 +130,10 @@ def get_span(self, apm_domain_id, span_key, trace_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_traces.models.Span` :rtype: :class:`~oci.response.Response` @@ -135,6 +145,7 @@ def get_span(self, apm_domain_id, span_key, trace_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -215,6 +226,10 @@ def get_trace(self, apm_domain_id, trace_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.apm_traces.models.Trace` :rtype: :class:`~oci.response.Response` @@ -226,6 +241,7 @@ def get_trace(self, apm_domain_id, trace_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] diff --git a/src/oci/apm_traces/trace_client_composite_operations.py b/src/oci/apm_traces/trace_client_composite_operations.py index b84a38eace..cc2b3dc2fc 100644 --- a/src/oci/apm_traces/trace_client_composite_operations.py +++ b/src/oci/apm_traces/trace_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/application_migration/__init__.py b/src/oci/application_migration/__init__.py index 9cf1e7820d..0aad6ea8b5 100644 --- a/src/oci/application_migration/__init__.py +++ b/src/oci/application_migration/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/application_migration/application_migration_client.py b/src/oci/application_migration/application_migration_client.py index f37e515b92..e03cc8998e 100644 --- a/src/oci/application_migration/application_migration_client.py +++ b/src/oci/application_migration/application_migration_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -67,6 +67,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -97,6 +101,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("application_migration", config, signer, application_migration_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -131,6 +137,10 @@ def cancel_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -142,6 +152,7 @@ def cancel_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -231,6 +242,10 @@ def change_migration_compartment(self, migration_id, change_migration_compartmen To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -242,6 +257,7 @@ def change_migration_compartment(self, migration_id, change_migration_compartmen # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -336,6 +352,10 @@ def change_source_compartment(self, source_id, change_source_compartment_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -347,6 +367,7 @@ def change_source_compartment(self, source_id, change_source_compartment_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -450,6 +471,10 @@ def create_migration(self, create_migration_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.application_migration.models.Migration` :rtype: :class:`~oci.response.Response` @@ -461,6 +486,7 @@ def create_migration(self, create_migration_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -548,6 +574,10 @@ def create_source(self, create_source_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.application_migration.models.Source` :rtype: :class:`~oci.response.Response` @@ -559,6 +589,7 @@ def create_source(self, create_source_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -632,6 +663,10 @@ def delete_migration(self, migration_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -643,6 +678,7 @@ def delete_migration(self, migration_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -723,6 +759,10 @@ def delete_source(self, source_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -734,6 +774,7 @@ def delete_source(self, source_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -805,6 +846,10 @@ def get_migration(self, migration_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.application_migration.models.Migration` :rtype: :class:`~oci.response.Response` @@ -816,6 +861,7 @@ def get_migration(self, migration_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -887,6 +933,10 @@ def get_source(self, source_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.application_migration.models.Source` :rtype: :class:`~oci.response.Response` @@ -898,6 +948,7 @@ def get_source(self, source_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -969,6 +1020,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.application_migration.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -980,6 +1035,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1088,6 +1144,10 @@ def list_migrations(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.application_migration.models.MigrationSummary` :rtype: :class:`~oci.response.Response` @@ -1099,6 +1159,7 @@ def list_migrations(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "id", @@ -1234,6 +1295,10 @@ def list_source_applications(self, source_id, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.application_migration.models.SourceApplicationSummary` :rtype: :class:`~oci.response.Response` @@ -1245,6 +1310,7 @@ def list_source_applications(self, source_id, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -1387,6 +1453,10 @@ def list_sources(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.application_migration.models.SourceSummary` :rtype: :class:`~oci.response.Response` @@ -1398,6 +1468,7 @@ def list_sources(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "id", @@ -1516,6 +1587,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.application_migration.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -1527,6 +1602,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -1634,6 +1710,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.application_migration.models.WorkRequestLogEntry` :rtype: :class:`~oci.response.Response` @@ -1645,6 +1725,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -1752,6 +1833,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.application_migration.models.WorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -1763,6 +1848,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "resource_id", "opc_request_id", @@ -1857,6 +1943,10 @@ def migrate_application(self, migration_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1868,6 +1958,7 @@ def migrate_application(self, migration_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -1987,6 +2078,10 @@ def update_migration(self, migration_id, update_migration_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1998,6 +2093,7 @@ def update_migration(self, migration_id, update_migration_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -2085,6 +2181,10 @@ def update_source(self, source_id, update_source_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2096,6 +2196,7 @@ def update_source(self, source_id, update_source_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" diff --git a/src/oci/application_migration/application_migration_client_composite_operations.py b/src/oci/application_migration/application_migration_client_composite_operations.py index f6ba33b776..0543122e68 100644 --- a/src/oci/application_migration/application_migration_client_composite_operations.py +++ b/src/oci/application_migration/application_migration_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/application_migration/models/__init__.py b/src/oci/application_migration/models/__init__.py index 056dbfbf26..0210d8ad0e 100644 --- a/src/oci/application_migration/models/__init__.py +++ b/src/oci/application_migration/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/application_migration/models/authorization_details.py b/src/oci/application_migration/models/authorization_details.py index b7bc08b016..5c4627e2b9 100644 --- a/src/oci/application_migration/models/authorization_details.py +++ b/src/oci/application_migration/models/authorization_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/change_compartment_details.py b/src/oci/application_migration/models/change_compartment_details.py index ec117b6e2c..0a184f52a4 100644 --- a/src/oci/application_migration/models/change_compartment_details.py +++ b/src/oci/application_migration/models/change_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/configuration_field.py b/src/oci/application_migration/models/configuration_field.py index c601ff0130..c5f99dc2e9 100644 --- a/src/oci/application_migration/models/configuration_field.py +++ b/src/oci/application_migration/models/configuration_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/create_migration_details.py b/src/oci/application_migration/models/create_migration_details.py index 46f8be8214..8f47e2c382 100644 --- a/src/oci/application_migration/models/create_migration_details.py +++ b/src/oci/application_migration/models/create_migration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/create_source_details.py b/src/oci/application_migration/models/create_source_details.py index 4d36e9d3ef..ed47600196 100644 --- a/src/oci/application_migration/models/create_source_details.py +++ b/src/oci/application_migration/models/create_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/discovery_details.py b/src/oci/application_migration/models/discovery_details.py index 454fc07cfb..68f05e5e31 100644 --- a/src/oci/application_migration/models/discovery_details.py +++ b/src/oci/application_migration/models/discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/ics_discovery_details.py b/src/oci/application_migration/models/ics_discovery_details.py index 7ea9605892..8651c1ecbf 100644 --- a/src/oci/application_migration/models/ics_discovery_details.py +++ b/src/oci/application_migration/models/ics_discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .discovery_details import DiscoveryDetails diff --git a/src/oci/application_migration/models/import_manifest.py b/src/oci/application_migration/models/import_manifest.py index 072b319694..590a232d3c 100644 --- a/src/oci/application_migration/models/import_manifest.py +++ b/src/oci/application_migration/models/import_manifest.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/import_source_details.py b/src/oci/application_migration/models/import_source_details.py index d53b31926b..542a19822a 100644 --- a/src/oci/application_migration/models/import_source_details.py +++ b/src/oci/application_migration/models/import_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .source_details import SourceDetails diff --git a/src/oci/application_migration/models/internal_authorization_details.py b/src/oci/application_migration/models/internal_authorization_details.py index d2b6131d58..bc365af5a9 100644 --- a/src/oci/application_migration/models/internal_authorization_details.py +++ b/src/oci/application_migration/models/internal_authorization_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .authorization_details import AuthorizationDetails diff --git a/src/oci/application_migration/models/internal_source_details.py b/src/oci/application_migration/models/internal_source_details.py index c9a6fdf15f..0eaf9b2bf0 100644 --- a/src/oci/application_migration/models/internal_source_details.py +++ b/src/oci/application_migration/models/internal_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .source_details import SourceDetails diff --git a/src/oci/application_migration/models/jcs_discovery_details.py b/src/oci/application_migration/models/jcs_discovery_details.py index 44e76cc866..2e11085c21 100644 --- a/src/oci/application_migration/models/jcs_discovery_details.py +++ b/src/oci/application_migration/models/jcs_discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .discovery_details import DiscoveryDetails diff --git a/src/oci/application_migration/models/migration.py b/src/oci/application_migration/models/migration.py index 066c37799a..6f13376bc1 100644 --- a/src/oci/application_migration/models/migration.py +++ b/src/oci/application_migration/models/migration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/migration_summary.py b/src/oci/application_migration/models/migration_summary.py index 88cc5fd21a..88c1040d28 100644 --- a/src/oci/application_migration/models/migration_summary.py +++ b/src/oci/application_migration/models/migration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/oac_discovery_details.py b/src/oci/application_migration/models/oac_discovery_details.py index 964c3ce535..21535d3349 100644 --- a/src/oci/application_migration/models/oac_discovery_details.py +++ b/src/oci/application_migration/models/oac_discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .discovery_details import DiscoveryDetails diff --git a/src/oci/application_migration/models/occ_authorization_details.py b/src/oci/application_migration/models/occ_authorization_details.py index 79404c4690..fcef4f13e9 100644 --- a/src/oci/application_migration/models/occ_authorization_details.py +++ b/src/oci/application_migration/models/occ_authorization_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .authorization_details import AuthorizationDetails diff --git a/src/oci/application_migration/models/occ_source_details.py b/src/oci/application_migration/models/occ_source_details.py index 3c3d502f00..1f9a88c95c 100644 --- a/src/oci/application_migration/models/occ_source_details.py +++ b/src/oci/application_migration/models/occ_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .source_details import SourceDetails diff --git a/src/oci/application_migration/models/ocic_authorization_details.py b/src/oci/application_migration/models/ocic_authorization_details.py index cabd454b5c..67248938e5 100644 --- a/src/oci/application_migration/models/ocic_authorization_details.py +++ b/src/oci/application_migration/models/ocic_authorization_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .authorization_details import AuthorizationDetails diff --git a/src/oci/application_migration/models/ocic_authorization_token_details.py b/src/oci/application_migration/models/ocic_authorization_token_details.py index 22cddb74e8..85f6d8e6ad 100644 --- a/src/oci/application_migration/models/ocic_authorization_token_details.py +++ b/src/oci/application_migration/models/ocic_authorization_token_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .authorization_details import AuthorizationDetails diff --git a/src/oci/application_migration/models/ocic_source_details.py b/src/oci/application_migration/models/ocic_source_details.py index 7c3f00fedf..d7a3b7129c 100644 --- a/src/oci/application_migration/models/ocic_source_details.py +++ b/src/oci/application_migration/models/ocic_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .source_details import SourceDetails diff --git a/src/oci/application_migration/models/oic_discovery_details.py b/src/oci/application_migration/models/oic_discovery_details.py index f6ea96edda..bc76990419 100644 --- a/src/oci/application_migration/models/oic_discovery_details.py +++ b/src/oci/application_migration/models/oic_discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .discovery_details import DiscoveryDetails diff --git a/src/oci/application_migration/models/pcs_discovery_details.py b/src/oci/application_migration/models/pcs_discovery_details.py index 99ec2ce931..8c27f6ae4b 100644 --- a/src/oci/application_migration/models/pcs_discovery_details.py +++ b/src/oci/application_migration/models/pcs_discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .discovery_details import DiscoveryDetails diff --git a/src/oci/application_migration/models/resource_field.py b/src/oci/application_migration/models/resource_field.py index 98a80dcabd..ad8940a2d1 100644 --- a/src/oci/application_migration/models/resource_field.py +++ b/src/oci/application_migration/models/resource_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/soacs_discovery_details.py b/src/oci/application_migration/models/soacs_discovery_details.py index 81d69bbad7..92dc0ba1b0 100644 --- a/src/oci/application_migration/models/soacs_discovery_details.py +++ b/src/oci/application_migration/models/soacs_discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .discovery_details import DiscoveryDetails diff --git a/src/oci/application_migration/models/source.py b/src/oci/application_migration/models/source.py index 335a5f5820..27d69cc2fc 100644 --- a/src/oci/application_migration/models/source.py +++ b/src/oci/application_migration/models/source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/source_application.py b/src/oci/application_migration/models/source_application.py index 5703aecdc2..88e9bf8b58 100644 --- a/src/oci/application_migration/models/source_application.py +++ b/src/oci/application_migration/models/source_application.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/source_application_summary.py b/src/oci/application_migration/models/source_application_summary.py index 221615380d..246f510956 100644 --- a/src/oci/application_migration/models/source_application_summary.py +++ b/src/oci/application_migration/models/source_application_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/source_details.py b/src/oci/application_migration/models/source_details.py index e5b9f3f2e9..c725e50ffa 100644 --- a/src/oci/application_migration/models/source_details.py +++ b/src/oci/application_migration/models/source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/source_summary.py b/src/oci/application_migration/models/source_summary.py index 08283482f3..8f10589c9e 100644 --- a/src/oci/application_migration/models/source_summary.py +++ b/src/oci/application_migration/models/source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/update_migration_details.py b/src/oci/application_migration/models/update_migration_details.py index 0872689cdd..823bceddd9 100644 --- a/src/oci/application_migration/models/update_migration_details.py +++ b/src/oci/application_migration/models/update_migration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/update_source_details.py b/src/oci/application_migration/models/update_source_details.py index a5f54fb213..383cd29429 100644 --- a/src/oci/application_migration/models/update_source_details.py +++ b/src/oci/application_migration/models/update_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/work_request.py b/src/oci/application_migration/models/work_request.py index 4f9f51632c..adae931d2e 100644 --- a/src/oci/application_migration/models/work_request.py +++ b/src/oci/application_migration/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/work_request_error.py b/src/oci/application_migration/models/work_request_error.py index ce106beceb..5c0ae360f6 100644 --- a/src/oci/application_migration/models/work_request_error.py +++ b/src/oci/application_migration/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/work_request_log_entry.py b/src/oci/application_migration/models/work_request_log_entry.py index 9a27e0d1c2..92696ae95d 100644 --- a/src/oci/application_migration/models/work_request_log_entry.py +++ b/src/oci/application_migration/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/work_request_resource.py b/src/oci/application_migration/models/work_request_resource.py index 558811cbfa..9884f3a5df 100644 --- a/src/oci/application_migration/models/work_request_resource.py +++ b/src/oci/application_migration/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/application_migration/models/work_request_summary.py b/src/oci/application_migration/models/work_request_summary.py index 397e526312..a9753f1b0c 100644 --- a/src/oci/application_migration/models/work_request_summary.py +++ b/src/oci/application_migration/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/appmgmt_control/__init__.py b/src/oci/appmgmt_control/__init__.py index a672acd50f..4306a7a792 100644 --- a/src/oci/appmgmt_control/__init__.py +++ b/src/oci/appmgmt_control/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/appmgmt_control/appmgmt_control_client.py b/src/oci/appmgmt_control/appmgmt_control_client.py index fc090dbc4d..a18b716ba3 100644 --- a/src/oci/appmgmt_control/appmgmt_control_client.py +++ b/src/oci/appmgmt_control/appmgmt_control_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("appmgmt_control", config, signer, appmgmt_control_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -126,6 +132,10 @@ def activate_monitoring_plugin(self, monitored_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -137,6 +147,7 @@ def activate_monitoring_plugin(self, monitored_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -205,6 +216,10 @@ def get_monitored_instance(self, monitored_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.appmgmt_control.models.MonitoredInstance` :rtype: :class:`~oci.response.Response` @@ -216,6 +231,7 @@ def get_monitored_instance(self, monitored_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -284,6 +300,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.appmgmt_control.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -295,6 +315,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -382,6 +403,10 @@ def list_monitored_instances(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.appmgmt_control.models.MonitoredInstanceCollection` :rtype: :class:`~oci.response.Response` @@ -393,6 +418,7 @@ def list_monitored_instances(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -486,6 +512,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.appmgmt_control.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -497,6 +527,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -581,6 +612,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.appmgmt_control.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -592,6 +627,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -679,6 +715,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.appmgmt_control.models.WorkRequestSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -690,6 +730,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "work_request_id", "opc_request_id", @@ -766,6 +807,10 @@ def publish_top_processes_metrics(self, monitored_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -777,6 +822,7 @@ def publish_top_processes_metrics(self, monitored_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" diff --git a/src/oci/appmgmt_control/appmgmt_control_client_composite_operations.py b/src/oci/appmgmt_control/appmgmt_control_client_composite_operations.py index c6df2879f5..130b8fffc0 100644 --- a/src/oci/appmgmt_control/appmgmt_control_client_composite_operations.py +++ b/src/oci/appmgmt_control/appmgmt_control_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/appmgmt_control/models/__init__.py b/src/oci/appmgmt_control/models/__init__.py index 280770afee..21b86923bb 100644 --- a/src/oci/appmgmt_control/models/__init__.py +++ b/src/oci/appmgmt_control/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/appmgmt_control/models/monitored_instance.py b/src/oci/appmgmt_control/models/monitored_instance.py index 93da20b8ad..a8ddb633d4 100644 --- a/src/oci/appmgmt_control/models/monitored_instance.py +++ b/src/oci/appmgmt_control/models/monitored_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/appmgmt_control/models/monitored_instance_collection.py b/src/oci/appmgmt_control/models/monitored_instance_collection.py index 94f688da1a..d9021da72b 100644 --- a/src/oci/appmgmt_control/models/monitored_instance_collection.py +++ b/src/oci/appmgmt_control/models/monitored_instance_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/appmgmt_control/models/monitored_instance_summary.py b/src/oci/appmgmt_control/models/monitored_instance_summary.py index bc200f9ec0..8cd9eba811 100644 --- a/src/oci/appmgmt_control/models/monitored_instance_summary.py +++ b/src/oci/appmgmt_control/models/monitored_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/appmgmt_control/models/work_request.py b/src/oci/appmgmt_control/models/work_request.py index eda83b39f9..5dd4023e03 100644 --- a/src/oci/appmgmt_control/models/work_request.py +++ b/src/oci/appmgmt_control/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/appmgmt_control/models/work_request_error.py b/src/oci/appmgmt_control/models/work_request_error.py index 04dde83e08..26ac6a8cc9 100644 --- a/src/oci/appmgmt_control/models/work_request_error.py +++ b/src/oci/appmgmt_control/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/appmgmt_control/models/work_request_error_collection.py b/src/oci/appmgmt_control/models/work_request_error_collection.py index 1ce978d62c..b866dffbad 100644 --- a/src/oci/appmgmt_control/models/work_request_error_collection.py +++ b/src/oci/appmgmt_control/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/appmgmt_control/models/work_request_log_entry.py b/src/oci/appmgmt_control/models/work_request_log_entry.py index 8d02a6a994..7b37ab8d12 100644 --- a/src/oci/appmgmt_control/models/work_request_log_entry.py +++ b/src/oci/appmgmt_control/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/appmgmt_control/models/work_request_log_entry_collection.py b/src/oci/appmgmt_control/models/work_request_log_entry_collection.py index b2493ec626..fb743bda62 100644 --- a/src/oci/appmgmt_control/models/work_request_log_entry_collection.py +++ b/src/oci/appmgmt_control/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/appmgmt_control/models/work_request_resource.py b/src/oci/appmgmt_control/models/work_request_resource.py index 3f0eae3471..5f8d9f0192 100644 --- a/src/oci/appmgmt_control/models/work_request_resource.py +++ b/src/oci/appmgmt_control/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/appmgmt_control/models/work_request_summary.py b/src/oci/appmgmt_control/models/work_request_summary.py index ed17dca5dc..6840e0d130 100644 --- a/src/oci/appmgmt_control/models/work_request_summary.py +++ b/src/oci/appmgmt_control/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/appmgmt_control/models/work_request_summary_collection.py b/src/oci/appmgmt_control/models/work_request_summary_collection.py index a997929382..ea34fd7416 100644 --- a/src/oci/appmgmt_control/models/work_request_summary_collection.py +++ b/src/oci/appmgmt_control/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/__init__.py b/src/oci/artifacts/__init__.py index 744f538856..0cd1cd5036 100644 --- a/src/oci/artifacts/__init__.py +++ b/src/oci/artifacts/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/artifacts/artifacts_client.py b/src/oci/artifacts/artifacts_client.py index 0441cc581e..acfc1c0021 100644 --- a/src/oci/artifacts/artifacts_client.py +++ b/src/oci/artifacts/artifacts_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("artifacts", config, signer, artifacts_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -142,6 +148,10 @@ def change_container_repository_compartment(self, repository_id, change_containe To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -153,6 +163,7 @@ def change_container_repository_compartment(self, repository_id, change_containe # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -250,6 +261,10 @@ def change_repository_compartment(self, repository_id, change_repository_compart To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -261,6 +276,7 @@ def change_repository_compartment(self, repository_id, change_repository_compart # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -347,6 +363,10 @@ def create_container_image_signature(self, create_container_image_signature_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.ContainerImageSignature` :rtype: :class:`~oci.response.Response` @@ -358,6 +378,7 @@ def create_container_image_signature(self, create_container_image_signature_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -429,6 +450,10 @@ def create_container_repository(self, create_container_repository_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.ContainerRepository` :rtype: :class:`~oci.response.Response` @@ -440,6 +465,7 @@ def create_container_repository(self, create_container_repository_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -509,6 +535,10 @@ def create_repository(self, create_repository_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.Repository` :rtype: :class:`~oci.response.Response` @@ -520,6 +550,7 @@ def create_repository(self, create_repository_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -591,6 +622,10 @@ def delete_container_image(self, image_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -602,6 +637,7 @@ def delete_container_image(self, image_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -680,6 +716,10 @@ def delete_container_image_signature(self, image_signature_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -691,6 +731,7 @@ def delete_container_image_signature(self, image_signature_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -769,6 +810,10 @@ def delete_container_repository(self, repository_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -780,6 +825,7 @@ def delete_container_repository(self, repository_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -860,6 +906,10 @@ def delete_generic_artifact(self, artifact_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -871,6 +921,7 @@ def delete_generic_artifact(self, artifact_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -959,6 +1010,10 @@ def delete_generic_artifact_by_path(self, repository_id, artifact_path, version, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -970,6 +1025,7 @@ def delete_generic_artifact_by_path(self, repository_id, artifact_path, version, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1050,6 +1106,10 @@ def delete_repository(self, repository_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1061,6 +1121,7 @@ def delete_repository(self, repository_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1132,6 +1193,10 @@ def get_container_configuration(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.ContainerConfiguration` :rtype: :class:`~oci.response.Response` @@ -1143,6 +1208,7 @@ def get_container_configuration(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1211,6 +1277,10 @@ def get_container_image(self, image_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.ContainerImage` :rtype: :class:`~oci.response.Response` @@ -1222,6 +1292,7 @@ def get_container_image(self, image_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1295,6 +1366,10 @@ def get_container_image_signature(self, image_signature_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.ContainerImageSignature` :rtype: :class:`~oci.response.Response` @@ -1306,6 +1381,7 @@ def get_container_image_signature(self, image_signature_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1379,6 +1455,10 @@ def get_container_repository(self, repository_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.ContainerRepository` :rtype: :class:`~oci.response.Response` @@ -1390,6 +1470,7 @@ def get_container_repository(self, repository_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1465,6 +1546,10 @@ def get_generic_artifact(self, artifact_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.GenericArtifact` :rtype: :class:`~oci.response.Response` @@ -1476,6 +1561,7 @@ def get_generic_artifact(self, artifact_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1559,6 +1645,10 @@ def get_generic_artifact_by_path(self, repository_id, artifact_path, version, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.GenericArtifact` :rtype: :class:`~oci.response.Response` @@ -1570,6 +1660,7 @@ def get_generic_artifact_by_path(self, repository_id, artifact_path, version, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1645,6 +1736,10 @@ def get_repository(self, repository_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.Repository` :rtype: :class:`~oci.response.Response` @@ -1656,6 +1751,7 @@ def get_repository(self, repository_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1806,6 +1902,10 @@ def list_container_image_signatures(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.ContainerImageSignatureCollection` :rtype: :class:`~oci.response.Response` @@ -1817,6 +1917,7 @@ def list_container_image_signatures(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id_in_subtree", "image_id", @@ -1996,6 +2097,10 @@ def list_container_images(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.ContainerImageCollection` :rtype: :class:`~oci.response.Response` @@ -2007,6 +2112,7 @@ def list_container_images(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id_in_subtree", "display_name", @@ -2164,6 +2270,10 @@ def list_container_repositories(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.ContainerRepositoryCollection` :rtype: :class:`~oci.response.Response` @@ -2175,6 +2285,7 @@ def list_container_repositories(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id_in_subtree", "repository_id", @@ -2328,6 +2439,10 @@ def list_generic_artifacts(self, compartment_id, repository_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.GenericArtifactCollection` :rtype: :class:`~oci.response.Response` @@ -2339,6 +2454,7 @@ def list_generic_artifacts(self, compartment_id, repository_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "display_name", @@ -2486,6 +2602,10 @@ def list_repositories(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.RepositoryCollection` :rtype: :class:`~oci.response.Response` @@ -2497,6 +2617,7 @@ def list_repositories(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "display_name", @@ -2610,6 +2731,10 @@ def remove_container_version(self, image_id, remove_container_version_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.ContainerImage` :rtype: :class:`~oci.response.Response` @@ -2621,6 +2746,7 @@ def remove_container_version(self, image_id, remove_container_version_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2716,6 +2842,10 @@ def restore_container_image(self, image_id, restore_container_image_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.ContainerImage` :rtype: :class:`~oci.response.Response` @@ -2727,6 +2857,7 @@ def restore_container_image(self, image_id, restore_container_image_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2813,6 +2944,10 @@ def update_container_configuration(self, compartment_id, update_container_config To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.ContainerConfiguration` :rtype: :class:`~oci.response.Response` @@ -2824,6 +2959,7 @@ def update_container_configuration(self, compartment_id, update_container_config # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2904,6 +3040,10 @@ def update_container_repository(self, repository_id, update_container_repository To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.ContainerRepository` :rtype: :class:`~oci.response.Response` @@ -2915,6 +3055,7 @@ def update_container_repository(self, repository_id, update_container_repository # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3004,6 +3145,10 @@ def update_generic_artifact(self, artifact_id, update_generic_artifact_details, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.GenericArtifact` :rtype: :class:`~oci.response.Response` @@ -3015,6 +3160,7 @@ def update_generic_artifact(self, artifact_id, update_generic_artifact_details, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3110,6 +3256,10 @@ def update_generic_artifact_by_path(self, repository_id, artifact_path, version, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.GenericArtifact` :rtype: :class:`~oci.response.Response` @@ -3121,6 +3271,7 @@ def update_generic_artifact_by_path(self, repository_id, artifact_path, version, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3208,6 +3359,10 @@ def update_repository(self, repository_id, update_repository_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.artifacts.models.Repository` :rtype: :class:`~oci.response.Response` @@ -3219,6 +3374,7 @@ def update_repository(self, repository_id, update_repository_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/artifacts/artifacts_client_composite_operations.py b/src/oci/artifacts/artifacts_client_composite_operations.py index bcf2b077ff..0af28970fa 100644 --- a/src/oci/artifacts/artifacts_client_composite_operations.py +++ b/src/oci/artifacts/artifacts_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/artifacts/models/__init__.py b/src/oci/artifacts/models/__init__.py index d121459637..add4496c9c 100644 --- a/src/oci/artifacts/models/__init__.py +++ b/src/oci/artifacts/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/artifacts/models/change_container_repository_compartment_details.py b/src/oci/artifacts/models/change_container_repository_compartment_details.py index 3c1f7ca5e9..02fcf204cb 100644 --- a/src/oci/artifacts/models/change_container_repository_compartment_details.py +++ b/src/oci/artifacts/models/change_container_repository_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/change_repository_compartment_details.py b/src/oci/artifacts/models/change_repository_compartment_details.py index c9428a86e9..9a0d350d3a 100644 --- a/src/oci/artifacts/models/change_repository_compartment_details.py +++ b/src/oci/artifacts/models/change_repository_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/container_configuration.py b/src/oci/artifacts/models/container_configuration.py index a331211f60..0091a58c24 100644 --- a/src/oci/artifacts/models/container_configuration.py +++ b/src/oci/artifacts/models/container_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/container_image.py b/src/oci/artifacts/models/container_image.py index 28fd05a1b0..0f4278e566 100644 --- a/src/oci/artifacts/models/container_image.py +++ b/src/oci/artifacts/models/container_image.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/container_image_collection.py b/src/oci/artifacts/models/container_image_collection.py index 05f72ab312..ddba942b3c 100644 --- a/src/oci/artifacts/models/container_image_collection.py +++ b/src/oci/artifacts/models/container_image_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/container_image_layer.py b/src/oci/artifacts/models/container_image_layer.py index 867a1992bc..e4b602ba53 100644 --- a/src/oci/artifacts/models/container_image_layer.py +++ b/src/oci/artifacts/models/container_image_layer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/container_image_signature.py b/src/oci/artifacts/models/container_image_signature.py index 012ad84c3f..6170eca861 100644 --- a/src/oci/artifacts/models/container_image_signature.py +++ b/src/oci/artifacts/models/container_image_signature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/container_image_signature_collection.py b/src/oci/artifacts/models/container_image_signature_collection.py index 5ba7b368d3..22964a1226 100644 --- a/src/oci/artifacts/models/container_image_signature_collection.py +++ b/src/oci/artifacts/models/container_image_signature_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/container_image_signature_summary.py b/src/oci/artifacts/models/container_image_signature_summary.py index ac3e464e83..21c7eeaafe 100644 --- a/src/oci/artifacts/models/container_image_signature_summary.py +++ b/src/oci/artifacts/models/container_image_signature_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/container_image_summary.py b/src/oci/artifacts/models/container_image_summary.py index 48f2dc5a86..a6b5eb66be 100644 --- a/src/oci/artifacts/models/container_image_summary.py +++ b/src/oci/artifacts/models/container_image_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/container_repository.py b/src/oci/artifacts/models/container_repository.py index c9e29acc3f..ddea4bae4b 100644 --- a/src/oci/artifacts/models/container_repository.py +++ b/src/oci/artifacts/models/container_repository.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/container_repository_collection.py b/src/oci/artifacts/models/container_repository_collection.py index 6ef27ea96c..bd7ea86ab8 100644 --- a/src/oci/artifacts/models/container_repository_collection.py +++ b/src/oci/artifacts/models/container_repository_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/container_repository_readme.py b/src/oci/artifacts/models/container_repository_readme.py index 160eb0199b..63b17b5a36 100644 --- a/src/oci/artifacts/models/container_repository_readme.py +++ b/src/oci/artifacts/models/container_repository_readme.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/container_repository_summary.py b/src/oci/artifacts/models/container_repository_summary.py index ba680a3508..47dd7688a5 100644 --- a/src/oci/artifacts/models/container_repository_summary.py +++ b/src/oci/artifacts/models/container_repository_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/container_version.py b/src/oci/artifacts/models/container_version.py index 410dc5a019..6f42f5d9d8 100644 --- a/src/oci/artifacts/models/container_version.py +++ b/src/oci/artifacts/models/container_version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/create_container_image_signature_details.py b/src/oci/artifacts/models/create_container_image_signature_details.py index 26ca055ac5..0755040f5d 100644 --- a/src/oci/artifacts/models/create_container_image_signature_details.py +++ b/src/oci/artifacts/models/create_container_image_signature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/create_container_repository_details.py b/src/oci/artifacts/models/create_container_repository_details.py index 021d8d1923..2a2c7d4c78 100644 --- a/src/oci/artifacts/models/create_container_repository_details.py +++ b/src/oci/artifacts/models/create_container_repository_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/create_generic_repository_details.py b/src/oci/artifacts/models/create_generic_repository_details.py index 468f25382d..9105737231 100644 --- a/src/oci/artifacts/models/create_generic_repository_details.py +++ b/src/oci/artifacts/models/create_generic_repository_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_repository_details import CreateRepositoryDetails diff --git a/src/oci/artifacts/models/create_repository_details.py b/src/oci/artifacts/models/create_repository_details.py index cc9bbe932e..b3c553ddbd 100644 --- a/src/oci/artifacts/models/create_repository_details.py +++ b/src/oci/artifacts/models/create_repository_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/generic_artifact.py b/src/oci/artifacts/models/generic_artifact.py index 9915fefa5b..2e75c29e82 100644 --- a/src/oci/artifacts/models/generic_artifact.py +++ b/src/oci/artifacts/models/generic_artifact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/generic_artifact_collection.py b/src/oci/artifacts/models/generic_artifact_collection.py index b54a13d6c8..428911b0ad 100644 --- a/src/oci/artifacts/models/generic_artifact_collection.py +++ b/src/oci/artifacts/models/generic_artifact_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/generic_artifact_summary.py b/src/oci/artifacts/models/generic_artifact_summary.py index eab32d24ca..51f4295b91 100644 --- a/src/oci/artifacts/models/generic_artifact_summary.py +++ b/src/oci/artifacts/models/generic_artifact_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/generic_repository.py b/src/oci/artifacts/models/generic_repository.py index 0f01de5ccf..a2211e0e90 100644 --- a/src/oci/artifacts/models/generic_repository.py +++ b/src/oci/artifacts/models/generic_repository.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .repository import Repository diff --git a/src/oci/artifacts/models/generic_repository_summary.py b/src/oci/artifacts/models/generic_repository_summary.py index 2c2ab9677a..cddfd44649 100644 --- a/src/oci/artifacts/models/generic_repository_summary.py +++ b/src/oci/artifacts/models/generic_repository_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .repository_summary import RepositorySummary diff --git a/src/oci/artifacts/models/remove_container_version_details.py b/src/oci/artifacts/models/remove_container_version_details.py index bbbf9cda70..e8a421656f 100644 --- a/src/oci/artifacts/models/remove_container_version_details.py +++ b/src/oci/artifacts/models/remove_container_version_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/repository.py b/src/oci/artifacts/models/repository.py index 85e3ffff00..413362503d 100644 --- a/src/oci/artifacts/models/repository.py +++ b/src/oci/artifacts/models/repository.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/repository_collection.py b/src/oci/artifacts/models/repository_collection.py index 083da96a8d..5dcac2c617 100644 --- a/src/oci/artifacts/models/repository_collection.py +++ b/src/oci/artifacts/models/repository_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/repository_summary.py b/src/oci/artifacts/models/repository_summary.py index 5033dfc659..321e25f0c4 100644 --- a/src/oci/artifacts/models/repository_summary.py +++ b/src/oci/artifacts/models/repository_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/restore_container_image_details.py b/src/oci/artifacts/models/restore_container_image_details.py index 390ab67401..d8c2652c7e 100644 --- a/src/oci/artifacts/models/restore_container_image_details.py +++ b/src/oci/artifacts/models/restore_container_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/update_container_configuration_details.py b/src/oci/artifacts/models/update_container_configuration_details.py index 55f11d5ceb..a9e7baa2b1 100644 --- a/src/oci/artifacts/models/update_container_configuration_details.py +++ b/src/oci/artifacts/models/update_container_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/update_container_repository_details.py b/src/oci/artifacts/models/update_container_repository_details.py index 8e40dd2646..b66d314118 100644 --- a/src/oci/artifacts/models/update_container_repository_details.py +++ b/src/oci/artifacts/models/update_container_repository_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/update_generic_artifact_by_path_details.py b/src/oci/artifacts/models/update_generic_artifact_by_path_details.py index c6a121133c..a5f6a87b4b 100644 --- a/src/oci/artifacts/models/update_generic_artifact_by_path_details.py +++ b/src/oci/artifacts/models/update_generic_artifact_by_path_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/update_generic_artifact_details.py b/src/oci/artifacts/models/update_generic_artifact_details.py index 547f1fc4ec..fe3bcd171e 100644 --- a/src/oci/artifacts/models/update_generic_artifact_details.py +++ b/src/oci/artifacts/models/update_generic_artifact_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/artifacts/models/update_generic_repository_details.py b/src/oci/artifacts/models/update_generic_repository_details.py index f45cabfc94..f5a2d2af5e 100644 --- a/src/oci/artifacts/models/update_generic_repository_details.py +++ b/src/oci/artifacts/models/update_generic_repository_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_repository_details import UpdateRepositoryDetails diff --git a/src/oci/artifacts/models/update_repository_details.py b/src/oci/artifacts/models/update_repository_details.py index 7f5a076822..3674e6274a 100644 --- a/src/oci/artifacts/models/update_repository_details.py +++ b/src/oci/artifacts/models/update_repository_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/audit/__init__.py b/src/oci/audit/__init__.py index a74e8441d6..e85f57e2cd 100644 --- a/src/oci/audit/__init__.py +++ b/src/oci/audit/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/audit/audit_client.py b/src/oci/audit/audit_client.py index 183337ae81..61a0f27833 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -67,6 +67,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -97,6 +101,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("audit", config, signer, audit_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -117,6 +123,10 @@ def get_configuration(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.audit.models.Configuration` :rtype: :class:`~oci.response.Response` @@ -218,6 +228,10 @@ def list_events(self, compartment_id, start_time, end_time, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.audit.models.AuditEvent` :rtype: :class:`~oci.response.Response` @@ -229,6 +243,7 @@ def list_events(self, compartment_id, start_time, end_time, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "opc_request_id" @@ -296,6 +311,10 @@ def update_configuration(self, compartment_id, update_configuration_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` diff --git a/src/oci/audit/audit_client_composite_operations.py b/src/oci/audit/audit_client_composite_operations.py index 2b5be7aec6..43f3a15078 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/audit/models/__init__.py b/src/oci/audit/models/__init__.py index d88ee2c734..295362159b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/audit/models/audit_event.py b/src/oci/audit/models/audit_event.py index 0240ca8462..e21ad009df 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/audit/models/configuration.py b/src/oci/audit/models/configuration.py index 34ac9dc6fe..7815f315e9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/audit/models/data.py b/src/oci/audit/models/data.py index baa689859e..b16a588abe 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/audit/models/identity.py b/src/oci/audit/models/identity.py index 9b3fcedfd4..7851fd7b07 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/audit/models/request.py b/src/oci/audit/models/request.py index 2dea01560c..f9a8286ca1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/audit/models/response.py b/src/oci/audit/models/response.py index 9da7887841..d4a39d1989 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/audit/models/state_change.py b/src/oci/audit/models/state_change.py index 2ddc9dfea3..c54b759e1f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/audit/models/update_configuration_details.py b/src/oci/audit/models/update_configuration_details.py index a760614b14..0292168821 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/auth/__init__.py b/src/oci/auth/__init__.py index 10d353b2a4..7006ce128d 100644 --- a/src/oci/auth/__init__.py +++ b/src/oci/auth/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from . import auth_utils # noqa: F401 diff --git a/src/oci/auth/auth_utils.py b/src/oci/auth/auth_utils.py index 40e3d00a1a..d00ad85295 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from oci._vendor import six diff --git a/src/oci/auth/certificate_retriever.py b/src/oci/auth/certificate_retriever.py index c98fc8dd38..58878dd433 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from cryptography import x509 diff --git a/src/oci/auth/federation_client.py b/src/oci/auth/federation_client.py index f05e3fa939..7f176b55e8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from . import auth_utils diff --git a/src/oci/auth/rpt_path_providers.py b/src/oci/auth/rpt_path_providers.py index 4f66247c23..a2df04baa5 100644 --- a/src/oci/auth/rpt_path_providers.py +++ b/src/oci/auth/rpt_path_providers.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/auth/security_token_container.py b/src/oci/auth/security_token_container.py index 216b7b9250..4dcba32a1e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci._vendor.jwt as jwt diff --git a/src/oci/auth/session_key_supplier.py b/src/oci/auth/session_key_supplier.py index fee6c33c8e..2255042af5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from cryptography.hazmat.backends import default_backend diff --git a/src/oci/auth/signers/__init__.py b/src/oci/auth/signers/__init__.py index 169cb801a0..f86290eb42 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .security_token_signer import SecurityTokenSigner, X509FederationClientBasedSecurityTokenSigner # noqa: F401 diff --git a/src/oci/auth/signers/ephemeral_resource_principals_delegation_token_signer.py b/src/oci/auth/signers/ephemeral_resource_principals_delegation_token_signer.py index 97d292aca8..f65528bb1a 100644 --- a/src/oci/auth/signers/ephemeral_resource_principals_delegation_token_signer.py +++ b/src/oci/auth/signers/ephemeral_resource_principals_delegation_token_signer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .ephemeral_resource_principals_signer import EphemeralResourcePrincipalSigner diff --git a/src/oci/auth/signers/ephemeral_resource_principals_signer.py b/src/oci/auth/signers/ephemeral_resource_principals_signer.py index 5018072a4e..7039342046 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import threading 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 386e212f55..c1a07515d6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 411efee23e..a338b1b2dd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .security_token_signer import X509FederationClientBasedSecurityTokenSigner diff --git a/src/oci/auth/signers/resource_principals_delegation_token_signer.py b/src/oci/auth/signers/resource_principals_delegation_token_signer.py index 8e671f4206..ad6e62cf66 100644 --- a/src/oci/auth/signers/resource_principals_delegation_token_signer.py +++ b/src/oci/auth/signers/resource_principals_delegation_token_signer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .resource_principals_federation_signer import ResourcePrincipalsFederationSigner diff --git a/src/oci/auth/signers/resource_principals_federation_signer.py b/src/oci/auth/signers/resource_principals_federation_signer.py index 85a07d05c7..4b21780392 100644 --- a/src/oci/auth/signers/resource_principals_federation_signer.py +++ b/src/oci/auth/signers/resource_principals_federation_signer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import json diff --git a/src/oci/auth/signers/resource_principals_signer.py b/src/oci/auth/signers/resource_principals_signer.py index 4c09579ddf..9764bad08a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import os diff --git a/src/oci/auth/signers/security_token_signer.py b/src/oci/auth/signers/security_token_signer.py index 5c2174f354..30e891a07d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci.signer diff --git a/src/oci/autoscaling/__init__.py b/src/oci/autoscaling/__init__.py index 313763f521..4c9f004816 100644 --- a/src/oci/autoscaling/__init__.py +++ b/src/oci/autoscaling/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/autoscaling/auto_scaling_client.py b/src/oci/autoscaling/auto_scaling_client.py index 98eb4a0def..75ae9f167f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -69,6 +69,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -99,6 +103,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("auto_scaling", config, signer, autoscaling_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -145,6 +151,10 @@ def change_auto_scaling_configuration_compartment(self, auto_scaling_configurati To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -156,6 +166,7 @@ def change_auto_scaling_configuration_compartment(self, auto_scaling_configurati # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -235,6 +246,10 @@ def create_auto_scaling_configuration(self, create_auto_scaling_configuration_de To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.autoscaling.models.AutoScalingConfiguration` :rtype: :class:`~oci.response.Response` @@ -246,6 +261,7 @@ def create_auto_scaling_configuration(self, create_auto_scaling_configuration_de # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -326,6 +342,10 @@ def create_auto_scaling_policy(self, auto_scaling_configuration_id, create_auto_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.autoscaling.models.AutoScalingPolicy` :rtype: :class:`~oci.response.Response` @@ -337,6 +357,7 @@ def create_auto_scaling_policy(self, auto_scaling_configuration_id, create_auto_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -416,6 +437,10 @@ def delete_auto_scaling_configuration(self, auto_scaling_configuration_id, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -427,6 +452,7 @@ def delete_auto_scaling_configuration(self, auto_scaling_configuration_id, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -504,6 +530,10 @@ def delete_auto_scaling_policy(self, auto_scaling_configuration_id, auto_scaling To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -515,6 +545,7 @@ def delete_auto_scaling_policy(self, auto_scaling_configuration_id, auto_scaling # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -585,6 +616,10 @@ def get_auto_scaling_configuration(self, auto_scaling_configuration_id, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.autoscaling.models.AutoScalingConfiguration` :rtype: :class:`~oci.response.Response` @@ -596,6 +631,7 @@ def get_auto_scaling_configuration(self, auto_scaling_configuration_id, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -668,6 +704,10 @@ def get_auto_scaling_policy(self, auto_scaling_configuration_id, auto_scaling_po To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.autoscaling.models.AutoScalingPolicy` :rtype: :class:`~oci.response.Response` @@ -679,6 +719,7 @@ def get_auto_scaling_policy(self, auto_scaling_configuration_id, auto_scaling_po # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -779,6 +820,10 @@ def list_auto_scaling_configurations(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.autoscaling.models.AutoScalingConfigurationSummary` :rtype: :class:`~oci.response.Response` @@ -790,6 +835,7 @@ def list_auto_scaling_configurations(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "opc_request_id", @@ -906,6 +952,10 @@ def list_auto_scaling_policies(self, auto_scaling_configuration_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.autoscaling.models.AutoScalingPolicySummary` :rtype: :class:`~oci.response.Response` @@ -917,6 +967,7 @@ def list_auto_scaling_policies(self, auto_scaling_configuration_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "opc_request_id", @@ -1032,6 +1083,10 @@ def update_auto_scaling_configuration(self, auto_scaling_configuration_id, updat To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.autoscaling.models.AutoScalingConfiguration` :rtype: :class:`~oci.response.Response` @@ -1043,6 +1098,7 @@ def update_auto_scaling_configuration(self, auto_scaling_configuration_id, updat # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1137,6 +1193,10 @@ def update_auto_scaling_policy(self, auto_scaling_configuration_id, auto_scaling To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.autoscaling.models.AutoScalingPolicy` :rtype: :class:`~oci.response.Response` @@ -1148,6 +1208,7 @@ def update_auto_scaling_policy(self, auto_scaling_configuration_id, auto_scaling # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", diff --git a/src/oci/autoscaling/auto_scaling_client_composite_operations.py b/src/oci/autoscaling/auto_scaling_client_composite_operations.py index 8bbd49b83e..905e57fdda 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/autoscaling/models/__init__.py b/src/oci/autoscaling/models/__init__.py index 4f236e9285..3ea6710c7c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/autoscaling/models/action.py b/src/oci/autoscaling/models/action.py index 21053a6028..0d37652e31 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/autoscaling/models/auto_scaling_configuration.py b/src/oci/autoscaling/models/auto_scaling_configuration.py index d8c9553e36..20b73dc41d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/autoscaling/models/auto_scaling_configuration_summary.py b/src/oci/autoscaling/models/auto_scaling_configuration_summary.py index ec28314bf7..8a708984d6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/autoscaling/models/auto_scaling_policy.py b/src/oci/autoscaling/models/auto_scaling_policy.py index 6064116ecb..647a78cb45 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/autoscaling/models/auto_scaling_policy_summary.py b/src/oci/autoscaling/models/auto_scaling_policy_summary.py index f70bd5b228..4d6fbe8341 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/autoscaling/models/capacity.py b/src/oci/autoscaling/models/capacity.py index 950a7e6c23..50aec4f3a1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 75f5d5490b..701533a0fd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/autoscaling/models/condition.py b/src/oci/autoscaling/models/condition.py index 7e3fbe0b13..5c47e8a12c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 927733c325..d9606970f5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 70d5010b16..0d1fa03edd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/autoscaling/models/create_condition_details.py b/src/oci/autoscaling/models/create_condition_details.py index cf725e6b43..e5ae876242 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/autoscaling/models/create_scheduled_policy_details.py b/src/oci/autoscaling/models/create_scheduled_policy_details.py index d593eb1549..c7d62e6b95 100644 --- a/src/oci/autoscaling/models/create_scheduled_policy_details.py +++ b/src/oci/autoscaling/models/create_scheduled_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_auto_scaling_policy_details import CreateAutoScalingPolicyDetails diff --git a/src/oci/autoscaling/models/create_threshold_policy_details.py b/src/oci/autoscaling/models/create_threshold_policy_details.py index cb4e78a88d..e29fb715cd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_auto_scaling_policy_details import CreateAutoScalingPolicyDetails diff --git a/src/oci/autoscaling/models/cron_execution_schedule.py b/src/oci/autoscaling/models/cron_execution_schedule.py index 2af0d2b145..06d14e8e81 100644 --- a/src/oci/autoscaling/models/cron_execution_schedule.py +++ b/src/oci/autoscaling/models/cron_execution_schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .execution_schedule import ExecutionSchedule diff --git a/src/oci/autoscaling/models/execution_schedule.py b/src/oci/autoscaling/models/execution_schedule.py index 6f22d1c30c..5605ea43f4 100644 --- a/src/oci/autoscaling/models/execution_schedule.py +++ b/src/oci/autoscaling/models/execution_schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/autoscaling/models/instance_pool_resource.py b/src/oci/autoscaling/models/instance_pool_resource.py index 15557d5158..863048d8df 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .resource import Resource diff --git a/src/oci/autoscaling/models/metric.py b/src/oci/autoscaling/models/metric.py index c3f1619424..071fd12791 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/autoscaling/models/resource.py b/src/oci/autoscaling/models/resource.py index 40573e77be..a757f13b0d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/autoscaling/models/resource_action.py b/src/oci/autoscaling/models/resource_action.py index d14dc05648..24f0cff626 100644 --- a/src/oci/autoscaling/models/resource_action.py +++ b/src/oci/autoscaling/models/resource_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/autoscaling/models/resource_power_action.py b/src/oci/autoscaling/models/resource_power_action.py index 1f9504d417..3a3a96f143 100644 --- a/src/oci/autoscaling/models/resource_power_action.py +++ b/src/oci/autoscaling/models/resource_power_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .resource_action import ResourceAction diff --git a/src/oci/autoscaling/models/scheduled_policy.py b/src/oci/autoscaling/models/scheduled_policy.py index 3426a1b514..c46e3e6ff0 100644 --- a/src/oci/autoscaling/models/scheduled_policy.py +++ b/src/oci/autoscaling/models/scheduled_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .auto_scaling_policy import AutoScalingPolicy diff --git a/src/oci/autoscaling/models/threshold.py b/src/oci/autoscaling/models/threshold.py index dc97b947ea..41000ad5c2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/autoscaling/models/threshold_policy.py b/src/oci/autoscaling/models/threshold_policy.py index 8fec806783..6d4ac3c588 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .auto_scaling_policy import AutoScalingPolicy 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 a54b63287a..32248ebf7a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 2b4e59166a..7c07e37f10 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/autoscaling/models/update_condition_details.py b/src/oci/autoscaling/models/update_condition_details.py index 0fd4c796ba..1595791386 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/autoscaling/models/update_scheduled_policy_details.py b/src/oci/autoscaling/models/update_scheduled_policy_details.py index 36f86ae976..e0139d18e1 100644 --- a/src/oci/autoscaling/models/update_scheduled_policy_details.py +++ b/src/oci/autoscaling/models/update_scheduled_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_auto_scaling_policy_details import UpdateAutoScalingPolicyDetails diff --git a/src/oci/autoscaling/models/update_threshold_policy_details.py b/src/oci/autoscaling/models/update_threshold_policy_details.py index 25b649b35a..4e9254ae60 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_auto_scaling_policy_details import UpdateAutoScalingPolicyDetails diff --git a/src/oci/base_client.py b/src/oci/base_client.py index f9e03d0bc7..5b4c5dcd7e 100644 --- a/src/oci/base_client.py +++ b/src/oci/base_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -259,6 +259,8 @@ class BaseClient(object): "object": object } + ALLOW_CONTROL_CHARACTERS = False + def __init__(self, service, config, signer, type_mapping, **kwargs): validate_config(config, signer=signer) self.signer = signer @@ -273,6 +275,9 @@ def __init__(self, service, config, signer, type_mapping, **kwargs): self.service_endpoint_template = kwargs.get('service_endpoint_template') self.endpoint_service_name = kwargs.get('endpoint_service_name') + # By default self._allow_control_chars will be None. The user would need to explicitly set it to True or False + self._allow_control_chars = kwargs.get('allow_control_chars') + if self.regional_client: if kwargs.get('service_endpoint'): self.endpoint = kwargs.get('service_endpoint') @@ -365,13 +370,22 @@ def set_region(self, region): else: raise TypeError('Setting the region is not allowed for non-regional service clients. You must instead set the endpoint') + @property + def allow_control_chars(self): + return self._allow_control_chars + + @allow_control_chars.setter + def allow_control_chars(self, bool): + self._allow_control_chars = bool + def call_api(self, resource_path, method, path_params=None, query_params=None, header_params=None, body=None, response_type=None, - enforce_content_headers=True): + enforce_content_headers=True, + allow_control_chars=None): """ Makes the HTTP request and return the deserialized data. @@ -384,6 +398,7 @@ def call_api(self, resource_path, method, :param response_type: (optional) Response data type. :param enforce_content_headers: (optional) Whether content headers should be added for PUT and POST requests when not present. Defaults to True. + :param allow_control_chars: (optional) Boolean that allows whether or not the response object can contain control chars :return: A Response object, or throw in the case of an error. """ @@ -445,7 +460,7 @@ def call_api(self, resource_path, method, call_attempts = 0 while call_attempts < 2: try: - return self.request(request) + return self.request(request, allow_control_chars) except exceptions.ServiceError as e: call_attempts += 1 if e.status == 401 and call_attempts < 2: @@ -454,7 +469,7 @@ def call_api(self, resource_path, method, raise else: start = timer() - response = self.request(request) + response = self.request(request, allow_control_chars) end = timer() self.logger.debug('time elapsed for request: {}'.format(str(end - start))) return response @@ -533,7 +548,7 @@ def process_query_params(self, query_params): return processed_query_params - def request(self, request): + def request(self, request, allow_control_chars=None): self.logger.info(utc_now() + "Request: %s %s" % (str(request.method), request.url)) initial_circuit_breaker_state = None @@ -576,7 +591,7 @@ def request(self, request): # Raise Service Error or Transient Service Error if not 200 <= response.status_code <= 299: - service_code, message = self.get_deserialized_service_code_and_message(response) + service_code, message = self.get_deserialized_service_code_and_message(response, allow_control_chars) if isinstance(self.circuit_breaker_strategy, CircuitBreakerStrategy) and self.circuit_breaker_strategy.is_transient_error(response.status_code, service_code): new_circuit_breaker_state = CircuitBreakerMonitor.get(self.circuit_breaker_name).state if initial_circuit_breaker_state != new_circuit_breaker_state: @@ -592,7 +607,7 @@ def request(self, request): # Don't deserialize data responses. deserialized_data = response.content elif response_type: - deserialized_data = self.deserialize_response_data(response.content, response_type) + deserialized_data = self.deserialize_response_data(response.content, response_type, allow_control_chars) else: deserialized_data = None @@ -755,8 +770,8 @@ def raise_transient_service_error(self, request, response, service_code, message message, original_request=request) - def get_deserialized_service_code_and_message(self, response): - deserialized_data = self.deserialize_response_data(response.content, 'object') + def get_deserialized_service_code_and_message(self, response, allow_control_chars=None): + deserialized_data = self.deserialize_response_data(response.content, 'object', allow_control_chars) service_code = None message = None @@ -771,13 +786,14 @@ def get_deserialized_service_code_and_message(self, response): return service_code, message - def deserialize_response_data(self, response_data, response_type): + def deserialize_response_data(self, response_data, response_type, allow_control_chars=None): """ Deserializes response into an object. :param response_data: object to be deserialized. :param response_type: class literal for deserialized object, or string of class name. + :param allow_control_chars: boolean to allow control character in a response. Defaults to None :return: deserialized object. """ @@ -785,7 +801,10 @@ def deserialize_response_data(self, response_data, response_type): response_data = response_data.decode('utf8') try: - json_response = json.loads(response_data) + should_allow_control_chars = self.should_allow_control_chars(allow_control_chars) + + # Taking the inverse result because strict=True means we do not allow control characters. + json_response = json.loads(response_data, strict=not should_allow_control_chars) # Load everything as JSON and then verify that the object returned # is a string (six.text_type) if the response type is a string. # This is matches the previous behavior, which happens to strip @@ -944,3 +963,22 @@ def get_preferred_retry_strategy(operation_retry_strategy, client_retry_strategy elif retry.GLOBAL_RETRY_STRATEGY: retry_strategy = retry.GLOBAL_RETRY_STRATEGY return retry_strategy + + def should_allow_control_chars(self, allow_control_chars): + request_configuration = allow_control_chars + client_configuration = self._allow_control_chars + global_configuration = BaseClient.ALLOW_CONTROL_CHARACTERS + + # Check at the request level + if request_configuration is not None: + return request_configuration + + # Check at the client level + if client_configuration is not None: + return client_configuration + + # Check at the global level + if global_configuration is True: + return True + + return False diff --git a/src/oci/bastion/__init__.py b/src/oci/bastion/__init__.py index d1d93de59b..5bcbf03ab8 100644 --- a/src/oci/bastion/__init__.py +++ b/src/oci/bastion/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/bastion/bastion_client.py b/src/oci/bastion/bastion_client.py index 1b06d4b428..28c8c98a3f 100644 --- a/src/oci/bastion/bastion_client.py +++ b/src/oci/bastion/bastion_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("bastion", config, signer, bastion_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -127,6 +133,10 @@ def change_bastion_compartment(self, bastion_id, change_bastion_compartment_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -138,6 +148,7 @@ def change_bastion_compartment(self, bastion_id, change_bastion_compartment_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -215,6 +226,10 @@ def create_bastion(self, create_bastion_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.bastion.models.Bastion` :rtype: :class:`~oci.response.Response` @@ -226,6 +241,7 @@ def create_bastion(self, create_bastion_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -294,6 +310,10 @@ def create_session(self, create_session_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.bastion.models.Session` :rtype: :class:`~oci.response.Response` @@ -305,6 +325,7 @@ def create_session(self, create_session_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -373,6 +394,10 @@ def delete_bastion(self, bastion_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -384,6 +409,7 @@ def delete_bastion(self, bastion_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -459,6 +485,10 @@ def delete_session(self, session_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -470,6 +500,7 @@ def delete_session(self, session_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -538,6 +569,10 @@ def get_bastion(self, bastion_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.bastion.models.Bastion` :rtype: :class:`~oci.response.Response` @@ -549,6 +584,7 @@ def get_bastion(self, bastion_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -617,6 +653,10 @@ def get_session(self, session_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.bastion.models.Session` :rtype: :class:`~oci.response.Response` @@ -628,6 +668,7 @@ def get_session(self, session_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -696,6 +737,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.bastion.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -707,6 +752,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -802,6 +848,10 @@ def list_bastions(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.bastion.models.BastionSummary` :rtype: :class:`~oci.response.Response` @@ -813,6 +863,7 @@ def list_bastions(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "bastion_lifecycle_state", @@ -938,6 +989,10 @@ def list_sessions(self, bastion_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.bastion.models.SessionSummary` :rtype: :class:`~oci.response.Response` @@ -949,6 +1004,7 @@ def list_sessions(self, bastion_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "display_name", @@ -1053,6 +1109,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.bastion.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -1064,6 +1124,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1148,6 +1209,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.bastion.models.WorkRequestLogEntry` :rtype: :class:`~oci.response.Response` @@ -1159,6 +1224,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1243,6 +1309,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.bastion.models.WorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -1254,6 +1324,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1331,6 +1402,10 @@ def update_bastion(self, bastion_id, update_bastion_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1342,6 +1417,7 @@ def update_bastion(self, bastion_id, update_bastion_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1422,6 +1498,10 @@ def update_session(self, session_id, update_session_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.bastion.models.Session` :rtype: :class:`~oci.response.Response` @@ -1433,6 +1513,7 @@ def update_session(self, session_id, update_session_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/bastion/bastion_client_composite_operations.py b/src/oci/bastion/bastion_client_composite_operations.py index c99e67a3f3..6f9d265306 100644 --- a/src/oci/bastion/bastion_client_composite_operations.py +++ b/src/oci/bastion/bastion_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/bastion/models/__init__.py b/src/oci/bastion/models/__init__.py index 20e6a9cf37..7be6e8795f 100644 --- a/src/oci/bastion/models/__init__.py +++ b/src/oci/bastion/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/bastion/models/bastion.py b/src/oci/bastion/models/bastion.py index 618b6c6dbb..219538bdbb 100644 --- a/src/oci/bastion/models/bastion.py +++ b/src/oci/bastion/models/bastion.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bastion/models/bastion_summary.py b/src/oci/bastion/models/bastion_summary.py index 698ceddea1..87f264bd9d 100644 --- a/src/oci/bastion/models/bastion_summary.py +++ b/src/oci/bastion/models/bastion_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bastion/models/change_bastion_compartment_details.py b/src/oci/bastion/models/change_bastion_compartment_details.py index 0ee7e915ef..065534d5c1 100644 --- a/src/oci/bastion/models/change_bastion_compartment_details.py +++ b/src/oci/bastion/models/change_bastion_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bastion/models/create_bastion_details.py b/src/oci/bastion/models/create_bastion_details.py index 3488509b41..4b6fb082c4 100644 --- a/src/oci/bastion/models/create_bastion_details.py +++ b/src/oci/bastion/models/create_bastion_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bastion/models/create_managed_ssh_session_target_resource_details.py b/src/oci/bastion/models/create_managed_ssh_session_target_resource_details.py index 401bc210fd..cc4cf75328 100644 --- a/src/oci/bastion/models/create_managed_ssh_session_target_resource_details.py +++ b/src/oci/bastion/models/create_managed_ssh_session_target_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_session_target_resource_details import CreateSessionTargetResourceDetails diff --git a/src/oci/bastion/models/create_port_forwarding_session_target_resource_details.py b/src/oci/bastion/models/create_port_forwarding_session_target_resource_details.py index d7ff1e7c7f..6e0649f7a7 100644 --- a/src/oci/bastion/models/create_port_forwarding_session_target_resource_details.py +++ b/src/oci/bastion/models/create_port_forwarding_session_target_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_session_target_resource_details import CreateSessionTargetResourceDetails diff --git a/src/oci/bastion/models/create_session_details.py b/src/oci/bastion/models/create_session_details.py index 344edbe0f3..759a67bc85 100644 --- a/src/oci/bastion/models/create_session_details.py +++ b/src/oci/bastion/models/create_session_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bastion/models/create_session_target_resource_details.py b/src/oci/bastion/models/create_session_target_resource_details.py index 7341cddb57..d4a031b929 100644 --- a/src/oci/bastion/models/create_session_target_resource_details.py +++ b/src/oci/bastion/models/create_session_target_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bastion/models/managed_ssh_session_target_resource_details.py b/src/oci/bastion/models/managed_ssh_session_target_resource_details.py index 7e5b84bb0b..69bbf7c58b 100644 --- a/src/oci/bastion/models/managed_ssh_session_target_resource_details.py +++ b/src/oci/bastion/models/managed_ssh_session_target_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .target_resource_details import TargetResourceDetails diff --git a/src/oci/bastion/models/port_forwarding_session_target_resource_details.py b/src/oci/bastion/models/port_forwarding_session_target_resource_details.py index ab7efeb7bc..0d79a41a5f 100644 --- a/src/oci/bastion/models/port_forwarding_session_target_resource_details.py +++ b/src/oci/bastion/models/port_forwarding_session_target_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .target_resource_details import TargetResourceDetails diff --git a/src/oci/bastion/models/public_key_details.py b/src/oci/bastion/models/public_key_details.py index 68126c5851..9e4f169ca6 100644 --- a/src/oci/bastion/models/public_key_details.py +++ b/src/oci/bastion/models/public_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bastion/models/session.py b/src/oci/bastion/models/session.py index b0a5b6fc63..29c0a98ea0 100644 --- a/src/oci/bastion/models/session.py +++ b/src/oci/bastion/models/session.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bastion/models/session_summary.py b/src/oci/bastion/models/session_summary.py index d11fd0323a..49ce2ab653 100644 --- a/src/oci/bastion/models/session_summary.py +++ b/src/oci/bastion/models/session_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bastion/models/target_resource_details.py b/src/oci/bastion/models/target_resource_details.py index 1febca6710..58ad2b1775 100644 --- a/src/oci/bastion/models/target_resource_details.py +++ b/src/oci/bastion/models/target_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bastion/models/update_bastion_details.py b/src/oci/bastion/models/update_bastion_details.py index fef66c1a5b..00459a02b1 100644 --- a/src/oci/bastion/models/update_bastion_details.py +++ b/src/oci/bastion/models/update_bastion_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bastion/models/update_session_details.py b/src/oci/bastion/models/update_session_details.py index 1ad07fcced..c29d475f43 100644 --- a/src/oci/bastion/models/update_session_details.py +++ b/src/oci/bastion/models/update_session_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bastion/models/work_request.py b/src/oci/bastion/models/work_request.py index e6a15b4468..ca4ab87536 100644 --- a/src/oci/bastion/models/work_request.py +++ b/src/oci/bastion/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bastion/models/work_request_error.py b/src/oci/bastion/models/work_request_error.py index 6aeda978f7..4a02c62122 100644 --- a/src/oci/bastion/models/work_request_error.py +++ b/src/oci/bastion/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bastion/models/work_request_log_entry.py b/src/oci/bastion/models/work_request_log_entry.py index cd87d63022..b60fd9e2ea 100644 --- a/src/oci/bastion/models/work_request_log_entry.py +++ b/src/oci/bastion/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bastion/models/work_request_resource.py b/src/oci/bastion/models/work_request_resource.py index 68da834ccf..4ba6865cf5 100644 --- a/src/oci/bastion/models/work_request_resource.py +++ b/src/oci/bastion/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bastion/models/work_request_summary.py b/src/oci/bastion/models/work_request_summary.py index dd2ad43b7e..4d3d80ed47 100644 --- a/src/oci/bastion/models/work_request_summary.py +++ b/src/oci/bastion/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/__init__.py b/src/oci/bds/__init__.py index 191b052912..627fcbf634 100644 --- a/src/oci/bds/__init__.py +++ b/src/oci/bds/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/bds/bds_client.py b/src/oci/bds/bds_client.py index 3dd6fb4366..66b6ad06a2 100644 --- a/src/oci/bds/bds_client.py +++ b/src/oci/bds/bds_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("bds", config, signer, bds_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -137,6 +143,10 @@ def activate_bds_metastore_configuration(self, bds_instance_id, metastore_config To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -148,6 +158,7 @@ def activate_bds_metastore_configuration(self, bds_instance_id, metastore_config # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -239,6 +250,10 @@ def add_auto_scaling_configuration(self, bds_instance_id, add_auto_scaling_confi To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -250,6 +265,7 @@ def add_auto_scaling_configuration(self, bds_instance_id, add_auto_scaling_confi # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -340,6 +356,10 @@ def add_block_storage(self, bds_instance_id, add_block_storage_details, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -351,6 +371,7 @@ def add_block_storage(self, bds_instance_id, add_block_storage_details, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -441,6 +462,10 @@ def add_cloud_sql(self, bds_instance_id, add_cloud_sql_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -452,6 +477,7 @@ def add_cloud_sql(self, bds_instance_id, add_cloud_sql_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -542,6 +568,10 @@ def add_worker_nodes(self, bds_instance_id, add_worker_nodes_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -553,6 +583,7 @@ def add_worker_nodes(self, bds_instance_id, add_worker_nodes_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -643,6 +674,10 @@ def change_bds_instance_compartment(self, bds_instance_id, change_bds_instance_c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -654,6 +689,7 @@ def change_bds_instance_compartment(self, bds_instance_id, change_bds_instance_c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -744,6 +780,10 @@ def change_shape(self, bds_instance_id, change_shape_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -755,6 +795,7 @@ def change_shape(self, bds_instance_id, change_shape_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -838,6 +879,10 @@ def create_bds_api_key(self, bds_instance_id, create_bds_api_key_details, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -849,6 +894,7 @@ def create_bds_api_key(self, bds_instance_id, create_bds_api_key_details, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -927,6 +973,10 @@ def create_bds_instance(self, create_bds_instance_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -938,6 +988,7 @@ def create_bds_instance(self, create_bds_instance_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1007,6 +1058,10 @@ def create_bds_metastore_configuration(self, bds_instance_id, create_bds_metasto To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1018,6 +1073,7 @@ def create_bds_metastore_configuration(self, bds_instance_id, create_bds_metasto # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1099,6 +1155,10 @@ def delete_bds_api_key(self, bds_instance_id, api_key_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1110,6 +1170,7 @@ def delete_bds_api_key(self, bds_instance_id, api_key_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1186,6 +1247,10 @@ def delete_bds_instance(self, bds_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1197,6 +1262,7 @@ def delete_bds_instance(self, bds_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1275,6 +1341,10 @@ def delete_bds_metastore_configuration(self, bds_instance_id, metastore_config_i To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1286,6 +1356,7 @@ def delete_bds_metastore_configuration(self, bds_instance_id, metastore_config_i # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1358,6 +1429,10 @@ def get_auto_scaling_configuration(self, bds_instance_id, auto_scaling_configura To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.bds.models.AutoScalingConfiguration` :rtype: :class:`~oci.response.Response` @@ -1369,6 +1444,7 @@ def get_auto_scaling_configuration(self, bds_instance_id, auto_scaling_configura # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1441,6 +1517,10 @@ def get_bds_api_key(self, bds_instance_id, api_key_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.bds.models.BdsApiKey` :rtype: :class:`~oci.response.Response` @@ -1452,6 +1532,7 @@ def get_bds_api_key(self, bds_instance_id, api_key_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1521,6 +1602,10 @@ def get_bds_instance(self, bds_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.bds.models.BdsInstance` :rtype: :class:`~oci.response.Response` @@ -1532,6 +1617,7 @@ def get_bds_instance(self, bds_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1603,6 +1689,10 @@ def get_bds_metastore_configuration(self, bds_instance_id, metastore_config_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.bds.models.BdsMetastoreConfiguration` :rtype: :class:`~oci.response.Response` @@ -1614,6 +1704,7 @@ def get_bds_metastore_configuration(self, bds_instance_id, metastore_config_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1683,6 +1774,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.bds.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -1694,6 +1789,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1789,6 +1885,10 @@ def list_auto_scaling_configurations(self, compartment_id, bds_instance_id, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.bds.models.AutoScalingConfigurationSummary` :rtype: :class:`~oci.response.Response` @@ -1800,6 +1900,7 @@ def list_auto_scaling_configurations(self, compartment_id, bds_instance_id, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -1935,6 +2036,10 @@ def list_bds_api_keys(self, bds_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.bds.models.BdsApiKeySummary` :rtype: :class:`~oci.response.Response` @@ -1946,6 +2051,7 @@ def list_bds_api_keys(self, bds_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "user_id", @@ -2079,6 +2185,10 @@ def list_bds_instances(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.bds.models.BdsInstanceSummary` :rtype: :class:`~oci.response.Response` @@ -2090,6 +2200,7 @@ def list_bds_instances(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "page", @@ -2221,6 +2332,10 @@ def list_bds_metastore_configurations(self, bds_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.bds.models.BdsMetastoreConfigurationSummary` :rtype: :class:`~oci.response.Response` @@ -2232,6 +2347,7 @@ def list_bds_metastore_configurations(self, bds_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "metastore_type", "metastore_id", @@ -2368,6 +2484,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.bds.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -2379,6 +2499,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -2491,6 +2612,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.bds.models.WorkRequestLogEntry` :rtype: :class:`~oci.response.Response` @@ -2502,6 +2627,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -2617,6 +2743,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.bds.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -2628,6 +2758,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "resource_id", "page", @@ -2735,6 +2866,10 @@ def remove_auto_scaling_configuration(self, bds_instance_id, auto_scaling_config To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2746,6 +2881,7 @@ def remove_auto_scaling_configuration(self, bds_instance_id, auto_scaling_config # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -2837,6 +2973,10 @@ def remove_cloud_sql(self, bds_instance_id, remove_cloud_sql_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2848,6 +2988,7 @@ def remove_cloud_sql(self, bds_instance_id, remove_cloud_sql_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -2938,6 +3079,10 @@ def restart_node(self, bds_instance_id, restart_node_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2949,6 +3094,7 @@ def restart_node(self, bds_instance_id, restart_node_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -3035,6 +3181,10 @@ def test_bds_metastore_configuration(self, bds_instance_id, metastore_config_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3046,6 +3196,7 @@ def test_bds_metastore_configuration(self, bds_instance_id, metastore_config_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -3123,6 +3274,10 @@ def test_bds_object_storage_connection(self, bds_instance_id, api_key_id, test_b To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3134,6 +3289,7 @@ def test_bds_object_storage_connection(self, bds_instance_id, api_key_id, test_b # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3223,6 +3379,10 @@ def update_auto_scaling_configuration(self, bds_instance_id, auto_scaling_config To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3234,6 +3394,7 @@ def update_auto_scaling_configuration(self, bds_instance_id, auto_scaling_config # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -3318,6 +3479,10 @@ def update_bds_instance(self, bds_instance_id, update_bds_instance_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3329,6 +3494,7 @@ def update_bds_instance(self, bds_instance_id, update_bds_instance_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3412,6 +3578,10 @@ def update_bds_metastore_configuration(self, bds_instance_id, metastore_config_i To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3423,6 +3593,7 @@ def update_bds_metastore_configuration(self, bds_instance_id, metastore_config_i # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" diff --git a/src/oci/bds/bds_client_composite_operations.py b/src/oci/bds/bds_client_composite_operations.py index c23a702f25..bfbcd557ee 100644 --- a/src/oci/bds/bds_client_composite_operations.py +++ b/src/oci/bds/bds_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/bds/models/__init__.py b/src/oci/bds/models/__init__.py index c247b8827e..6649bd0022 100644 --- a/src/oci/bds/models/__init__.py +++ b/src/oci/bds/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/bds/models/activate_bds_metastore_configuration_details.py b/src/oci/bds/models/activate_bds_metastore_configuration_details.py index 651d055250..bce3deb909 100644 --- a/src/oci/bds/models/activate_bds_metastore_configuration_details.py +++ b/src/oci/bds/models/activate_bds_metastore_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/add_auto_scaling_configuration_details.py b/src/oci/bds/models/add_auto_scaling_configuration_details.py index ea85172be5..550ce56f42 100644 --- a/src/oci/bds/models/add_auto_scaling_configuration_details.py +++ b/src/oci/bds/models/add_auto_scaling_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/add_block_storage_details.py b/src/oci/bds/models/add_block_storage_details.py index cbac23d6a2..ca0d2a4412 100644 --- a/src/oci/bds/models/add_block_storage_details.py +++ b/src/oci/bds/models/add_block_storage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/add_cloud_sql_details.py b/src/oci/bds/models/add_cloud_sql_details.py index e7cebcabbd..cac0bb0313 100644 --- a/src/oci/bds/models/add_cloud_sql_details.py +++ b/src/oci/bds/models/add_cloud_sql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/add_worker_nodes_details.py b/src/oci/bds/models/add_worker_nodes_details.py index 4ff1140fa2..39f4167b5f 100644 --- a/src/oci/bds/models/add_worker_nodes_details.py +++ b/src/oci/bds/models/add_worker_nodes_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/auto_scale_policy.py b/src/oci/bds/models/auto_scale_policy.py index a19f12eeee..a0d31dd27d 100644 --- a/src/oci/bds/models/auto_scale_policy.py +++ b/src/oci/bds/models/auto_scale_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/auto_scale_policy_metric_rule.py b/src/oci/bds/models/auto_scale_policy_metric_rule.py index 5e5750d703..20f7182cf0 100644 --- a/src/oci/bds/models/auto_scale_policy_metric_rule.py +++ b/src/oci/bds/models/auto_scale_policy_metric_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/auto_scale_policy_rule.py b/src/oci/bds/models/auto_scale_policy_rule.py index 2f2e5c49f3..a332d520ef 100644 --- a/src/oci/bds/models/auto_scale_policy_rule.py +++ b/src/oci/bds/models/auto_scale_policy_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/auto_scaling_configuration.py b/src/oci/bds/models/auto_scaling_configuration.py index b2db05a408..43f8865a11 100644 --- a/src/oci/bds/models/auto_scaling_configuration.py +++ b/src/oci/bds/models/auto_scaling_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/auto_scaling_configuration_summary.py b/src/oci/bds/models/auto_scaling_configuration_summary.py index 8e9b97ee9d..648a0b3ae7 100644 --- a/src/oci/bds/models/auto_scaling_configuration_summary.py +++ b/src/oci/bds/models/auto_scaling_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/bds_api_key.py b/src/oci/bds/models/bds_api_key.py index 28a0bacca9..92bfc6a291 100644 --- a/src/oci/bds/models/bds_api_key.py +++ b/src/oci/bds/models/bds_api_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/bds_api_key_summary.py b/src/oci/bds/models/bds_api_key_summary.py index 4a44950ff2..bbc06b0718 100644 --- a/src/oci/bds/models/bds_api_key_summary.py +++ b/src/oci/bds/models/bds_api_key_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/bds_instance.py b/src/oci/bds/models/bds_instance.py index 24bf5a0084..4021e83d4b 100644 --- a/src/oci/bds/models/bds_instance.py +++ b/src/oci/bds/models/bds_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/bds_instance_summary.py b/src/oci/bds/models/bds_instance_summary.py index 7b4bb16fe1..308c452e7d 100644 --- a/src/oci/bds/models/bds_instance_summary.py +++ b/src/oci/bds/models/bds_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/bds_metastore_configuration.py b/src/oci/bds/models/bds_metastore_configuration.py index 552000681f..1c34786850 100644 --- a/src/oci/bds/models/bds_metastore_configuration.py +++ b/src/oci/bds/models/bds_metastore_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/bds_metastore_configuration_summary.py b/src/oci/bds/models/bds_metastore_configuration_summary.py index c677096151..b08f4fa317 100644 --- a/src/oci/bds/models/bds_metastore_configuration_summary.py +++ b/src/oci/bds/models/bds_metastore_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/change_bds_instance_compartment_details.py b/src/oci/bds/models/change_bds_instance_compartment_details.py index 03f76d665a..817da9f700 100644 --- a/src/oci/bds/models/change_bds_instance_compartment_details.py +++ b/src/oci/bds/models/change_bds_instance_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/change_shape_details.py b/src/oci/bds/models/change_shape_details.py index 2b68c1d51a..613d6ebf58 100644 --- a/src/oci/bds/models/change_shape_details.py +++ b/src/oci/bds/models/change_shape_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/change_shape_nodes.py b/src/oci/bds/models/change_shape_nodes.py index 97bbcd0f9c..b17b652dcb 100644 --- a/src/oci/bds/models/change_shape_nodes.py +++ b/src/oci/bds/models/change_shape_nodes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/cloud_sql_details.py b/src/oci/bds/models/cloud_sql_details.py index fd7f4b27be..07205c499f 100644 --- a/src/oci/bds/models/cloud_sql_details.py +++ b/src/oci/bds/models/cloud_sql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/cluster_details.py b/src/oci/bds/models/cluster_details.py index 4ed3eb0b08..2470f8709c 100644 --- a/src/oci/bds/models/cluster_details.py +++ b/src/oci/bds/models/cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/create_bds_api_key_details.py b/src/oci/bds/models/create_bds_api_key_details.py index cb1e4752fd..10341a59e3 100644 --- a/src/oci/bds/models/create_bds_api_key_details.py +++ b/src/oci/bds/models/create_bds_api_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/create_bds_instance_details.py b/src/oci/bds/models/create_bds_instance_details.py index 941289568d..9311e10639 100644 --- a/src/oci/bds/models/create_bds_instance_details.py +++ b/src/oci/bds/models/create_bds_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/create_bds_metastore_configuration_details.py b/src/oci/bds/models/create_bds_metastore_configuration_details.py index 89f6dc9f5a..59ee8a7b65 100644 --- a/src/oci/bds/models/create_bds_metastore_configuration_details.py +++ b/src/oci/bds/models/create_bds_metastore_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/create_node_details.py b/src/oci/bds/models/create_node_details.py index 0c50d6e365..1029c9edd5 100644 --- a/src/oci/bds/models/create_node_details.py +++ b/src/oci/bds/models/create_node_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/default_error.py b/src/oci/bds/models/default_error.py index b04537aefb..101b1eaee1 100644 --- a/src/oci/bds/models/default_error.py +++ b/src/oci/bds/models/default_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/kerberos_details.py b/src/oci/bds/models/kerberos_details.py index 1d171f14bc..b10f441bd4 100644 --- a/src/oci/bds/models/kerberos_details.py +++ b/src/oci/bds/models/kerberos_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/metric_threshold_rule.py b/src/oci/bds/models/metric_threshold_rule.py index 91e7089931..b4a95c65ca 100644 --- a/src/oci/bds/models/metric_threshold_rule.py +++ b/src/oci/bds/models/metric_threshold_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/network_config.py b/src/oci/bds/models/network_config.py index bf3fae22f9..0f1ae0b40b 100644 --- a/src/oci/bds/models/network_config.py +++ b/src/oci/bds/models/network_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/node.py b/src/oci/bds/models/node.py index 1eb578347b..bc36f97ee5 100644 --- a/src/oci/bds/models/node.py +++ b/src/oci/bds/models/node.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/remove_auto_scaling_configuration_details.py b/src/oci/bds/models/remove_auto_scaling_configuration_details.py index a75f824c44..8ee2b3c9e7 100644 --- a/src/oci/bds/models/remove_auto_scaling_configuration_details.py +++ b/src/oci/bds/models/remove_auto_scaling_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/remove_cloud_sql_details.py b/src/oci/bds/models/remove_cloud_sql_details.py index a47ae71702..ba71ac103e 100644 --- a/src/oci/bds/models/remove_cloud_sql_details.py +++ b/src/oci/bds/models/remove_cloud_sql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/restart_node_details.py b/src/oci/bds/models/restart_node_details.py index a6e2a74efa..00403cc367 100644 --- a/src/oci/bds/models/restart_node_details.py +++ b/src/oci/bds/models/restart_node_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/test_bds_metastore_configuration_details.py b/src/oci/bds/models/test_bds_metastore_configuration_details.py index 4f945f2c2d..23a19a9459 100644 --- a/src/oci/bds/models/test_bds_metastore_configuration_details.py +++ b/src/oci/bds/models/test_bds_metastore_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/test_bds_object_storage_connection_details.py b/src/oci/bds/models/test_bds_object_storage_connection_details.py index 9205b55245..c301fb920c 100644 --- a/src/oci/bds/models/test_bds_object_storage_connection_details.py +++ b/src/oci/bds/models/test_bds_object_storage_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/update_auto_scaling_configuration_details.py b/src/oci/bds/models/update_auto_scaling_configuration_details.py index 6a80afac59..c43dbe607b 100644 --- a/src/oci/bds/models/update_auto_scaling_configuration_details.py +++ b/src/oci/bds/models/update_auto_scaling_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/update_bds_instance_details.py b/src/oci/bds/models/update_bds_instance_details.py index 0f4cd421bf..664c3a83a5 100644 --- a/src/oci/bds/models/update_bds_instance_details.py +++ b/src/oci/bds/models/update_bds_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/update_bds_metastore_configuration_details.py b/src/oci/bds/models/update_bds_metastore_configuration_details.py index c7fdf8c82e..bbc772bfc3 100644 --- a/src/oci/bds/models/update_bds_metastore_configuration_details.py +++ b/src/oci/bds/models/update_bds_metastore_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/volume_attachment_detail.py b/src/oci/bds/models/volume_attachment_detail.py index e6301d6df8..d9f3d44a5b 100644 --- a/src/oci/bds/models/volume_attachment_detail.py +++ b/src/oci/bds/models/volume_attachment_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/work_request.py b/src/oci/bds/models/work_request.py index a4ca951843..1ddf302833 100644 --- a/src/oci/bds/models/work_request.py +++ b/src/oci/bds/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/work_request_error.py b/src/oci/bds/models/work_request_error.py index eef5aa8b56..c7aa5af806 100644 --- a/src/oci/bds/models/work_request_error.py +++ b/src/oci/bds/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/work_request_log_entry.py b/src/oci/bds/models/work_request_log_entry.py index 583ba380e1..996b68771f 100644 --- a/src/oci/bds/models/work_request_log_entry.py +++ b/src/oci/bds/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/bds/models/work_request_resource.py b/src/oci/bds/models/work_request_resource.py index a47b9a6989..a62f187eb2 100644 --- a/src/oci/bds/models/work_request_resource.py +++ b/src/oci/bds/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/__init__.py b/src/oci/blockchain/__init__.py index 31bde4ced4..575ed11d5d 100644 --- a/src/oci/blockchain/__init__.py +++ b/src/oci/blockchain/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/blockchain/blockchain_platform_client.py b/src/oci/blockchain/blockchain_platform_client.py index 5d02ec71bf..95f9be8808 100644 --- a/src/oci/blockchain/blockchain_platform_client.py +++ b/src/oci/blockchain/blockchain_platform_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("blockchain_platform", config, signer, blockchain_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -134,6 +140,10 @@ def change_blockchain_platform_compartment(self, blockchain_platform_id, change_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -145,6 +155,7 @@ def change_blockchain_platform_compartment(self, blockchain_platform_id, change_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -225,6 +236,10 @@ def create_blockchain_platform(self, create_blockchain_platform_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -236,6 +251,7 @@ def create_blockchain_platform(self, create_blockchain_platform_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -312,6 +328,10 @@ def create_osn(self, blockchain_platform_id, create_osn_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -323,6 +343,7 @@ def create_osn(self, blockchain_platform_id, create_osn_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -406,6 +427,10 @@ def create_peer(self, blockchain_platform_id, create_peer_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -417,6 +442,7 @@ def create_peer(self, blockchain_platform_id, create_peer_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -502,6 +528,10 @@ def delete_blockchain_platform(self, blockchain_platform_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -513,6 +543,7 @@ def delete_blockchain_platform(self, blockchain_platform_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -594,6 +625,10 @@ def delete_osn(self, blockchain_platform_id, osn_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -605,6 +640,7 @@ def delete_osn(self, blockchain_platform_id, osn_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -691,6 +727,10 @@ def delete_peer(self, blockchain_platform_id, peer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -702,6 +742,7 @@ def delete_peer(self, blockchain_platform_id, peer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -781,6 +822,10 @@ def delete_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -792,6 +837,7 @@ def delete_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -860,6 +906,10 @@ def get_blockchain_platform(self, blockchain_platform_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.blockchain.models.BlockchainPlatform` :rtype: :class:`~oci.response.Response` @@ -871,6 +921,7 @@ def get_blockchain_platform(self, blockchain_platform_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -942,6 +993,10 @@ def get_osn(self, blockchain_platform_id, osn_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.blockchain.models.Osn` :rtype: :class:`~oci.response.Response` @@ -953,6 +1008,7 @@ def get_osn(self, blockchain_platform_id, osn_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1025,6 +1081,10 @@ def get_peer(self, blockchain_platform_id, peer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.blockchain.models.Peer` :rtype: :class:`~oci.response.Response` @@ -1036,6 +1096,7 @@ def get_peer(self, blockchain_platform_id, peer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1105,6 +1166,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.blockchain.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -1116,6 +1181,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1190,6 +1256,10 @@ def list_blockchain_platform_patches(self, blockchain_platform_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.blockchain.models.BlockchainPlatformPatchCollection` :rtype: :class:`~oci.response.Response` @@ -1201,6 +1271,7 @@ def list_blockchain_platform_patches(self, blockchain_platform_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -1305,6 +1376,10 @@ def list_blockchain_platforms(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.blockchain.models.BlockchainPlatformCollection` :rtype: :class:`~oci.response.Response` @@ -1316,6 +1391,7 @@ def list_blockchain_platforms(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "page", @@ -1439,6 +1515,10 @@ def list_osns(self, blockchain_platform_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.blockchain.models.OsnCollection` :rtype: :class:`~oci.response.Response` @@ -1450,6 +1530,7 @@ def list_osns(self, blockchain_platform_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "opc_request_id", @@ -1578,6 +1659,10 @@ def list_peers(self, blockchain_platform_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.blockchain.models.PeerCollection` :rtype: :class:`~oci.response.Response` @@ -1589,6 +1674,7 @@ def list_peers(self, blockchain_platform_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "opc_request_id", @@ -1696,6 +1782,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.blockchain.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -1707,6 +1797,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1791,6 +1882,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.blockchain.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -1802,6 +1897,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1899,6 +1995,10 @@ def list_work_requests(self, compartment_id, blockchain_platform_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.blockchain.models.WorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -1910,6 +2010,7 @@ def list_work_requests(self, compartment_id, blockchain_platform_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "sort_order", "sort_by", @@ -1999,6 +2100,10 @@ def preview_scale_blockchain_platform(self, blockchain_platform_id, scale_blockc To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.blockchain.models.ScaledBlockchainPlatformPreview` :rtype: :class:`~oci.response.Response` @@ -2010,6 +2115,7 @@ def preview_scale_blockchain_platform(self, blockchain_platform_id, scale_blockc # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2097,6 +2203,10 @@ def scale_blockchain_platform(self, blockchain_platform_id, scale_blockchain_pla To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2108,6 +2218,7 @@ def scale_blockchain_platform(self, blockchain_platform_id, scale_blockchain_pla # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2195,6 +2306,10 @@ def start_blockchain_platform(self, blockchain_platform_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2206,6 +2321,7 @@ def start_blockchain_platform(self, blockchain_platform_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2291,6 +2407,10 @@ def stop_blockchain_platform(self, blockchain_platform_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2302,6 +2422,7 @@ def stop_blockchain_platform(self, blockchain_platform_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2390,6 +2511,10 @@ def update_blockchain_platform(self, update_blockchain_platform_details, blockch To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2401,6 +2526,7 @@ def update_blockchain_platform(self, update_blockchain_platform_details, blockch # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -2494,6 +2620,10 @@ def update_osn(self, blockchain_platform_id, osn_id, update_osn_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2505,6 +2635,7 @@ def update_osn(self, blockchain_platform_id, osn_id, update_osn_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2599,6 +2730,10 @@ def update_peer(self, blockchain_platform_id, peer_id, update_peer_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2610,6 +2745,7 @@ def update_peer(self, blockchain_platform_id, peer_id, update_peer_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2701,6 +2837,10 @@ def upgrade_blockchain_platform(self, upgrade_blockchain_platform_details, block To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2712,6 +2852,7 @@ def upgrade_blockchain_platform(self, upgrade_blockchain_platform_details, block # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", diff --git a/src/oci/blockchain/blockchain_platform_client_composite_operations.py b/src/oci/blockchain/blockchain_platform_client_composite_operations.py index 7e5bfd8804..f6504e1461 100644 --- a/src/oci/blockchain/blockchain_platform_client_composite_operations.py +++ b/src/oci/blockchain/blockchain_platform_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/blockchain/models/__init__.py b/src/oci/blockchain/models/__init__.py index e7b9d7b824..b77c31950b 100644 --- a/src/oci/blockchain/models/__init__.py +++ b/src/oci/blockchain/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/blockchain/models/availability_domain.py b/src/oci/blockchain/models/availability_domain.py index a341dc5bb2..cb7dcf62a1 100644 --- a/src/oci/blockchain/models/availability_domain.py +++ b/src/oci/blockchain/models/availability_domain.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/blockchain_platform.py b/src/oci/blockchain/models/blockchain_platform.py index 4ed2b0d2a3..02ab53e1a5 100644 --- a/src/oci/blockchain/models/blockchain_platform.py +++ b/src/oci/blockchain/models/blockchain_platform.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/blockchain_platform_by_hostname.py b/src/oci/blockchain/models/blockchain_platform_by_hostname.py index 2cf4c733b8..d731c985f2 100644 --- a/src/oci/blockchain/models/blockchain_platform_by_hostname.py +++ b/src/oci/blockchain/models/blockchain_platform_by_hostname.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/blockchain_platform_collection.py b/src/oci/blockchain/models/blockchain_platform_collection.py index 9c7f50f9a9..780e06760f 100644 --- a/src/oci/blockchain/models/blockchain_platform_collection.py +++ b/src/oci/blockchain/models/blockchain_platform_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/blockchain_platform_component_details.py b/src/oci/blockchain/models/blockchain_platform_component_details.py index aa31eba5f0..533bccc7a9 100644 --- a/src/oci/blockchain/models/blockchain_platform_component_details.py +++ b/src/oci/blockchain/models/blockchain_platform_component_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/blockchain_platform_patch_collection.py b/src/oci/blockchain/models/blockchain_platform_patch_collection.py index 1dacb5521d..d8b9ae70df 100644 --- a/src/oci/blockchain/models/blockchain_platform_patch_collection.py +++ b/src/oci/blockchain/models/blockchain_platform_patch_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/blockchain_platform_patch_summary.py b/src/oci/blockchain/models/blockchain_platform_patch_summary.py index c4dfe0a2fc..4ee11cb400 100644 --- a/src/oci/blockchain/models/blockchain_platform_patch_summary.py +++ b/src/oci/blockchain/models/blockchain_platform_patch_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/blockchain_platform_summary.py b/src/oci/blockchain/models/blockchain_platform_summary.py index c149eee82a..b23d10e3e6 100644 --- a/src/oci/blockchain/models/blockchain_platform_summary.py +++ b/src/oci/blockchain/models/blockchain_platform_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/change_blockchain_platform_compartment_details.py b/src/oci/blockchain/models/change_blockchain_platform_compartment_details.py index cca066a4a1..1b8f9e879b 100644 --- a/src/oci/blockchain/models/change_blockchain_platform_compartment_details.py +++ b/src/oci/blockchain/models/change_blockchain_platform_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/create_blockchain_platform_details.py b/src/oci/blockchain/models/create_blockchain_platform_details.py index 2371ec756c..2cbbd89b08 100644 --- a/src/oci/blockchain/models/create_blockchain_platform_details.py +++ b/src/oci/blockchain/models/create_blockchain_platform_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/create_osn_details.py b/src/oci/blockchain/models/create_osn_details.py index 9610bcb49c..648e32419b 100644 --- a/src/oci/blockchain/models/create_osn_details.py +++ b/src/oci/blockchain/models/create_osn_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/create_peer_details.py b/src/oci/blockchain/models/create_peer_details.py index 4c2ddd8310..7bb26f0aa9 100644 --- a/src/oci/blockchain/models/create_peer_details.py +++ b/src/oci/blockchain/models/create_peer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/metadata_details.py b/src/oci/blockchain/models/metadata_details.py index d4890de86c..33c3c82c02 100644 --- a/src/oci/blockchain/models/metadata_details.py +++ b/src/oci/blockchain/models/metadata_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/modify_peer_details.py b/src/oci/blockchain/models/modify_peer_details.py index 43a36fdd18..0a052e5e92 100644 --- a/src/oci/blockchain/models/modify_peer_details.py +++ b/src/oci/blockchain/models/modify_peer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/ocpu_allocation_number_param.py b/src/oci/blockchain/models/ocpu_allocation_number_param.py index 78e42a0d65..ca7f9d021a 100644 --- a/src/oci/blockchain/models/ocpu_allocation_number_param.py +++ b/src/oci/blockchain/models/ocpu_allocation_number_param.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/ocpu_utilization_info.py b/src/oci/blockchain/models/ocpu_utilization_info.py index 8a2b865c84..9268769ea0 100644 --- a/src/oci/blockchain/models/ocpu_utilization_info.py +++ b/src/oci/blockchain/models/ocpu_utilization_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/osn.py b/src/oci/blockchain/models/osn.py index 3a337f699c..8c4130d0b1 100644 --- a/src/oci/blockchain/models/osn.py +++ b/src/oci/blockchain/models/osn.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/osn_collection.py b/src/oci/blockchain/models/osn_collection.py index 19c94d15b7..beea829894 100644 --- a/src/oci/blockchain/models/osn_collection.py +++ b/src/oci/blockchain/models/osn_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/osn_summary.py b/src/oci/blockchain/models/osn_summary.py index ca4d353198..c8fba7b1ed 100644 --- a/src/oci/blockchain/models/osn_summary.py +++ b/src/oci/blockchain/models/osn_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/peer.py b/src/oci/blockchain/models/peer.py index ed02eb2f69..5fc046535b 100644 --- a/src/oci/blockchain/models/peer.py +++ b/src/oci/blockchain/models/peer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/peer_collection.py b/src/oci/blockchain/models/peer_collection.py index 22edf6773c..2f2ed01273 100644 --- a/src/oci/blockchain/models/peer_collection.py +++ b/src/oci/blockchain/models/peer_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/peer_role.py b/src/oci/blockchain/models/peer_role.py index 29b1a3e32d..321fa8abde 100644 --- a/src/oci/blockchain/models/peer_role.py +++ b/src/oci/blockchain/models/peer_role.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/peer_summary.py b/src/oci/blockchain/models/peer_summary.py index 2fdf4152f2..a8b55a9d94 100644 --- a/src/oci/blockchain/models/peer_summary.py +++ b/src/oci/blockchain/models/peer_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/replica_details.py b/src/oci/blockchain/models/replica_details.py index 06d317facd..c5bcb8d24f 100644 --- a/src/oci/blockchain/models/replica_details.py +++ b/src/oci/blockchain/models/replica_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/scale_blockchain_platform_details.py b/src/oci/blockchain/models/scale_blockchain_platform_details.py index 3d8ba748f7..58a38a1bf5 100644 --- a/src/oci/blockchain/models/scale_blockchain_platform_details.py +++ b/src/oci/blockchain/models/scale_blockchain_platform_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/scale_storage_details.py b/src/oci/blockchain/models/scale_storage_details.py index d5bbff4c80..760b5736fb 100644 --- a/src/oci/blockchain/models/scale_storage_details.py +++ b/src/oci/blockchain/models/scale_storage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/scaled_blockchain_platform_preview.py b/src/oci/blockchain/models/scaled_blockchain_platform_preview.py index 26ec816ef2..e02485b200 100644 --- a/src/oci/blockchain/models/scaled_blockchain_platform_preview.py +++ b/src/oci/blockchain/models/scaled_blockchain_platform_preview.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/scaled_platform_metering_preview.py b/src/oci/blockchain/models/scaled_platform_metering_preview.py index 41e862f73a..6fdc725e0b 100644 --- a/src/oci/blockchain/models/scaled_platform_metering_preview.py +++ b/src/oci/blockchain/models/scaled_platform_metering_preview.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/update_blockchain_platform_details.py b/src/oci/blockchain/models/update_blockchain_platform_details.py index a340dfcdb0..f40e9767f1 100644 --- a/src/oci/blockchain/models/update_blockchain_platform_details.py +++ b/src/oci/blockchain/models/update_blockchain_platform_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/update_osn_details.py b/src/oci/blockchain/models/update_osn_details.py index 876716ed58..a3c638a63c 100644 --- a/src/oci/blockchain/models/update_osn_details.py +++ b/src/oci/blockchain/models/update_osn_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/update_peer_details.py b/src/oci/blockchain/models/update_peer_details.py index 27b0669c9d..5bd3e308b0 100644 --- a/src/oci/blockchain/models/update_peer_details.py +++ b/src/oci/blockchain/models/update_peer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/upgrade_blockchain_platform_details.py b/src/oci/blockchain/models/upgrade_blockchain_platform_details.py index 5d66271eca..b02b5e564c 100644 --- a/src/oci/blockchain/models/upgrade_blockchain_platform_details.py +++ b/src/oci/blockchain/models/upgrade_blockchain_platform_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/work_request.py b/src/oci/blockchain/models/work_request.py index 123b5f2fa8..6569d0d9a3 100644 --- a/src/oci/blockchain/models/work_request.py +++ b/src/oci/blockchain/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/work_request_collection.py b/src/oci/blockchain/models/work_request_collection.py index 449cff631c..d625acc500 100644 --- a/src/oci/blockchain/models/work_request_collection.py +++ b/src/oci/blockchain/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/work_request_error.py b/src/oci/blockchain/models/work_request_error.py index 04dde83e08..26ac6a8cc9 100644 --- a/src/oci/blockchain/models/work_request_error.py +++ b/src/oci/blockchain/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/work_request_error_collection.py b/src/oci/blockchain/models/work_request_error_collection.py index 02434853bf..1da3597f48 100644 --- a/src/oci/blockchain/models/work_request_error_collection.py +++ b/src/oci/blockchain/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/work_request_log_entry.py b/src/oci/blockchain/models/work_request_log_entry.py index 8d02a6a994..7b37ab8d12 100644 --- a/src/oci/blockchain/models/work_request_log_entry.py +++ b/src/oci/blockchain/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/work_request_log_entry_collection.py b/src/oci/blockchain/models/work_request_log_entry_collection.py index f06cf2981e..e6219460d3 100644 --- a/src/oci/blockchain/models/work_request_log_entry_collection.py +++ b/src/oci/blockchain/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/work_request_resource.py b/src/oci/blockchain/models/work_request_resource.py index 91c94bf49b..ef84512299 100644 --- a/src/oci/blockchain/models/work_request_resource.py +++ b/src/oci/blockchain/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/work_request_resource_sub_type_detail.py b/src/oci/blockchain/models/work_request_resource_sub_type_detail.py index f2f07945e6..444f8ba395 100644 --- a/src/oci/blockchain/models/work_request_resource_sub_type_detail.py +++ b/src/oci/blockchain/models/work_request_resource_sub_type_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/blockchain/models/work_request_summary.py b/src/oci/blockchain/models/work_request_summary.py index c55075d8ac..0cf4838571 100644 --- a/src/oci/blockchain/models/work_request_summary.py +++ b/src/oci/blockchain/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/budget/__init__.py b/src/oci/budget/__init__.py index 2dab79e319..b1c4ed1aeb 100644 --- a/src/oci/budget/__init__.py +++ b/src/oci/budget/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/budget/budget_client.py b/src/oci/budget/budget_client.py index deb7021cc3..2a808485a3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("budget", config, signer, budget_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -127,6 +133,10 @@ def create_alert_rule(self, budget_id, create_alert_rule_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.budget.models.AlertRule` :rtype: :class:`~oci.response.Response` @@ -138,6 +148,7 @@ def create_alert_rule(self, budget_id, create_alert_rule_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -218,6 +229,10 @@ def create_budget(self, create_budget_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.budget.models.Budget` :rtype: :class:`~oci.response.Response` @@ -229,6 +244,7 @@ def create_budget(self, create_budget_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -300,6 +316,10 @@ def delete_alert_rule(self, budget_id, alert_rule_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -311,6 +331,7 @@ def delete_alert_rule(self, budget_id, alert_rule_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -387,6 +408,10 @@ def delete_budget(self, budget_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -398,6 +423,7 @@ def delete_budget(self, budget_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -469,6 +495,10 @@ def get_alert_rule(self, budget_id, alert_rule_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.budget.models.AlertRule` :rtype: :class:`~oci.response.Response` @@ -480,6 +510,7 @@ def get_alert_rule(self, budget_id, alert_rule_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -549,6 +580,10 @@ def get_budget(self, budget_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.budget.models.Budget` :rtype: :class:`~oci.response.Response` @@ -560,6 +595,7 @@ def get_budget(self, budget_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -656,6 +692,10 @@ def list_alert_rules(self, budget_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.budget.models.AlertRuleSummary` :rtype: :class:`~oci.response.Response` @@ -667,6 +707,7 @@ def list_alert_rules(self, budget_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -819,6 +860,10 @@ def list_budgets(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.budget.models.BudgetSummary` :rtype: :class:`~oci.response.Response` @@ -830,6 +875,7 @@ def list_budgets(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -948,6 +994,10 @@ def update_alert_rule(self, budget_id, alert_rule_id, update_alert_rule_details, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.budget.models.AlertRule` :rtype: :class:`~oci.response.Response` @@ -959,6 +1009,7 @@ def update_alert_rule(self, budget_id, alert_rule_id, update_alert_rule_details, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1042,6 +1093,10 @@ def update_budget(self, budget_id, update_budget_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.budget.models.Budget` :rtype: :class:`~oci.response.Response` @@ -1053,6 +1108,7 @@ def update_budget(self, budget_id, update_budget_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/budget/budget_client_composite_operations.py b/src/oci/budget/budget_client_composite_operations.py index c00d06088d..95c46bfea2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/budget/models/__init__.py b/src/oci/budget/models/__init__.py index ac65b79edd..89264f288c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/budget/models/alert_rule.py b/src/oci/budget/models/alert_rule.py index 636f821599..43c99211e0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/budget/models/alert_rule_summary.py b/src/oci/budget/models/alert_rule_summary.py index 191ba940ad..4ce9321184 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/budget/models/budget.py b/src/oci/budget/models/budget.py index 40bbabce0d..2888527f13 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/budget/models/budget_summary.py b/src/oci/budget/models/budget_summary.py index 15fec0b3dd..9e1952f411 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/budget/models/create_alert_rule_details.py b/src/oci/budget/models/create_alert_rule_details.py index c5fb00f9b7..ee7909f3ad 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/budget/models/create_budget_details.py b/src/oci/budget/models/create_budget_details.py index e2eae66653..7220b0ab4d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/budget/models/update_alert_rule_details.py b/src/oci/budget/models/update_alert_rule_details.py index d50aceebf7..fc7a2addb5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/budget/models/update_budget_details.py b/src/oci/budget/models/update_budget_details.py index ee92fd321d..ed3626663c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates/__init__.py b/src/oci/certificates/__init__.py index 3bb61317a9..4beea09664 100644 --- a/src/oci/certificates/__init__.py +++ b/src/oci/certificates/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/certificates/certificates_client.py b/src/oci/certificates/certificates_client.py index 28fc557265..abb057af36 100644 --- a/src/oci/certificates/certificates_client.py +++ b/src/oci/certificates/certificates_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("certificates", config, signer, certificates_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -118,6 +124,10 @@ def get_ca_bundle(self, ca_bundle_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates.models.CaBundle` :rtype: :class:`~oci.response.Response` @@ -129,6 +139,7 @@ def get_ca_bundle(self, ca_bundle_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -210,6 +221,10 @@ def get_certificate_authority_bundle(self, certificate_authority_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates.models.CertificateAuthorityBundle` :rtype: :class:`~oci.response.Response` @@ -221,6 +236,7 @@ def get_certificate_authority_bundle(self, certificate_authority_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "version_number", @@ -329,6 +345,10 @@ def get_certificate_bundle(self, certificate_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates.models.CertificateBundle` :rtype: :class:`~oci.response.Response` @@ -340,6 +360,7 @@ def get_certificate_bundle(self, certificate_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "version_number", @@ -448,6 +469,10 @@ def list_certificate_authority_bundle_versions(self, certificate_authority_id, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates.models.CertificateAuthorityBundleVersionCollection` :rtype: :class:`~oci.response.Response` @@ -459,6 +484,7 @@ def list_certificate_authority_bundle_versions(self, certificate_authority_id, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "sort_by", @@ -563,6 +589,10 @@ def list_certificate_bundle_versions(self, certificate_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates.models.CertificateBundleVersionCollection` :rtype: :class:`~oci.response.Response` @@ -574,6 +604,7 @@ def list_certificate_bundle_versions(self, certificate_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "sort_by", diff --git a/src/oci/certificates/certificates_client_composite_operations.py b/src/oci/certificates/certificates_client_composite_operations.py index fc7901b2e9..75abfb0baa 100644 --- a/src/oci/certificates/certificates_client_composite_operations.py +++ b/src/oci/certificates/certificates_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/certificates/models/__init__.py b/src/oci/certificates/models/__init__.py index cf38a5fa00..f7809aed79 100644 --- a/src/oci/certificates/models/__init__.py +++ b/src/oci/certificates/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/certificates/models/ca_bundle.py b/src/oci/certificates/models/ca_bundle.py index 128965c26a..4c2772373c 100644 --- a/src/oci/certificates/models/ca_bundle.py +++ b/src/oci/certificates/models/ca_bundle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates/models/certificate_authority_bundle.py b/src/oci/certificates/models/certificate_authority_bundle.py index b7e790dcc5..0a4242226c 100644 --- a/src/oci/certificates/models/certificate_authority_bundle.py +++ b/src/oci/certificates/models/certificate_authority_bundle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates/models/certificate_authority_bundle_version_collection.py b/src/oci/certificates/models/certificate_authority_bundle_version_collection.py index 81d91f6f57..6550d6c66b 100644 --- a/src/oci/certificates/models/certificate_authority_bundle_version_collection.py +++ b/src/oci/certificates/models/certificate_authority_bundle_version_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates/models/certificate_authority_bundle_version_summary.py b/src/oci/certificates/models/certificate_authority_bundle_version_summary.py index 249d60c47c..1a26c8bc3d 100644 --- a/src/oci/certificates/models/certificate_authority_bundle_version_summary.py +++ b/src/oci/certificates/models/certificate_authority_bundle_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates/models/certificate_bundle.py b/src/oci/certificates/models/certificate_bundle.py index 4d2de300f3..42821c6058 100644 --- a/src/oci/certificates/models/certificate_bundle.py +++ b/src/oci/certificates/models/certificate_bundle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates/models/certificate_bundle_public_only.py b/src/oci/certificates/models/certificate_bundle_public_only.py index e425fde871..f3ed30821b 100644 --- a/src/oci/certificates/models/certificate_bundle_public_only.py +++ b/src/oci/certificates/models/certificate_bundle_public_only.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .certificate_bundle import CertificateBundle diff --git a/src/oci/certificates/models/certificate_bundle_version_collection.py b/src/oci/certificates/models/certificate_bundle_version_collection.py index 9b92b0cb98..169124a317 100644 --- a/src/oci/certificates/models/certificate_bundle_version_collection.py +++ b/src/oci/certificates/models/certificate_bundle_version_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates/models/certificate_bundle_version_summary.py b/src/oci/certificates/models/certificate_bundle_version_summary.py index 144f6ceeba..11a1fe5983 100644 --- a/src/oci/certificates/models/certificate_bundle_version_summary.py +++ b/src/oci/certificates/models/certificate_bundle_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates/models/certificate_bundle_with_private_key.py b/src/oci/certificates/models/certificate_bundle_with_private_key.py index 06ff3ae129..2ee89e3d69 100644 --- a/src/oci/certificates/models/certificate_bundle_with_private_key.py +++ b/src/oci/certificates/models/certificate_bundle_with_private_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .certificate_bundle import CertificateBundle diff --git a/src/oci/certificates/models/revocation_status.py b/src/oci/certificates/models/revocation_status.py index 38d30da30e..1a5dc891e8 100644 --- a/src/oci/certificates/models/revocation_status.py +++ b/src/oci/certificates/models/revocation_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates/models/validity.py b/src/oci/certificates/models/validity.py index ad92cf8a58..b33a9de1e4 100644 --- a/src/oci/certificates/models/validity.py +++ b/src/oci/certificates/models/validity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/__init__.py b/src/oci/certificates_management/__init__.py index 929e0fed7d..6864f37d65 100644 --- a/src/oci/certificates_management/__init__.py +++ b/src/oci/certificates_management/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/certificates_management/certificates_management_client.py b/src/oci/certificates_management/certificates_management_client.py index 285b2057e7..3c1e56d002 100644 --- a/src/oci/certificates_management/certificates_management_client.py +++ b/src/oci/certificates_management/certificates_management_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("certificates_management", config, signer, certificates_management_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -126,6 +132,10 @@ def cancel_certificate_authority_deletion(self, certificate_authority_id, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -137,6 +147,7 @@ def cancel_certificate_authority_deletion(self, certificate_authority_id, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -219,6 +230,10 @@ def cancel_certificate_authority_version_deletion(self, certificate_authority_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -230,6 +245,7 @@ def cancel_certificate_authority_version_deletion(self, certificate_authority_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -310,6 +326,10 @@ def cancel_certificate_deletion(self, certificate_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -321,6 +341,7 @@ def cancel_certificate_deletion(self, certificate_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -401,6 +422,10 @@ def cancel_certificate_version_deletion(self, certificate_id, certificate_versio To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -412,6 +437,7 @@ def cancel_certificate_version_deletion(self, certificate_id, certificate_versio # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -506,6 +532,10 @@ def change_ca_bundle_compartment(self, ca_bundle_id, change_ca_bundle_compartmen To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -517,6 +547,7 @@ def change_ca_bundle_compartment(self, ca_bundle_id, change_ca_bundle_compartmen # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -615,6 +646,10 @@ def change_certificate_authority_compartment(self, certificate_authority_id, cha To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -626,6 +661,7 @@ def change_certificate_authority_compartment(self, certificate_authority_id, cha # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -724,6 +760,10 @@ def change_certificate_compartment(self, certificate_id, change_certificate_comp To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -735,6 +775,7 @@ def change_certificate_compartment(self, certificate_id, change_certificate_comp # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -818,6 +859,10 @@ def create_ca_bundle(self, create_ca_bundle_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates_management.models.CaBundle` :rtype: :class:`~oci.response.Response` @@ -829,6 +874,7 @@ def create_ca_bundle(self, create_ca_bundle_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -900,6 +946,10 @@ def create_certificate(self, create_certificate_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates_management.models.Certificate` :rtype: :class:`~oci.response.Response` @@ -911,6 +961,7 @@ def create_certificate(self, create_certificate_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -982,6 +1033,10 @@ def create_certificate_authority(self, create_certificate_authority_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates_management.models.CertificateAuthority` :rtype: :class:`~oci.response.Response` @@ -993,6 +1048,7 @@ def create_certificate_authority(self, create_certificate_authority_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1063,6 +1119,10 @@ def delete_ca_bundle(self, ca_bundle_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1074,6 +1134,7 @@ def delete_ca_bundle(self, ca_bundle_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1144,6 +1205,10 @@ def get_association(self, association_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates_management.models.Association` :rtype: :class:`~oci.response.Response` @@ -1155,6 +1220,7 @@ def get_association(self, association_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1225,6 +1291,10 @@ def get_ca_bundle(self, ca_bundle_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates_management.models.CaBundle` :rtype: :class:`~oci.response.Response` @@ -1236,6 +1306,7 @@ def get_ca_bundle(self, ca_bundle_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1306,6 +1377,10 @@ def get_certificate(self, certificate_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates_management.models.Certificate` :rtype: :class:`~oci.response.Response` @@ -1317,6 +1392,7 @@ def get_certificate(self, certificate_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1387,6 +1463,10 @@ def get_certificate_authority(self, certificate_authority_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates_management.models.CertificateAuthority` :rtype: :class:`~oci.response.Response` @@ -1398,6 +1478,7 @@ def get_certificate_authority(self, certificate_authority_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1471,6 +1552,10 @@ def get_certificate_authority_version(self, certificate_authority_id, certificat To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates_management.models.CertificateAuthorityVersion` :rtype: :class:`~oci.response.Response` @@ -1482,6 +1567,7 @@ def get_certificate_authority_version(self, certificate_authority_id, certificat # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1556,6 +1642,10 @@ def get_certificate_version(self, certificate_id, certificate_version_number, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates_management.models.CertificateVersion` :rtype: :class:`~oci.response.Response` @@ -1567,6 +1657,7 @@ def get_certificate_version(self, certificate_id, certificate_version_number, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1674,6 +1765,10 @@ def list_associations(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates_management.models.AssociationCollection` :rtype: :class:`~oci.response.Response` @@ -1685,6 +1780,7 @@ def list_associations(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "compartment_id", @@ -1820,6 +1916,10 @@ def list_ca_bundles(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates_management.models.CaBundleCollection` :rtype: :class:`~oci.response.Response` @@ -1831,6 +1931,7 @@ def list_ca_bundles(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "compartment_id", @@ -1966,6 +2067,10 @@ def list_certificate_authorities(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates_management.models.CertificateAuthorityCollection` :rtype: :class:`~oci.response.Response` @@ -1977,6 +2082,7 @@ def list_certificate_authorities(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "compartment_id", @@ -2101,6 +2207,10 @@ def list_certificate_authority_versions(self, certificate_authority_id, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates_management.models.CertificateAuthorityVersionCollection` :rtype: :class:`~oci.response.Response` @@ -2112,6 +2222,7 @@ def list_certificate_authority_versions(self, certificate_authority_id, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "version_number", @@ -2233,6 +2344,10 @@ def list_certificate_versions(self, certificate_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates_management.models.CertificateVersionCollection` :rtype: :class:`~oci.response.Response` @@ -2244,6 +2359,7 @@ def list_certificate_versions(self, certificate_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "version_number", @@ -2378,6 +2494,10 @@ def list_certificates(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates_management.models.CertificateCollection` :rtype: :class:`~oci.response.Response` @@ -2389,6 +2509,7 @@ def list_certificates(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "compartment_id", @@ -2513,6 +2634,10 @@ def revoke_certificate_authority_version(self, certificate_authority_id, certifi To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2524,6 +2649,7 @@ def revoke_certificate_authority_version(self, certificate_authority_id, certifi # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -2621,6 +2747,10 @@ def revoke_certificate_version(self, certificate_id, certificate_version_number, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2632,6 +2762,7 @@ def revoke_certificate_version(self, certificate_id, certificate_version_number, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -2718,6 +2849,10 @@ def schedule_certificate_authority_deletion(self, certificate_authority_id, sche To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2729,6 +2864,7 @@ def schedule_certificate_authority_deletion(self, certificate_authority_id, sche # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -2816,6 +2952,10 @@ def schedule_certificate_authority_version_deletion(self, certificate_authority_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2827,6 +2967,7 @@ def schedule_certificate_authority_version_deletion(self, certificate_authority_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -2915,6 +3056,10 @@ def schedule_certificate_deletion(self, certificate_id, schedule_certificate_del To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2926,6 +3071,7 @@ def schedule_certificate_deletion(self, certificate_id, schedule_certificate_del # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -3014,6 +3160,10 @@ def schedule_certificate_version_deletion(self, certificate_id, certificate_vers To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3025,6 +3175,7 @@ def schedule_certificate_version_deletion(self, certificate_id, certificate_vers # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -3108,6 +3259,10 @@ def update_ca_bundle(self, ca_bundle_id, update_ca_bundle_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates_management.models.CaBundle` :rtype: :class:`~oci.response.Response` @@ -3119,6 +3274,7 @@ def update_ca_bundle(self, ca_bundle_id, update_ca_bundle_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -3203,6 +3359,10 @@ def update_certificate(self, certificate_id, update_certificate_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates_management.models.Certificate` :rtype: :class:`~oci.response.Response` @@ -3214,6 +3374,7 @@ def update_certificate(self, certificate_id, update_certificate_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -3298,6 +3459,10 @@ def update_certificate_authority(self, certificate_authority_id, update_certific To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.certificates_management.models.CertificateAuthority` :rtype: :class:`~oci.response.Response` @@ -3309,6 +3474,7 @@ def update_certificate_authority(self, certificate_authority_id, update_certific # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" diff --git a/src/oci/certificates_management/certificates_management_client_composite_operations.py b/src/oci/certificates_management/certificates_management_client_composite_operations.py index 6ef3ea7eeb..5f355f2638 100644 --- a/src/oci/certificates_management/certificates_management_client_composite_operations.py +++ b/src/oci/certificates_management/certificates_management_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/certificates_management/models/__init__.py b/src/oci/certificates_management/models/__init__.py index d3765e307c..504fa45027 100644 --- a/src/oci/certificates_management/models/__init__.py +++ b/src/oci/certificates_management/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/certificates_management/models/association.py b/src/oci/certificates_management/models/association.py index 62d29a4a1c..6261c6ff3d 100644 --- a/src/oci/certificates_management/models/association.py +++ b/src/oci/certificates_management/models/association.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/association_collection.py b/src/oci/certificates_management/models/association_collection.py index 898a1824e0..0037fab06d 100644 --- a/src/oci/certificates_management/models/association_collection.py +++ b/src/oci/certificates_management/models/association_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/association_summary.py b/src/oci/certificates_management/models/association_summary.py index 057fa49560..3c3e6f2cfc 100644 --- a/src/oci/certificates_management/models/association_summary.py +++ b/src/oci/certificates_management/models/association_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/ca_bundle.py b/src/oci/certificates_management/models/ca_bundle.py index ca4bc81b46..ad63d56a2c 100644 --- a/src/oci/certificates_management/models/ca_bundle.py +++ b/src/oci/certificates_management/models/ca_bundle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/ca_bundle_collection.py b/src/oci/certificates_management/models/ca_bundle_collection.py index 584266fb78..02057f910f 100644 --- a/src/oci/certificates_management/models/ca_bundle_collection.py +++ b/src/oci/certificates_management/models/ca_bundle_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/ca_bundle_summary.py b/src/oci/certificates_management/models/ca_bundle_summary.py index 708a39a571..eb3e586a2e 100644 --- a/src/oci/certificates_management/models/ca_bundle_summary.py +++ b/src/oci/certificates_management/models/ca_bundle_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/certificate.py b/src/oci/certificates_management/models/certificate.py index 9248d85f21..972ebf7883 100644 --- a/src/oci/certificates_management/models/certificate.py +++ b/src/oci/certificates_management/models/certificate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/certificate_authority.py b/src/oci/certificates_management/models/certificate_authority.py index 3f5f5c814d..0fafc6be04 100644 --- a/src/oci/certificates_management/models/certificate_authority.py +++ b/src/oci/certificates_management/models/certificate_authority.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/certificate_authority_collection.py b/src/oci/certificates_management/models/certificate_authority_collection.py index a768022131..b045ffb5d1 100644 --- a/src/oci/certificates_management/models/certificate_authority_collection.py +++ b/src/oci/certificates_management/models/certificate_authority_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/certificate_authority_issuance_expiry_rule.py b/src/oci/certificates_management/models/certificate_authority_issuance_expiry_rule.py index 766336f9f6..494aeab231 100644 --- a/src/oci/certificates_management/models/certificate_authority_issuance_expiry_rule.py +++ b/src/oci/certificates_management/models/certificate_authority_issuance_expiry_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .certificate_authority_rule import CertificateAuthorityRule diff --git a/src/oci/certificates_management/models/certificate_authority_rule.py b/src/oci/certificates_management/models/certificate_authority_rule.py index f68b4d0ad2..521bd9299d 100644 --- a/src/oci/certificates_management/models/certificate_authority_rule.py +++ b/src/oci/certificates_management/models/certificate_authority_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/certificate_authority_summary.py b/src/oci/certificates_management/models/certificate_authority_summary.py index 8f4f7c5540..9709f3bd47 100644 --- a/src/oci/certificates_management/models/certificate_authority_summary.py +++ b/src/oci/certificates_management/models/certificate_authority_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/certificate_authority_version.py b/src/oci/certificates_management/models/certificate_authority_version.py index 6d1b09da9f..50f01061c5 100644 --- a/src/oci/certificates_management/models/certificate_authority_version.py +++ b/src/oci/certificates_management/models/certificate_authority_version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/certificate_authority_version_collection.py b/src/oci/certificates_management/models/certificate_authority_version_collection.py index 1fe6ac8c3b..169fa09a6f 100644 --- a/src/oci/certificates_management/models/certificate_authority_version_collection.py +++ b/src/oci/certificates_management/models/certificate_authority_version_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/certificate_authority_version_summary.py b/src/oci/certificates_management/models/certificate_authority_version_summary.py index c0b9745bd4..ac60955e25 100644 --- a/src/oci/certificates_management/models/certificate_authority_version_summary.py +++ b/src/oci/certificates_management/models/certificate_authority_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/certificate_collection.py b/src/oci/certificates_management/models/certificate_collection.py index aab683e249..771b7ca256 100644 --- a/src/oci/certificates_management/models/certificate_collection.py +++ b/src/oci/certificates_management/models/certificate_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/certificate_renewal_rule.py b/src/oci/certificates_management/models/certificate_renewal_rule.py index 9164772f1b..d69f45c07f 100644 --- a/src/oci/certificates_management/models/certificate_renewal_rule.py +++ b/src/oci/certificates_management/models/certificate_renewal_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .certificate_rule import CertificateRule diff --git a/src/oci/certificates_management/models/certificate_revocation_list_details.py b/src/oci/certificates_management/models/certificate_revocation_list_details.py index 6fb02f0e13..09f89abbf3 100644 --- a/src/oci/certificates_management/models/certificate_revocation_list_details.py +++ b/src/oci/certificates_management/models/certificate_revocation_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/certificate_rule.py b/src/oci/certificates_management/models/certificate_rule.py index cb68e3a42f..e7e98493f6 100644 --- a/src/oci/certificates_management/models/certificate_rule.py +++ b/src/oci/certificates_management/models/certificate_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/certificate_subject.py b/src/oci/certificates_management/models/certificate_subject.py index 41934b3de1..8cd3f955f8 100644 --- a/src/oci/certificates_management/models/certificate_subject.py +++ b/src/oci/certificates_management/models/certificate_subject.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/certificate_subject_alternative_name.py b/src/oci/certificates_management/models/certificate_subject_alternative_name.py index b7b43f64f4..73f91167d4 100644 --- a/src/oci/certificates_management/models/certificate_subject_alternative_name.py +++ b/src/oci/certificates_management/models/certificate_subject_alternative_name.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/certificate_summary.py b/src/oci/certificates_management/models/certificate_summary.py index e7bb3e9d62..fc74072b7a 100644 --- a/src/oci/certificates_management/models/certificate_summary.py +++ b/src/oci/certificates_management/models/certificate_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/certificate_version.py b/src/oci/certificates_management/models/certificate_version.py index 015c9e5540..a40c6683a8 100644 --- a/src/oci/certificates_management/models/certificate_version.py +++ b/src/oci/certificates_management/models/certificate_version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/certificate_version_collection.py b/src/oci/certificates_management/models/certificate_version_collection.py index 069d78c6c4..982654aa02 100644 --- a/src/oci/certificates_management/models/certificate_version_collection.py +++ b/src/oci/certificates_management/models/certificate_version_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/certificate_version_summary.py b/src/oci/certificates_management/models/certificate_version_summary.py index e93c124c76..839858b307 100644 --- a/src/oci/certificates_management/models/certificate_version_summary.py +++ b/src/oci/certificates_management/models/certificate_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/change_ca_bundle_compartment_details.py b/src/oci/certificates_management/models/change_ca_bundle_compartment_details.py index f4efb6596b..739e3cc809 100644 --- a/src/oci/certificates_management/models/change_ca_bundle_compartment_details.py +++ b/src/oci/certificates_management/models/change_ca_bundle_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/change_certificate_authority_compartment_details.py b/src/oci/certificates_management/models/change_certificate_authority_compartment_details.py index 0470c57d9a..c82e1f8865 100644 --- a/src/oci/certificates_management/models/change_certificate_authority_compartment_details.py +++ b/src/oci/certificates_management/models/change_certificate_authority_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/change_certificate_compartment_details.py b/src/oci/certificates_management/models/change_certificate_compartment_details.py index 638ce1e7d1..f4bb01ef72 100644 --- a/src/oci/certificates_management/models/change_certificate_compartment_details.py +++ b/src/oci/certificates_management/models/change_certificate_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/create_ca_bundle_details.py b/src/oci/certificates_management/models/create_ca_bundle_details.py index 43ebce2944..df7fe5393e 100644 --- a/src/oci/certificates_management/models/create_ca_bundle_details.py +++ b/src/oci/certificates_management/models/create_ca_bundle_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/create_certificate_authority_config_details.py b/src/oci/certificates_management/models/create_certificate_authority_config_details.py index 3bb2db636b..7bc103417f 100644 --- a/src/oci/certificates_management/models/create_certificate_authority_config_details.py +++ b/src/oci/certificates_management/models/create_certificate_authority_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/create_certificate_authority_details.py b/src/oci/certificates_management/models/create_certificate_authority_details.py index 04e1124c6b..cf5083be7f 100644 --- a/src/oci/certificates_management/models/create_certificate_authority_details.py +++ b/src/oci/certificates_management/models/create_certificate_authority_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/create_certificate_by_importing_config_details.py b/src/oci/certificates_management/models/create_certificate_by_importing_config_details.py index 6b2ecb8624..1625738f0f 100644 --- a/src/oci/certificates_management/models/create_certificate_by_importing_config_details.py +++ b/src/oci/certificates_management/models/create_certificate_by_importing_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_certificate_config_details import CreateCertificateConfigDetails diff --git a/src/oci/certificates_management/models/create_certificate_config_details.py b/src/oci/certificates_management/models/create_certificate_config_details.py index d0a8c6a8b6..8e16971607 100644 --- a/src/oci/certificates_management/models/create_certificate_config_details.py +++ b/src/oci/certificates_management/models/create_certificate_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/create_certificate_details.py b/src/oci/certificates_management/models/create_certificate_details.py index c28381a66d..8ed89ef287 100644 --- a/src/oci/certificates_management/models/create_certificate_details.py +++ b/src/oci/certificates_management/models/create_certificate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/create_certificate_issued_by_internal_ca_config_details.py b/src/oci/certificates_management/models/create_certificate_issued_by_internal_ca_config_details.py index 113e023841..c40b6741ec 100644 --- a/src/oci/certificates_management/models/create_certificate_issued_by_internal_ca_config_details.py +++ b/src/oci/certificates_management/models/create_certificate_issued_by_internal_ca_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_certificate_config_details import CreateCertificateConfigDetails diff --git a/src/oci/certificates_management/models/create_certificate_managed_externally_issued_by_internal_ca_config_details.py b/src/oci/certificates_management/models/create_certificate_managed_externally_issued_by_internal_ca_config_details.py index 956eca8729..d32065d4af 100644 --- a/src/oci/certificates_management/models/create_certificate_managed_externally_issued_by_internal_ca_config_details.py +++ b/src/oci/certificates_management/models/create_certificate_managed_externally_issued_by_internal_ca_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_certificate_config_details import CreateCertificateConfigDetails diff --git a/src/oci/certificates_management/models/create_root_ca_by_generating_internally_config_details.py b/src/oci/certificates_management/models/create_root_ca_by_generating_internally_config_details.py index 31fc9eefea..bb641e1323 100644 --- a/src/oci/certificates_management/models/create_root_ca_by_generating_internally_config_details.py +++ b/src/oci/certificates_management/models/create_root_ca_by_generating_internally_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_certificate_authority_config_details import CreateCertificateAuthorityConfigDetails diff --git a/src/oci/certificates_management/models/create_subordinate_ca_issued_by_internal_ca_config_details.py b/src/oci/certificates_management/models/create_subordinate_ca_issued_by_internal_ca_config_details.py index e4f2120f58..873d0d0147 100644 --- a/src/oci/certificates_management/models/create_subordinate_ca_issued_by_internal_ca_config_details.py +++ b/src/oci/certificates_management/models/create_subordinate_ca_issued_by_internal_ca_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_certificate_authority_config_details import CreateCertificateAuthorityConfigDetails diff --git a/src/oci/certificates_management/models/object_storage_bucket_config_details.py b/src/oci/certificates_management/models/object_storage_bucket_config_details.py index 45d9042fe7..c06aa7576d 100644 --- a/src/oci/certificates_management/models/object_storage_bucket_config_details.py +++ b/src/oci/certificates_management/models/object_storage_bucket_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/revocation_status.py b/src/oci/certificates_management/models/revocation_status.py index b3e5515646..79dc347402 100644 --- a/src/oci/certificates_management/models/revocation_status.py +++ b/src/oci/certificates_management/models/revocation_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/revoke_certificate_authority_version_details.py b/src/oci/certificates_management/models/revoke_certificate_authority_version_details.py index 60b09a0c6b..5e62db7e2e 100644 --- a/src/oci/certificates_management/models/revoke_certificate_authority_version_details.py +++ b/src/oci/certificates_management/models/revoke_certificate_authority_version_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/revoke_certificate_version_details.py b/src/oci/certificates_management/models/revoke_certificate_version_details.py index 5b13226b29..de55a4f377 100644 --- a/src/oci/certificates_management/models/revoke_certificate_version_details.py +++ b/src/oci/certificates_management/models/revoke_certificate_version_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/schedule_certificate_authority_deletion_details.py b/src/oci/certificates_management/models/schedule_certificate_authority_deletion_details.py index 3a32bf969e..28c08f56a0 100644 --- a/src/oci/certificates_management/models/schedule_certificate_authority_deletion_details.py +++ b/src/oci/certificates_management/models/schedule_certificate_authority_deletion_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/schedule_certificate_authority_version_deletion_details.py b/src/oci/certificates_management/models/schedule_certificate_authority_version_deletion_details.py index 8858068af4..03a6836bef 100644 --- a/src/oci/certificates_management/models/schedule_certificate_authority_version_deletion_details.py +++ b/src/oci/certificates_management/models/schedule_certificate_authority_version_deletion_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/schedule_certificate_deletion_details.py b/src/oci/certificates_management/models/schedule_certificate_deletion_details.py index 6fd68c7593..a2125d59f2 100644 --- a/src/oci/certificates_management/models/schedule_certificate_deletion_details.py +++ b/src/oci/certificates_management/models/schedule_certificate_deletion_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/schedule_certificate_version_deletion_details.py b/src/oci/certificates_management/models/schedule_certificate_version_deletion_details.py index 3bf86d9f95..735f010a81 100644 --- a/src/oci/certificates_management/models/schedule_certificate_version_deletion_details.py +++ b/src/oci/certificates_management/models/schedule_certificate_version_deletion_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/update_ca_bundle_details.py b/src/oci/certificates_management/models/update_ca_bundle_details.py index c3fdf1469c..6abf70594b 100644 --- a/src/oci/certificates_management/models/update_ca_bundle_details.py +++ b/src/oci/certificates_management/models/update_ca_bundle_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/update_certificate_authority_config_details.py b/src/oci/certificates_management/models/update_certificate_authority_config_details.py index d4b5dc8038..9e53864998 100644 --- a/src/oci/certificates_management/models/update_certificate_authority_config_details.py +++ b/src/oci/certificates_management/models/update_certificate_authority_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/update_certificate_authority_details.py b/src/oci/certificates_management/models/update_certificate_authority_details.py index 7f21e8117e..bd1339f5c2 100644 --- a/src/oci/certificates_management/models/update_certificate_authority_details.py +++ b/src/oci/certificates_management/models/update_certificate_authority_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/update_certificate_by_importing_config_details.py b/src/oci/certificates_management/models/update_certificate_by_importing_config_details.py index bc63cef055..145df64dcb 100644 --- a/src/oci/certificates_management/models/update_certificate_by_importing_config_details.py +++ b/src/oci/certificates_management/models/update_certificate_by_importing_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_certificate_config_details import UpdateCertificateConfigDetails diff --git a/src/oci/certificates_management/models/update_certificate_config_details.py b/src/oci/certificates_management/models/update_certificate_config_details.py index 9f25c31722..29644a82af 100644 --- a/src/oci/certificates_management/models/update_certificate_config_details.py +++ b/src/oci/certificates_management/models/update_certificate_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/update_certificate_details.py b/src/oci/certificates_management/models/update_certificate_details.py index 7b346161af..6092e6104f 100644 --- a/src/oci/certificates_management/models/update_certificate_details.py +++ b/src/oci/certificates_management/models/update_certificate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/certificates_management/models/update_certificate_issued_by_internal_ca_config_details.py b/src/oci/certificates_management/models/update_certificate_issued_by_internal_ca_config_details.py index 5ae1b487c3..f4c5a24dc0 100644 --- a/src/oci/certificates_management/models/update_certificate_issued_by_internal_ca_config_details.py +++ b/src/oci/certificates_management/models/update_certificate_issued_by_internal_ca_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_certificate_config_details import UpdateCertificateConfigDetails diff --git a/src/oci/certificates_management/models/update_certificate_managed_externally_issued_by_internal_ca_config_details.py b/src/oci/certificates_management/models/update_certificate_managed_externally_issued_by_internal_ca_config_details.py index e5d1dcff02..e629f0ff29 100644 --- a/src/oci/certificates_management/models/update_certificate_managed_externally_issued_by_internal_ca_config_details.py +++ b/src/oci/certificates_management/models/update_certificate_managed_externally_issued_by_internal_ca_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_certificate_config_details import UpdateCertificateConfigDetails diff --git a/src/oci/certificates_management/models/update_root_ca_by_generating_internally_config_details.py b/src/oci/certificates_management/models/update_root_ca_by_generating_internally_config_details.py index faa8e39e9a..ffe438f582 100644 --- a/src/oci/certificates_management/models/update_root_ca_by_generating_internally_config_details.py +++ b/src/oci/certificates_management/models/update_root_ca_by_generating_internally_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_certificate_authority_config_details import UpdateCertificateAuthorityConfigDetails diff --git a/src/oci/certificates_management/models/update_subordinate_ca_issued_by_internal_ca_config_details.py b/src/oci/certificates_management/models/update_subordinate_ca_issued_by_internal_ca_config_details.py index d31d2e3cd0..618d9fe590 100644 --- a/src/oci/certificates_management/models/update_subordinate_ca_issued_by_internal_ca_config_details.py +++ b/src/oci/certificates_management/models/update_subordinate_ca_issued_by_internal_ca_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_certificate_authority_config_details import UpdateCertificateAuthorityConfigDetails diff --git a/src/oci/certificates_management/models/validity.py b/src/oci/certificates_management/models/validity.py index 42f5c14dfe..ba8866c485 100644 --- a/src/oci/certificates_management/models/validity.py +++ b/src/oci/certificates_management/models/validity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/__init__.py b/src/oci/cims/__init__.py index a85a36f1e4..0d4031d9a3 100644 --- a/src/oci/cims/__init__.py +++ b/src/oci/cims/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/cims/incident_client.py b/src/oci/cims/incident_client.py index aa1a2e6c1e..f17185e5de 100644 --- a/src/oci/cims/incident_client.py +++ b/src/oci/cims/incident_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("incident", config, signer, cims_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -123,6 +129,10 @@ def create_incident(self, create_incident_details, ocid, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cims.models.Incident` :rtype: :class:`~oci.response.Response` @@ -134,6 +144,7 @@ def create_incident(self, create_incident_details, ocid, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "homeregion" @@ -207,6 +218,10 @@ def get_incident(self, incident_key, csi, ocid, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cims.models.Incident` :rtype: :class:`~oci.response.Response` @@ -218,6 +233,7 @@ def get_incident(self, incident_key, csi, ocid, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "homeregion", @@ -298,6 +314,10 @@ def get_status(self, source, ocid, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cims.models.Status` :rtype: :class:`~oci.response.Response` @@ -309,6 +329,7 @@ def get_status(self, source, ocid, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "homeregion" @@ -415,6 +436,10 @@ def list_incident_resource_types(self, problem_type, compartment_id, csi, ocid, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.cims.models.IncidentResourceType` :rtype: :class:`~oci.response.Response` @@ -426,6 +451,7 @@ def list_incident_resource_types(self, problem_type, compartment_id, csi, ocid, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -555,6 +581,10 @@ def list_incidents(self, csi, compartment_id, ocid, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.cims.models.IncidentSummary` :rtype: :class:`~oci.response.Response` @@ -566,6 +596,7 @@ def list_incidents(self, csi, compartment_id, ocid, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "sort_by", @@ -681,6 +712,10 @@ def update_incident(self, incident_key, csi, update_incident_details, ocid, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cims.models.Incident` :rtype: :class:`~oci.response.Response` @@ -692,6 +727,7 @@ def update_incident(self, incident_key, csi, update_incident_details, ocid, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -777,6 +813,10 @@ def validate_user(self, csi, ocid, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cims.models.ValidationResponse` :rtype: :class:`~oci.response.Response` @@ -788,6 +828,7 @@ def validate_user(self, csi, ocid, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "problem_type", diff --git a/src/oci/cims/incident_client_composite_operations.py b/src/oci/cims/incident_client_composite_operations.py index cfacb3797a..06d175f3ab 100644 --- a/src/oci/cims/incident_client_composite_operations.py +++ b/src/oci/cims/incident_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/cims/models/__init__.py b/src/oci/cims/models/__init__.py index c05539b661..66dc449ab5 100644 --- a/src/oci/cims/models/__init__.py +++ b/src/oci/cims/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/cims/models/activity_item.py b/src/oci/cims/models/activity_item.py index 665ac8f288..af44f434ee 100644 --- a/src/oci/cims/models/activity_item.py +++ b/src/oci/cims/models/activity_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .item import Item diff --git a/src/oci/cims/models/category.py b/src/oci/cims/models/category.py index f0cbf434ca..1e9767942a 100644 --- a/src/oci/cims/models/category.py +++ b/src/oci/cims/models/category.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/classifier.py b/src/oci/cims/models/classifier.py index 9aa2cd5dc2..08dfc2c0be 100644 --- a/src/oci/cims/models/classifier.py +++ b/src/oci/cims/models/classifier.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/contact.py b/src/oci/cims/models/contact.py index 8562e3c4bd..19d26fe73d 100644 --- a/src/oci/cims/models/contact.py +++ b/src/oci/cims/models/contact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/contact_list.py b/src/oci/cims/models/contact_list.py index 509690b5fd..3e94b1bc71 100644 --- a/src/oci/cims/models/contact_list.py +++ b/src/oci/cims/models/contact_list.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/contextual_data.py b/src/oci/cims/models/contextual_data.py index dcb309f48d..a21ee269cd 100644 --- a/src/oci/cims/models/contextual_data.py +++ b/src/oci/cims/models/contextual_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/create_category_details.py b/src/oci/cims/models/create_category_details.py index 390a4c8bb7..33fecd3f64 100644 --- a/src/oci/cims/models/create_category_details.py +++ b/src/oci/cims/models/create_category_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/create_incident.py b/src/oci/cims/models/create_incident.py index 726b67ae1a..6216aafc03 100644 --- a/src/oci/cims/models/create_incident.py +++ b/src/oci/cims/models/create_incident.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/create_issue_type_details.py b/src/oci/cims/models/create_issue_type_details.py index e69da12453..2f1b8e2df1 100644 --- a/src/oci/cims/models/create_issue_type_details.py +++ b/src/oci/cims/models/create_issue_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/create_item_details.py b/src/oci/cims/models/create_item_details.py index 395ece1b62..f0b4f4d990 100644 --- a/src/oci/cims/models/create_item_details.py +++ b/src/oci/cims/models/create_item_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/create_limit_item_details.py b/src/oci/cims/models/create_limit_item_details.py index 4e87e108fd..10fb68b29e 100644 --- a/src/oci/cims/models/create_limit_item_details.py +++ b/src/oci/cims/models/create_limit_item_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_item_details import CreateItemDetails diff --git a/src/oci/cims/models/create_resource_details.py b/src/oci/cims/models/create_resource_details.py index b1216aaf38..0c12c7e9de 100644 --- a/src/oci/cims/models/create_resource_details.py +++ b/src/oci/cims/models/create_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/create_sub_category_details.py b/src/oci/cims/models/create_sub_category_details.py index 5e7d1b9a7c..e17f5b94fa 100644 --- a/src/oci/cims/models/create_sub_category_details.py +++ b/src/oci/cims/models/create_sub_category_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/create_tech_support_item_details.py b/src/oci/cims/models/create_tech_support_item_details.py index e189f2005c..ca6dd0b79a 100644 --- a/src/oci/cims/models/create_tech_support_item_details.py +++ b/src/oci/cims/models/create_tech_support_item_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_item_details import CreateItemDetails diff --git a/src/oci/cims/models/create_ticket_details.py b/src/oci/cims/models/create_ticket_details.py index e6cd44d0de..675eb0c0d6 100644 --- a/src/oci/cims/models/create_ticket_details.py +++ b/src/oci/cims/models/create_ticket_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/create_user_details.py b/src/oci/cims/models/create_user_details.py index 6025e722c9..9989c008ea 100644 --- a/src/oci/cims/models/create_user_details.py +++ b/src/oci/cims/models/create_user_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/incident.py b/src/oci/cims/models/incident.py index 2b29672223..89016ef0a0 100644 --- a/src/oci/cims/models/incident.py +++ b/src/oci/cims/models/incident.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/incident_resource_type.py b/src/oci/cims/models/incident_resource_type.py index 20fd90d475..636ae473cf 100644 --- a/src/oci/cims/models/incident_resource_type.py +++ b/src/oci/cims/models/incident_resource_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/incident_summary.py b/src/oci/cims/models/incident_summary.py index 1b6e4b425e..c087e6f9f0 100644 --- a/src/oci/cims/models/incident_summary.py +++ b/src/oci/cims/models/incident_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/incident_type.py b/src/oci/cims/models/incident_type.py index 732be83d3c..8823eb4546 100644 --- a/src/oci/cims/models/incident_type.py +++ b/src/oci/cims/models/incident_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/issue_type.py b/src/oci/cims/models/issue_type.py index 40d7b94bb5..55bc96bd56 100644 --- a/src/oci/cims/models/issue_type.py +++ b/src/oci/cims/models/issue_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/item.py b/src/oci/cims/models/item.py index 1ca0d3f55e..b765bbed3d 100644 --- a/src/oci/cims/models/item.py +++ b/src/oci/cims/models/item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/limit_item.py b/src/oci/cims/models/limit_item.py index f662fcaf58..f486d718e8 100644 --- a/src/oci/cims/models/limit_item.py +++ b/src/oci/cims/models/limit_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .item import Item diff --git a/src/oci/cims/models/resource.py b/src/oci/cims/models/resource.py index 46e23d4e39..3b99d31c46 100644 --- a/src/oci/cims/models/resource.py +++ b/src/oci/cims/models/resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/service_category.py b/src/oci/cims/models/service_category.py index 0cdfb3bdce..572c36e3cd 100644 --- a/src/oci/cims/models/service_category.py +++ b/src/oci/cims/models/service_category.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/status.py b/src/oci/cims/models/status.py index 56f4acd1f4..627790adc4 100644 --- a/src/oci/cims/models/status.py +++ b/src/oci/cims/models/status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/sub_category.py b/src/oci/cims/models/sub_category.py index c5f76a2d70..3a07ccd6e0 100644 --- a/src/oci/cims/models/sub_category.py +++ b/src/oci/cims/models/sub_category.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/tech_support_item.py b/src/oci/cims/models/tech_support_item.py index 4cd10d883c..9fda1fd688 100644 --- a/src/oci/cims/models/tech_support_item.py +++ b/src/oci/cims/models/tech_support_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .item import Item diff --git a/src/oci/cims/models/tenancy_information.py b/src/oci/cims/models/tenancy_information.py index 7773ce41aa..0769c0e2c3 100644 --- a/src/oci/cims/models/tenancy_information.py +++ b/src/oci/cims/models/tenancy_information.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/ticket.py b/src/oci/cims/models/ticket.py index 731288a6cb..1723ef126c 100644 --- a/src/oci/cims/models/ticket.py +++ b/src/oci/cims/models/ticket.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/update_activity_item_details.py b/src/oci/cims/models/update_activity_item_details.py index 0b37fa75bf..f2858ccc56 100644 --- a/src/oci/cims/models/update_activity_item_details.py +++ b/src/oci/cims/models/update_activity_item_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_item_details import UpdateItemDetails diff --git a/src/oci/cims/models/update_incident.py b/src/oci/cims/models/update_incident.py index 524bbd5a2e..a56013476f 100644 --- a/src/oci/cims/models/update_incident.py +++ b/src/oci/cims/models/update_incident.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/update_item_details.py b/src/oci/cims/models/update_item_details.py index 77ff0dc40c..a20174c0a9 100644 --- a/src/oci/cims/models/update_item_details.py +++ b/src/oci/cims/models/update_item_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/update_resource_details.py b/src/oci/cims/models/update_resource_details.py index 5397b2977c..a79035edf6 100644 --- a/src/oci/cims/models/update_resource_details.py +++ b/src/oci/cims/models/update_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/update_ticket_details.py b/src/oci/cims/models/update_ticket_details.py index 77a4f9a28c..b90ce07833 100644 --- a/src/oci/cims/models/update_ticket_details.py +++ b/src/oci/cims/models/update_ticket_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/user.py b/src/oci/cims/models/user.py index d67024fa9f..9efc8d0a49 100644 --- a/src/oci/cims/models/user.py +++ b/src/oci/cims/models/user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/models/validation_response.py b/src/oci/cims/models/validation_response.py index 3e0eb55c01..7e1b07009d 100644 --- a/src/oci/cims/models/validation_response.py +++ b/src/oci/cims/models/validation_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cims/user_client.py b/src/oci/cims/user_client.py index 548cc6fb3b..e0a29ae120 100644 --- a/src/oci/cims/user_client.py +++ b/src/oci/cims/user_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("user", config, signer, cims_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -123,6 +129,10 @@ def create_user(self, create_user_details, ocid, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cims.models.User` :rtype: :class:`~oci.response.Response` @@ -134,6 +144,7 @@ def create_user(self, create_user_details, ocid, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "homeregion" diff --git a/src/oci/cims/user_client_composite_operations.py b/src/oci/cims/user_client_composite_operations.py index e65ed073f4..162d7ad3bd 100644 --- a/src/oci/cims/user_client_composite_operations.py +++ b/src/oci/cims/user_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/circuit_breaker/__init__.py b/src/oci/circuit_breaker/__init__.py index d6c9a8db09..0f6f5d3719 100644 --- a/src/oci/circuit_breaker/__init__.py +++ b/src/oci/circuit_breaker/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .circuit_breaker import CircuitBreakerStrategy, NoCircuitBreakerStrategy, DEFAULT_CIRCUIT_BREAKER_FAILURE_STATUSES_AND_CODES diff --git a/src/oci/circuit_breaker/circuit_breaker.py b/src/oci/circuit_breaker/circuit_breaker.py index 19b4640b29..29f694c1a4 100644 --- a/src/oci/circuit_breaker/circuit_breaker.py +++ b/src/oci/circuit_breaker/circuit_breaker.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Contains classes for defining and building circuit breaker strategies. diff --git a/src/oci/cloud_guard/__init__.py b/src/oci/cloud_guard/__init__.py index 9ebbc9cfaa..152e465074 100644 --- a/src/oci/cloud_guard/__init__.py +++ b/src/oci/cloud_guard/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/cloud_guard/cloud_guard_client.py b/src/oci/cloud_guard/cloud_guard_client.py index e2668b4c79..07b61d026a 100644 --- a/src/oci/cloud_guard/cloud_guard_client.py +++ b/src/oci/cloud_guard/cloud_guard_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("cloud_guard", config, signer, cloud_guard_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -134,6 +140,10 @@ def change_detector_recipe_compartment(self, detector_recipe_id, change_detector To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -145,6 +155,7 @@ def change_detector_recipe_compartment(self, detector_recipe_id, change_detector # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -235,6 +246,10 @@ def change_managed_list_compartment(self, managed_list_id, change_managed_list_c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -246,6 +261,7 @@ def change_managed_list_compartment(self, managed_list_id, change_managed_list_c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -336,6 +352,10 @@ def change_responder_recipe_compartment(self, responder_recipe_id, change_respon To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -347,6 +367,7 @@ def change_responder_recipe_compartment(self, responder_recipe_id, change_respon # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -427,6 +448,10 @@ def create_data_mask_rule(self, create_data_mask_rule_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.DataMaskRule` :rtype: :class:`~oci.response.Response` @@ -438,6 +463,7 @@ def create_data_mask_rule(self, create_data_mask_rule_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -506,6 +532,10 @@ def create_detector_recipe(self, create_detector_recipe_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.DetectorRecipe` :rtype: :class:`~oci.response.Response` @@ -517,6 +547,7 @@ def create_detector_recipe(self, create_detector_recipe_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -585,6 +616,10 @@ def create_managed_list(self, create_managed_list_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ManagedList` :rtype: :class:`~oci.response.Response` @@ -596,6 +631,7 @@ def create_managed_list(self, create_managed_list_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -664,6 +700,10 @@ def create_responder_recipe(self, create_responder_recipe_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ResponderRecipe` :rtype: :class:`~oci.response.Response` @@ -675,6 +715,7 @@ def create_responder_recipe(self, create_responder_recipe_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -743,6 +784,10 @@ def create_target(self, create_target_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.Target` :rtype: :class:`~oci.response.Response` @@ -754,6 +799,7 @@ def create_target(self, create_target_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -825,6 +871,10 @@ def create_target_detector_recipe(self, target_id, attach_target_detector_recipe To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.TargetDetectorRecipe` :rtype: :class:`~oci.response.Response` @@ -836,6 +886,7 @@ def create_target_detector_recipe(self, target_id, attach_target_detector_recipe # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -919,6 +970,10 @@ def create_target_responder_recipe(self, target_id, attach_target_responder_reci To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.TargetResponderRecipe` :rtype: :class:`~oci.response.Response` @@ -930,6 +985,7 @@ def create_target_responder_recipe(self, target_id, attach_target_responder_reci # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1010,6 +1066,10 @@ def delete_data_mask_rule(self, data_mask_rule_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1021,6 +1081,7 @@ def delete_data_mask_rule(self, data_mask_rule_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1103,6 +1164,10 @@ def delete_detector_recipe(self, detector_recipe_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1114,6 +1179,7 @@ def delete_detector_recipe(self, detector_recipe_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1199,6 +1265,10 @@ def delete_managed_list(self, managed_list_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1210,6 +1280,7 @@ def delete_managed_list(self, managed_list_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1288,6 +1359,10 @@ def delete_responder_recipe(self, responder_recipe_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1299,6 +1374,7 @@ def delete_responder_recipe(self, responder_recipe_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1374,6 +1450,10 @@ def delete_target(self, target_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1385,6 +1465,7 @@ def delete_target(self, target_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1463,6 +1544,10 @@ def delete_target_detector_recipe(self, target_id, target_detector_recipe_id, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1474,6 +1559,7 @@ def delete_target_detector_recipe(self, target_id, target_detector_recipe_id, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1553,6 +1639,10 @@ def delete_target_responder_recipe(self, target_id, target_responder_recipe_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1564,6 +1654,7 @@ def delete_target_responder_recipe(self, target_id, target_responder_recipe_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1653,6 +1744,10 @@ def execute_responder_execution(self, responder_execution_id, compartment_id, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1664,6 +1759,7 @@ def execute_responder_execution(self, responder_execution_id, compartment_id, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1753,6 +1849,10 @@ def get_condition_metadata_type(self, condition_metadata_type_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ConditionMetadataType` :rtype: :class:`~oci.response.Response` @@ -1764,6 +1864,7 @@ def get_condition_metadata_type(self, condition_metadata_type_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "service_type", @@ -1842,6 +1943,10 @@ def get_configuration(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.Configuration` :rtype: :class:`~oci.response.Response` @@ -1853,6 +1958,7 @@ def get_configuration(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1916,6 +2022,10 @@ def get_data_mask_rule(self, data_mask_rule_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.DataMaskRule` :rtype: :class:`~oci.response.Response` @@ -1927,6 +2037,7 @@ def get_data_mask_rule(self, data_mask_rule_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1995,6 +2106,10 @@ def get_detector(self, detector_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.Detector` :rtype: :class:`~oci.response.Response` @@ -2006,6 +2121,7 @@ def get_detector(self, detector_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2074,6 +2190,10 @@ def get_detector_recipe(self, detector_recipe_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.DetectorRecipe` :rtype: :class:`~oci.response.Response` @@ -2085,6 +2205,7 @@ def get_detector_recipe(self, detector_recipe_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2156,6 +2277,10 @@ def get_detector_recipe_detector_rule(self, detector_recipe_id, detector_rule_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.DetectorRecipeDetectorRule` :rtype: :class:`~oci.response.Response` @@ -2167,6 +2292,7 @@ def get_detector_recipe_detector_rule(self, detector_recipe_id, detector_rule_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2239,6 +2365,10 @@ def get_detector_rule(self, detector_id, detector_rule_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.DetectorRule` :rtype: :class:`~oci.response.Response` @@ -2250,6 +2380,7 @@ def get_detector_rule(self, detector_id, detector_rule_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2319,6 +2450,10 @@ def get_managed_list(self, managed_list_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ManagedList` :rtype: :class:`~oci.response.Response` @@ -2330,6 +2465,7 @@ def get_managed_list(self, managed_list_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2398,6 +2534,10 @@ def get_problem(self, problem_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.Problem` :rtype: :class:`~oci.response.Response` @@ -2409,6 +2549,7 @@ def get_problem(self, problem_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2477,6 +2618,10 @@ def get_responder_execution(self, responder_execution_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ResponderExecution` :rtype: :class:`~oci.response.Response` @@ -2488,6 +2633,7 @@ def get_responder_execution(self, responder_execution_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2556,6 +2702,10 @@ def get_responder_recipe(self, responder_recipe_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ResponderRecipe` :rtype: :class:`~oci.response.Response` @@ -2567,6 +2717,7 @@ def get_responder_recipe(self, responder_recipe_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2638,6 +2789,10 @@ def get_responder_recipe_responder_rule(self, responder_recipe_id, responder_rul To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ResponderRecipeResponderRule` :rtype: :class:`~oci.response.Response` @@ -2649,6 +2804,7 @@ def get_responder_recipe_responder_rule(self, responder_recipe_id, responder_rul # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2718,6 +2874,10 @@ def get_responder_rule(self, responder_rule_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ResponderRule` :rtype: :class:`~oci.response.Response` @@ -2729,6 +2889,7 @@ def get_responder_rule(self, responder_rule_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2797,6 +2958,10 @@ def get_target(self, target_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.Target` :rtype: :class:`~oci.response.Response` @@ -2808,6 +2973,7 @@ def get_target(self, target_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2879,6 +3045,10 @@ def get_target_detector_recipe(self, target_id, target_detector_recipe_id, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.TargetDetectorRecipe` :rtype: :class:`~oci.response.Response` @@ -2890,6 +3060,7 @@ def get_target_detector_recipe(self, target_id, target_detector_recipe_id, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2965,6 +3136,10 @@ def get_target_detector_recipe_detector_rule(self, target_id, target_detector_re To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.TargetDetectorRecipeDetectorRule` :rtype: :class:`~oci.response.Response` @@ -2976,6 +3151,7 @@ def get_target_detector_recipe_detector_rule(self, target_id, target_detector_re # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3049,6 +3225,10 @@ def get_target_responder_recipe(self, target_id, target_responder_recipe_id, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.TargetResponderRecipe` :rtype: :class:`~oci.response.Response` @@ -3060,6 +3240,7 @@ def get_target_responder_recipe(self, target_id, target_responder_recipe_id, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3135,6 +3316,10 @@ def get_target_responder_recipe_responder_rule(self, target_id, target_responder To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.TargetResponderRecipeResponderRule` :rtype: :class:`~oci.response.Response` @@ -3146,6 +3331,7 @@ def get_target_responder_recipe_responder_rule(self, target_id, target_responder # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3237,6 +3423,10 @@ def list_condition_metadata_types(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ConditionMetadataTypeCollection` :rtype: :class:`~oci.response.Response` @@ -3248,6 +3438,7 @@ def list_condition_metadata_types(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "limit", @@ -3389,6 +3580,10 @@ def list_data_mask_rules(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.DataMaskRuleCollection` :rtype: :class:`~oci.response.Response` @@ -3400,6 +3595,7 @@ def list_data_mask_rules(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "lifecycle_state", @@ -3547,6 +3743,10 @@ def list_detector_recipe_detector_rules(self, detector_recipe_id, compartment_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.DetectorRecipeDetectorRuleCollection` :rtype: :class:`~oci.response.Response` @@ -3558,6 +3758,7 @@ def list_detector_recipe_detector_rules(self, detector_recipe_id, compartment_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "lifecycle_state", @@ -3724,6 +3925,10 @@ def list_detector_recipes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.DetectorRecipeCollection` :rtype: :class:`~oci.response.Response` @@ -3735,6 +3940,7 @@ def list_detector_recipes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "resource_metadata_only", @@ -3871,6 +4077,10 @@ def list_detector_rules(self, detector_id, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.DetectorRuleCollection` :rtype: :class:`~oci.response.Response` @@ -3882,6 +4092,7 @@ def list_detector_rules(self, detector_id, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -4011,6 +4222,10 @@ def list_detectors(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.DetectorCollection` :rtype: :class:`~oci.response.Response` @@ -4022,6 +4237,7 @@ def list_detectors(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "lifecycle_state", @@ -4132,6 +4348,10 @@ def list_impacted_resources(self, problem_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ImpactedResourceCollection` :rtype: :class:`~oci.response.Response` @@ -4143,6 +4363,7 @@ def list_impacted_resources(self, problem_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -4260,6 +4481,10 @@ def list_managed_list_types(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ManagedListTypeCollection` :rtype: :class:`~oci.response.Response` @@ -4271,6 +4496,7 @@ def list_managed_list_types(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "limit", @@ -4427,6 +4653,10 @@ def list_managed_lists(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ManagedListCollection` :rtype: :class:`~oci.response.Response` @@ -4438,6 +4668,7 @@ def list_managed_lists(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "resource_metadata_only", @@ -4572,6 +4803,10 @@ def list_policies(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.PolicyCollection` :rtype: :class:`~oci.response.Response` @@ -4583,6 +4818,7 @@ def list_policies(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -4687,6 +4923,10 @@ def list_problem_histories(self, compartment_id, problem_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ProblemHistoryCollection` :rtype: :class:`~oci.response.Response` @@ -4698,6 +4938,7 @@ def list_problem_histories(self, compartment_id, problem_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -4897,6 +5138,10 @@ def list_problems(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ProblemCollection` :rtype: :class:`~oci.response.Response` @@ -4908,6 +5153,7 @@ def list_problems(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "time_last_detected_greater_than_or_equal_to", "time_last_detected_less_than_or_equal_to", @@ -5103,6 +5349,10 @@ def list_recommendations(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.RecommendationSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -5114,6 +5364,7 @@ def list_recommendations(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "sort_order", "sort_by", @@ -5251,6 +5502,10 @@ def list_resource_types(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ResourceTypeCollection` :rtype: :class:`~oci.response.Response` @@ -5262,6 +5517,7 @@ def list_resource_types(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "limit", @@ -5372,6 +5628,10 @@ def list_responder_activities(self, problem_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ResponderActivityCollection` :rtype: :class:`~oci.response.Response` @@ -5383,6 +5643,7 @@ def list_responder_activities(self, problem_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -5546,6 +5807,10 @@ def list_responder_executions(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ResponderExecutionCollection` :rtype: :class:`~oci.response.Response` @@ -5557,6 +5822,7 @@ def list_responder_executions(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id_in_subtree", "access_level", @@ -5721,6 +5987,10 @@ def list_responder_recipe_responder_rules(self, responder_recipe_id, compartment To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ResponderRecipeResponderRuleCollection` :rtype: :class:`~oci.response.Response` @@ -5732,6 +6002,7 @@ def list_responder_recipe_responder_rules(self, responder_recipe_id, compartment # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "lifecycle_state", @@ -5897,6 +6168,10 @@ def list_responder_recipes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ResponderRecipeCollection` :rtype: :class:`~oci.response.Response` @@ -5908,6 +6183,7 @@ def list_responder_recipes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "resource_metadata_only", "display_name", @@ -6041,6 +6317,10 @@ def list_responder_rules(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ResponderRuleCollection` :rtype: :class:`~oci.response.Response` @@ -6052,6 +6332,7 @@ def list_responder_rules(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "lifecycle_state", @@ -6178,6 +6459,10 @@ def list_target_detector_recipe_detector_rules(self, target_id, target_detector_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.TargetDetectorRecipeDetectorRuleCollection` :rtype: :class:`~oci.response.Response` @@ -6189,6 +6474,7 @@ def list_target_detector_recipe_detector_rules(self, target_id, target_detector_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "lifecycle_state", @@ -6325,6 +6611,10 @@ def list_target_detector_recipes(self, target_id, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.TargetDetectorRecipeCollection` :rtype: :class:`~oci.response.Response` @@ -6336,6 +6626,7 @@ def list_target_detector_recipes(self, target_id, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "lifecycle_state", @@ -6474,6 +6765,10 @@ def list_target_responder_recipe_responder_rules(self, target_id, target_respond To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.TargetResponderRecipeResponderRuleCollection` :rtype: :class:`~oci.response.Response` @@ -6485,6 +6780,7 @@ def list_target_responder_recipe_responder_rules(self, target_id, target_respond # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "lifecycle_state", @@ -6621,6 +6917,10 @@ def list_target_responder_recipes(self, target_id, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.TargetResponderRecipeCollection` :rtype: :class:`~oci.response.Response` @@ -6632,6 +6932,7 @@ def list_target_responder_recipes(self, target_id, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "lifecycle_state", @@ -6792,6 +7093,10 @@ def list_targets(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.TargetCollection` :rtype: :class:`~oci.response.Response` @@ -6803,6 +7108,7 @@ def list_targets(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "lifecycle_state", @@ -6916,6 +7222,10 @@ def request_risk_scores(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.RiskScoreAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -6927,6 +7237,7 @@ def request_risk_scores(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -7007,6 +7318,10 @@ def request_security_score_summarized_trend(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.SecurityScoreTrendAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -7018,6 +7333,7 @@ def request_security_score_summarized_trend(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "time_score_computed_greater_than_or_equal_to", "time_score_computed_less_than_or_equal_to", @@ -7095,6 +7411,10 @@ def request_security_scores(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.SecurityScoreAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -7106,6 +7426,7 @@ def request_security_scores(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -7213,6 +7534,10 @@ def request_summarized_activity_problems(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ActivityProblemAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -7224,6 +7549,7 @@ def request_summarized_activity_problems(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id_in_subtree", "access_level", @@ -7341,6 +7667,10 @@ def request_summarized_problems(self, list_dimensions, compartment_id, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ProblemAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -7352,6 +7682,7 @@ def request_summarized_problems(self, list_dimensions, compartment_id, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id_in_subtree", "access_level", @@ -7487,6 +7818,10 @@ def request_summarized_responder_executions(self, responder_executions_dimension To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ResponderExecutionAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -7498,6 +7833,7 @@ def request_summarized_responder_executions(self, responder_executions_dimension # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "responder_type_filter", "responder_execution_status_filter", @@ -7610,6 +7946,10 @@ def request_summarized_risk_scores(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.RiskScoreAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -7621,6 +7961,7 @@ def request_summarized_risk_scores(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -7694,6 +8035,10 @@ def request_summarized_security_scores(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.SecurityScoreAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -7705,6 +8050,7 @@ def request_summarized_security_scores(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -7810,6 +8156,10 @@ def request_summarized_trend_problems(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ProblemTrendAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -7821,6 +8171,7 @@ def request_summarized_trend_problems(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "time_first_detected_greater_than_or_equal_to", "time_first_detected_less_than_or_equal_to", @@ -7941,6 +8292,10 @@ def request_summarized_trend_responder_executions(self, compartment_id, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ResponderExecutionTrendAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -7952,6 +8307,7 @@ def request_summarized_trend_responder_executions(self, compartment_id, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "time_completed_greater_than_or_equal_to", "time_completed_less_than_or_equal_to", @@ -8046,6 +8402,10 @@ def request_summarized_trend_security_scores(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.SecurityScoreTrendAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -8057,6 +8417,7 @@ def request_summarized_trend_security_scores(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "time_score_computed_greater_than_or_equal_to", "time_score_computed_less_than_or_equal_to", @@ -8129,6 +8490,10 @@ def skip_bulk_responder_execution(self, skip_bulk_responder_execution_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -8140,6 +8505,7 @@ def skip_bulk_responder_execution(self, skip_bulk_responder_execution_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -8213,6 +8579,10 @@ def skip_responder_execution(self, responder_execution_id, compartment_id, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -8224,6 +8594,7 @@ def skip_responder_execution(self, responder_execution_id, compartment_id, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -8319,6 +8690,10 @@ def trigger_responder(self, problem_id, trigger_responder_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -8330,6 +8705,7 @@ def trigger_responder(self, problem_id, trigger_responder_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -8404,6 +8780,10 @@ def update_bulk_problem_status(self, update_bulk_problem_status_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -8415,6 +8795,7 @@ def update_bulk_problem_status(self, update_bulk_problem_status_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -8488,6 +8869,10 @@ def update_configuration(self, update_configuration_details, compartment_id, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.Configuration` :rtype: :class:`~oci.response.Response` @@ -8499,6 +8884,7 @@ def update_configuration(self, update_configuration_details, compartment_id, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -8579,6 +8965,10 @@ def update_data_mask_rule(self, data_mask_rule_id, update_data_mask_rule_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.DataMaskRule` :rtype: :class:`~oci.response.Response` @@ -8590,6 +8980,7 @@ def update_data_mask_rule(self, data_mask_rule_id, update_data_mask_rule_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -8679,6 +9070,10 @@ def update_detector_recipe(self, detector_recipe_id, update_detector_recipe_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.DetectorRecipe` :rtype: :class:`~oci.response.Response` @@ -8690,6 +9085,7 @@ def update_detector_recipe(self, detector_recipe_id, update_detector_recipe_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -8778,6 +9174,10 @@ def update_detector_recipe_detector_rule(self, detector_recipe_id, detector_rule To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.DetectorRecipeDetectorRule` :rtype: :class:`~oci.response.Response` @@ -8789,6 +9189,7 @@ def update_detector_recipe_detector_rule(self, detector_recipe_id, detector_rule # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -8879,6 +9280,10 @@ def update_managed_list(self, managed_list_id, update_managed_list_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ManagedList` :rtype: :class:`~oci.response.Response` @@ -8890,6 +9295,7 @@ def update_managed_list(self, managed_list_id, update_managed_list_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -8982,6 +9388,10 @@ def update_problem_status(self, problem_id, update_problem_status_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.Problem` :rtype: :class:`~oci.response.Response` @@ -8993,6 +9403,7 @@ def update_problem_status(self, problem_id, update_problem_status_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -9078,6 +9489,10 @@ def update_responder_recipe(self, responder_recipe_id, update_responder_recipe_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ResponderRecipe` :rtype: :class:`~oci.response.Response` @@ -9089,6 +9504,7 @@ def update_responder_recipe(self, responder_recipe_id, update_responder_recipe_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -9174,6 +9590,10 @@ def update_responder_recipe_responder_rule(self, responder_recipe_id, responder_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.ResponderRecipeResponderRule` :rtype: :class:`~oci.response.Response` @@ -9185,6 +9605,7 @@ def update_responder_recipe_responder_rule(self, responder_recipe_id, responder_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -9268,6 +9689,10 @@ def update_target(self, target_id, update_target_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.Target` :rtype: :class:`~oci.response.Response` @@ -9279,6 +9704,7 @@ def update_target(self, target_id, update_target_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -9364,6 +9790,10 @@ def update_target_detector_recipe(self, target_id, target_detector_recipe_id, up To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.TargetDetectorRecipe` :rtype: :class:`~oci.response.Response` @@ -9375,6 +9805,7 @@ def update_target_detector_recipe(self, target_id, target_detector_recipe_id, up # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -9464,6 +9895,10 @@ def update_target_detector_recipe_detector_rule(self, target_id, target_detector To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.TargetDetectorRecipeDetectorRule` :rtype: :class:`~oci.response.Response` @@ -9475,6 +9910,7 @@ def update_target_detector_recipe_detector_rule(self, target_id, target_detector # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -9562,6 +9998,10 @@ def update_target_responder_recipe(self, target_id, target_responder_recipe_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.TargetResponderRecipe` :rtype: :class:`~oci.response.Response` @@ -9573,6 +10013,7 @@ def update_target_responder_recipe(self, target_id, target_responder_recipe_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -9662,6 +10103,10 @@ def update_target_responder_recipe_responder_rule(self, target_id, target_respon To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.cloud_guard.models.TargetResponderRecipeResponderRule` :rtype: :class:`~oci.response.Response` @@ -9673,6 +10118,7 @@ def update_target_responder_recipe_responder_rule(self, target_id, target_respon # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/cloud_guard/cloud_guard_client_composite_operations.py b/src/oci/cloud_guard/cloud_guard_client_composite_operations.py index 513d98a659..3f2a37489e 100644 --- a/src/oci/cloud_guard/cloud_guard_client_composite_operations.py +++ b/src/oci/cloud_guard/cloud_guard_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/cloud_guard/models/__init__.py b/src/oci/cloud_guard/models/__init__.py index 3e1daa72ca..97278c096b 100644 --- a/src/oci/cloud_guard/models/__init__.py +++ b/src/oci/cloud_guard/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/cloud_guard/models/activity_problem_aggregation.py b/src/oci/cloud_guard/models/activity_problem_aggregation.py index c66fda3489..8a334d542f 100644 --- a/src/oci/cloud_guard/models/activity_problem_aggregation.py +++ b/src/oci/cloud_guard/models/activity_problem_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/activity_problem_aggregation_collection.py b/src/oci/cloud_guard/models/activity_problem_aggregation_collection.py index 1816d0e6dc..0eb3d60aa9 100644 --- a/src/oci/cloud_guard/models/activity_problem_aggregation_collection.py +++ b/src/oci/cloud_guard/models/activity_problem_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/all_targets_selected.py b/src/oci/cloud_guard/models/all_targets_selected.py index e6f2f4eb40..40aa245a47 100644 --- a/src/oci/cloud_guard/models/all_targets_selected.py +++ b/src/oci/cloud_guard/models/all_targets_selected.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .target_selected import TargetSelected diff --git a/src/oci/cloud_guard/models/attach_target_detector_recipe_details.py b/src/oci/cloud_guard/models/attach_target_detector_recipe_details.py index b12972fab7..f6a40516e1 100644 --- a/src/oci/cloud_guard/models/attach_target_detector_recipe_details.py +++ b/src/oci/cloud_guard/models/attach_target_detector_recipe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/attach_target_responder_recipe_details.py b/src/oci/cloud_guard/models/attach_target_responder_recipe_details.py index 55a09aa54c..d2f0b96838 100644 --- a/src/oci/cloud_guard/models/attach_target_responder_recipe_details.py +++ b/src/oci/cloud_guard/models/attach_target_responder_recipe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/candidate_responder_rule.py b/src/oci/cloud_guard/models/candidate_responder_rule.py index 7a1cfe6e5f..0148ea36db 100644 --- a/src/oci/cloud_guard/models/candidate_responder_rule.py +++ b/src/oci/cloud_guard/models/candidate_responder_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/change_detector_recipe_compartment_details.py b/src/oci/cloud_guard/models/change_detector_recipe_compartment_details.py index fabc9a1fbf..6ce08e76ad 100644 --- a/src/oci/cloud_guard/models/change_detector_recipe_compartment_details.py +++ b/src/oci/cloud_guard/models/change_detector_recipe_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/change_managed_list_compartment_details.py b/src/oci/cloud_guard/models/change_managed_list_compartment_details.py index 79b19ebbaa..3ae4192943 100644 --- a/src/oci/cloud_guard/models/change_managed_list_compartment_details.py +++ b/src/oci/cloud_guard/models/change_managed_list_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/change_responder_recipe_compartment_details.py b/src/oci/cloud_guard/models/change_responder_recipe_compartment_details.py index ca951bea5a..5daa1de4c9 100644 --- a/src/oci/cloud_guard/models/change_responder_recipe_compartment_details.py +++ b/src/oci/cloud_guard/models/change_responder_recipe_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/composite_condition.py b/src/oci/cloud_guard/models/composite_condition.py index 92e8f12d2a..b858c3e558 100644 --- a/src/oci/cloud_guard/models/composite_condition.py +++ b/src/oci/cloud_guard/models/composite_condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .condition import Condition diff --git a/src/oci/cloud_guard/models/condition.py b/src/oci/cloud_guard/models/condition.py index 4c3d7c1385..47c1ff4c80 100644 --- a/src/oci/cloud_guard/models/condition.py +++ b/src/oci/cloud_guard/models/condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/condition_group.py b/src/oci/cloud_guard/models/condition_group.py index cf9eaf9afb..4a65556e96 100644 --- a/src/oci/cloud_guard/models/condition_group.py +++ b/src/oci/cloud_guard/models/condition_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/condition_metadata_type.py b/src/oci/cloud_guard/models/condition_metadata_type.py index fa5f89c1c9..5c880c22b3 100644 --- a/src/oci/cloud_guard/models/condition_metadata_type.py +++ b/src/oci/cloud_guard/models/condition_metadata_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/condition_metadata_type_collection.py b/src/oci/cloud_guard/models/condition_metadata_type_collection.py index e35311642a..a021718527 100644 --- a/src/oci/cloud_guard/models/condition_metadata_type_collection.py +++ b/src/oci/cloud_guard/models/condition_metadata_type_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/condition_metadata_type_summary.py b/src/oci/cloud_guard/models/condition_metadata_type_summary.py index d1dbe654bd..dbd5ab3162 100644 --- a/src/oci/cloud_guard/models/condition_metadata_type_summary.py +++ b/src/oci/cloud_guard/models/condition_metadata_type_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/condition_operator.py b/src/oci/cloud_guard/models/condition_operator.py index bdfc98ce1f..48448954ba 100644 --- a/src/oci/cloud_guard/models/condition_operator.py +++ b/src/oci/cloud_guard/models/condition_operator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/config_value.py b/src/oci/cloud_guard/models/config_value.py index 3cfe43bb99..c2c277301c 100644 --- a/src/oci/cloud_guard/models/config_value.py +++ b/src/oci/cloud_guard/models/config_value.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/configuration.py b/src/oci/cloud_guard/models/configuration.py index f4989d3bd1..3375b4ea77 100644 --- a/src/oci/cloud_guard/models/configuration.py +++ b/src/oci/cloud_guard/models/configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/create_data_mask_rule_details.py b/src/oci/cloud_guard/models/create_data_mask_rule_details.py index 6e84ec6257..af735fb62c 100644 --- a/src/oci/cloud_guard/models/create_data_mask_rule_details.py +++ b/src/oci/cloud_guard/models/create_data_mask_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/create_detector_recipe_details.py b/src/oci/cloud_guard/models/create_detector_recipe_details.py index 9f64e83422..1c511719f8 100644 --- a/src/oci/cloud_guard/models/create_detector_recipe_details.py +++ b/src/oci/cloud_guard/models/create_detector_recipe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/create_managed_list_details.py b/src/oci/cloud_guard/models/create_managed_list_details.py index 7d8c66622d..09c7e133d8 100644 --- a/src/oci/cloud_guard/models/create_managed_list_details.py +++ b/src/oci/cloud_guard/models/create_managed_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/create_responder_recipe_details.py b/src/oci/cloud_guard/models/create_responder_recipe_details.py index 5a989be439..b9feff07ca 100644 --- a/src/oci/cloud_guard/models/create_responder_recipe_details.py +++ b/src/oci/cloud_guard/models/create_responder_recipe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/create_target_details.py b/src/oci/cloud_guard/models/create_target_details.py index d76742b11a..796a2d3b12 100644 --- a/src/oci/cloud_guard/models/create_target_details.py +++ b/src/oci/cloud_guard/models/create_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/create_target_detector_recipe_details.py b/src/oci/cloud_guard/models/create_target_detector_recipe_details.py index 9b19bef161..4994ba7ac0 100644 --- a/src/oci/cloud_guard/models/create_target_detector_recipe_details.py +++ b/src/oci/cloud_guard/models/create_target_detector_recipe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/create_target_responder_recipe_details.py b/src/oci/cloud_guard/models/create_target_responder_recipe_details.py index 73223885cd..671ffca6f6 100644 --- a/src/oci/cloud_guard/models/create_target_responder_recipe_details.py +++ b/src/oci/cloud_guard/models/create_target_responder_recipe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/data_mask_rule.py b/src/oci/cloud_guard/models/data_mask_rule.py index 5f4f2333e0..c3b25a0d65 100644 --- a/src/oci/cloud_guard/models/data_mask_rule.py +++ b/src/oci/cloud_guard/models/data_mask_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/data_mask_rule_collection.py b/src/oci/cloud_guard/models/data_mask_rule_collection.py index 132ec63ff2..0194e72bd3 100644 --- a/src/oci/cloud_guard/models/data_mask_rule_collection.py +++ b/src/oci/cloud_guard/models/data_mask_rule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/data_mask_rule_summary.py b/src/oci/cloud_guard/models/data_mask_rule_summary.py index 1565452964..9b8d36e126 100644 --- a/src/oci/cloud_guard/models/data_mask_rule_summary.py +++ b/src/oci/cloud_guard/models/data_mask_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/detector.py b/src/oci/cloud_guard/models/detector.py index a971755420..47188e3a0d 100644 --- a/src/oci/cloud_guard/models/detector.py +++ b/src/oci/cloud_guard/models/detector.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/detector_collection.py b/src/oci/cloud_guard/models/detector_collection.py index c787afeab1..497f0b60a6 100644 --- a/src/oci/cloud_guard/models/detector_collection.py +++ b/src/oci/cloud_guard/models/detector_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/detector_configuration.py b/src/oci/cloud_guard/models/detector_configuration.py index 16d2dcf6c0..cf98240fb3 100644 --- a/src/oci/cloud_guard/models/detector_configuration.py +++ b/src/oci/cloud_guard/models/detector_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/detector_details.py b/src/oci/cloud_guard/models/detector_details.py index 269e82dc22..bacbb65645 100644 --- a/src/oci/cloud_guard/models/detector_details.py +++ b/src/oci/cloud_guard/models/detector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/detector_recipe.py b/src/oci/cloud_guard/models/detector_recipe.py index 5bf05e5a2b..8bf644ebe3 100644 --- a/src/oci/cloud_guard/models/detector_recipe.py +++ b/src/oci/cloud_guard/models/detector_recipe.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/detector_recipe_collection.py b/src/oci/cloud_guard/models/detector_recipe_collection.py index d4b64454d9..3065f5c582 100644 --- a/src/oci/cloud_guard/models/detector_recipe_collection.py +++ b/src/oci/cloud_guard/models/detector_recipe_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/detector_recipe_detector_rule.py b/src/oci/cloud_guard/models/detector_recipe_detector_rule.py index 5eea0c0f1b..e674bace80 100644 --- a/src/oci/cloud_guard/models/detector_recipe_detector_rule.py +++ b/src/oci/cloud_guard/models/detector_recipe_detector_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/detector_recipe_detector_rule_collection.py b/src/oci/cloud_guard/models/detector_recipe_detector_rule_collection.py index 4ad06f212b..e9aa5b467f 100644 --- a/src/oci/cloud_guard/models/detector_recipe_detector_rule_collection.py +++ b/src/oci/cloud_guard/models/detector_recipe_detector_rule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/detector_recipe_detector_rule_summary.py b/src/oci/cloud_guard/models/detector_recipe_detector_rule_summary.py index 67cd38395f..9935dc91fb 100644 --- a/src/oci/cloud_guard/models/detector_recipe_detector_rule_summary.py +++ b/src/oci/cloud_guard/models/detector_recipe_detector_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/detector_recipe_summary.py b/src/oci/cloud_guard/models/detector_recipe_summary.py index 4ba05aef7b..fe03ab2c43 100644 --- a/src/oci/cloud_guard/models/detector_recipe_summary.py +++ b/src/oci/cloud_guard/models/detector_recipe_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/detector_rule.py b/src/oci/cloud_guard/models/detector_rule.py index 9aef055acc..a12ab3e427 100644 --- a/src/oci/cloud_guard/models/detector_rule.py +++ b/src/oci/cloud_guard/models/detector_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/detector_rule_collection.py b/src/oci/cloud_guard/models/detector_rule_collection.py index 5b1d215a0e..1e35f853d0 100644 --- a/src/oci/cloud_guard/models/detector_rule_collection.py +++ b/src/oci/cloud_guard/models/detector_rule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/detector_rule_summary.py b/src/oci/cloud_guard/models/detector_rule_summary.py index bc7bccb6f4..ab3c8978cf 100644 --- a/src/oci/cloud_guard/models/detector_rule_summary.py +++ b/src/oci/cloud_guard/models/detector_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/detector_summary.py b/src/oci/cloud_guard/models/detector_summary.py index 48375a09b3..fb32942f33 100644 --- a/src/oci/cloud_guard/models/detector_summary.py +++ b/src/oci/cloud_guard/models/detector_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/execute_responder_execution_details.py b/src/oci/cloud_guard/models/execute_responder_execution_details.py index 1c02676995..090bcf01cf 100644 --- a/src/oci/cloud_guard/models/execute_responder_execution_details.py +++ b/src/oci/cloud_guard/models/execute_responder_execution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/geographical_location.py b/src/oci/cloud_guard/models/geographical_location.py index 8b25807dda..3652a96353 100644 --- a/src/oci/cloud_guard/models/geographical_location.py +++ b/src/oci/cloud_guard/models/geographical_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/impacted_resource_collection.py b/src/oci/cloud_guard/models/impacted_resource_collection.py index 2cd2bca4d9..aea1d78b84 100644 --- a/src/oci/cloud_guard/models/impacted_resource_collection.py +++ b/src/oci/cloud_guard/models/impacted_resource_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/impacted_resource_summary.py b/src/oci/cloud_guard/models/impacted_resource_summary.py index b4a5da028b..9366b3366b 100644 --- a/src/oci/cloud_guard/models/impacted_resource_summary.py +++ b/src/oci/cloud_guard/models/impacted_resource_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/managed_list.py b/src/oci/cloud_guard/models/managed_list.py index 284a5becf1..7125c8f6ab 100644 --- a/src/oci/cloud_guard/models/managed_list.py +++ b/src/oci/cloud_guard/models/managed_list.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/managed_list_collection.py b/src/oci/cloud_guard/models/managed_list_collection.py index 4802928daa..29eb97fe70 100644 --- a/src/oci/cloud_guard/models/managed_list_collection.py +++ b/src/oci/cloud_guard/models/managed_list_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/managed_list_summary.py b/src/oci/cloud_guard/models/managed_list_summary.py index 7a4c01abd7..b3c3b0f8ad 100644 --- a/src/oci/cloud_guard/models/managed_list_summary.py +++ b/src/oci/cloud_guard/models/managed_list_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/managed_list_type_collection.py b/src/oci/cloud_guard/models/managed_list_type_collection.py index 7a8b17c49f..c88923fc08 100644 --- a/src/oci/cloud_guard/models/managed_list_type_collection.py +++ b/src/oci/cloud_guard/models/managed_list_type_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/managed_list_type_summary.py b/src/oci/cloud_guard/models/managed_list_type_summary.py index 454c966136..c7e6711a06 100644 --- a/src/oci/cloud_guard/models/managed_list_type_summary.py +++ b/src/oci/cloud_guard/models/managed_list_type_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/operator_summary.py b/src/oci/cloud_guard/models/operator_summary.py index 5959993d46..02762f9175 100644 --- a/src/oci/cloud_guard/models/operator_summary.py +++ b/src/oci/cloud_guard/models/operator_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/policy_collection.py b/src/oci/cloud_guard/models/policy_collection.py index 504c622d93..8fbe8d5de0 100644 --- a/src/oci/cloud_guard/models/policy_collection.py +++ b/src/oci/cloud_guard/models/policy_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/policy_summary.py b/src/oci/cloud_guard/models/policy_summary.py index d5af22d3b1..db94b5dec9 100644 --- a/src/oci/cloud_guard/models/policy_summary.py +++ b/src/oci/cloud_guard/models/policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/political_location.py b/src/oci/cloud_guard/models/political_location.py index ffc968548d..f1d13c5ce1 100644 --- a/src/oci/cloud_guard/models/political_location.py +++ b/src/oci/cloud_guard/models/political_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/problem.py b/src/oci/cloud_guard/models/problem.py index 648841a8a0..3035c0b731 100644 --- a/src/oci/cloud_guard/models/problem.py +++ b/src/oci/cloud_guard/models/problem.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/problem_aggregation.py b/src/oci/cloud_guard/models/problem_aggregation.py index cd84c5e854..b3a70c8bbf 100644 --- a/src/oci/cloud_guard/models/problem_aggregation.py +++ b/src/oci/cloud_guard/models/problem_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/problem_aggregation_collection.py b/src/oci/cloud_guard/models/problem_aggregation_collection.py index 40c0435f27..6066ab129d 100644 --- a/src/oci/cloud_guard/models/problem_aggregation_collection.py +++ b/src/oci/cloud_guard/models/problem_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/problem_collection.py b/src/oci/cloud_guard/models/problem_collection.py index 5c889725af..f018ccb259 100644 --- a/src/oci/cloud_guard/models/problem_collection.py +++ b/src/oci/cloud_guard/models/problem_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/problem_history_collection.py b/src/oci/cloud_guard/models/problem_history_collection.py index cdad8b15a4..a31472f3e6 100644 --- a/src/oci/cloud_guard/models/problem_history_collection.py +++ b/src/oci/cloud_guard/models/problem_history_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/problem_history_summary.py b/src/oci/cloud_guard/models/problem_history_summary.py index 1aad3f4c6b..33da8d9a46 100644 --- a/src/oci/cloud_guard/models/problem_history_summary.py +++ b/src/oci/cloud_guard/models/problem_history_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/problem_summary.py b/src/oci/cloud_guard/models/problem_summary.py index 90cebeabd8..b747c0751b 100644 --- a/src/oci/cloud_guard/models/problem_summary.py +++ b/src/oci/cloud_guard/models/problem_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/problem_trend_aggregation.py b/src/oci/cloud_guard/models/problem_trend_aggregation.py index 938f5e28da..ae4d46895f 100644 --- a/src/oci/cloud_guard/models/problem_trend_aggregation.py +++ b/src/oci/cloud_guard/models/problem_trend_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/problem_trend_aggregation_collection.py b/src/oci/cloud_guard/models/problem_trend_aggregation_collection.py index 51a723fb9f..a3ee0e6f08 100644 --- a/src/oci/cloud_guard/models/problem_trend_aggregation_collection.py +++ b/src/oci/cloud_guard/models/problem_trend_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/recommendation_summary.py b/src/oci/cloud_guard/models/recommendation_summary.py index a7d65cae36..d626eed9dd 100644 --- a/src/oci/cloud_guard/models/recommendation_summary.py +++ b/src/oci/cloud_guard/models/recommendation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/recommendation_summary_collection.py b/src/oci/cloud_guard/models/recommendation_summary_collection.py index 3b43bf779d..01f51e134f 100644 --- a/src/oci/cloud_guard/models/recommendation_summary_collection.py +++ b/src/oci/cloud_guard/models/recommendation_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/resource_type_collection.py b/src/oci/cloud_guard/models/resource_type_collection.py index 70e7222a42..ef4eef4c9d 100644 --- a/src/oci/cloud_guard/models/resource_type_collection.py +++ b/src/oci/cloud_guard/models/resource_type_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/resource_type_summary.py b/src/oci/cloud_guard/models/resource_type_summary.py index 4921706bfe..1d7c2d9663 100644 --- a/src/oci/cloud_guard/models/resource_type_summary.py +++ b/src/oci/cloud_guard/models/resource_type_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_activity_collection.py b/src/oci/cloud_guard/models/responder_activity_collection.py index e875c6e7ce..d53ae1c9ab 100644 --- a/src/oci/cloud_guard/models/responder_activity_collection.py +++ b/src/oci/cloud_guard/models/responder_activity_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_activity_summary.py b/src/oci/cloud_guard/models/responder_activity_summary.py index 29c17a4a47..9669a38fe6 100644 --- a/src/oci/cloud_guard/models/responder_activity_summary.py +++ b/src/oci/cloud_guard/models/responder_activity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_configuration.py b/src/oci/cloud_guard/models/responder_configuration.py index b3650e980d..6e031be254 100644 --- a/src/oci/cloud_guard/models/responder_configuration.py +++ b/src/oci/cloud_guard/models/responder_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_execution.py b/src/oci/cloud_guard/models/responder_execution.py index 5094e1968c..c5e14746ed 100644 --- a/src/oci/cloud_guard/models/responder_execution.py +++ b/src/oci/cloud_guard/models/responder_execution.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_execution_aggregation.py b/src/oci/cloud_guard/models/responder_execution_aggregation.py index f7eb31d76e..e1bad554dc 100644 --- a/src/oci/cloud_guard/models/responder_execution_aggregation.py +++ b/src/oci/cloud_guard/models/responder_execution_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_execution_aggregation_collection.py b/src/oci/cloud_guard/models/responder_execution_aggregation_collection.py index a83a5aa8c1..413bf36d51 100644 --- a/src/oci/cloud_guard/models/responder_execution_aggregation_collection.py +++ b/src/oci/cloud_guard/models/responder_execution_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_execution_collection.py b/src/oci/cloud_guard/models/responder_execution_collection.py index 22c3fc69d5..942b13ef8b 100644 --- a/src/oci/cloud_guard/models/responder_execution_collection.py +++ b/src/oci/cloud_guard/models/responder_execution_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_execution_summary.py b/src/oci/cloud_guard/models/responder_execution_summary.py index 996192cfd9..8b67f7b6b5 100644 --- a/src/oci/cloud_guard/models/responder_execution_summary.py +++ b/src/oci/cloud_guard/models/responder_execution_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_execution_trend_aggregation.py b/src/oci/cloud_guard/models/responder_execution_trend_aggregation.py index 621f3a875a..27adc48b28 100644 --- a/src/oci/cloud_guard/models/responder_execution_trend_aggregation.py +++ b/src/oci/cloud_guard/models/responder_execution_trend_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_execution_trend_aggregation_collection.py b/src/oci/cloud_guard/models/responder_execution_trend_aggregation_collection.py index 775c425a96..882c04018a 100644 --- a/src/oci/cloud_guard/models/responder_execution_trend_aggregation_collection.py +++ b/src/oci/cloud_guard/models/responder_execution_trend_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_recipe.py b/src/oci/cloud_guard/models/responder_recipe.py index 4ad95844c0..b187f5482a 100644 --- a/src/oci/cloud_guard/models/responder_recipe.py +++ b/src/oci/cloud_guard/models/responder_recipe.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_recipe_collection.py b/src/oci/cloud_guard/models/responder_recipe_collection.py index 4330de4b81..81e4d0eb9d 100644 --- a/src/oci/cloud_guard/models/responder_recipe_collection.py +++ b/src/oci/cloud_guard/models/responder_recipe_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_recipe_responder_rule.py b/src/oci/cloud_guard/models/responder_recipe_responder_rule.py index 9c568f2d17..e0c3006cd6 100644 --- a/src/oci/cloud_guard/models/responder_recipe_responder_rule.py +++ b/src/oci/cloud_guard/models/responder_recipe_responder_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_recipe_responder_rule_collection.py b/src/oci/cloud_guard/models/responder_recipe_responder_rule_collection.py index 00c52d65c2..ec55d1b9bc 100644 --- a/src/oci/cloud_guard/models/responder_recipe_responder_rule_collection.py +++ b/src/oci/cloud_guard/models/responder_recipe_responder_rule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_recipe_responder_rule_summary.py b/src/oci/cloud_guard/models/responder_recipe_responder_rule_summary.py index ae1a3bace0..5a7476a40d 100644 --- a/src/oci/cloud_guard/models/responder_recipe_responder_rule_summary.py +++ b/src/oci/cloud_guard/models/responder_recipe_responder_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_recipe_summary.py b/src/oci/cloud_guard/models/responder_recipe_summary.py index fe6a1c7156..3fbf5e5769 100644 --- a/src/oci/cloud_guard/models/responder_recipe_summary.py +++ b/src/oci/cloud_guard/models/responder_recipe_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_rule.py b/src/oci/cloud_guard/models/responder_rule.py index 9f9d1d248c..e473c86a39 100644 --- a/src/oci/cloud_guard/models/responder_rule.py +++ b/src/oci/cloud_guard/models/responder_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_rule_collection.py b/src/oci/cloud_guard/models/responder_rule_collection.py index 704b0c4e10..a0867b61f6 100644 --- a/src/oci/cloud_guard/models/responder_rule_collection.py +++ b/src/oci/cloud_guard/models/responder_rule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_rule_details.py b/src/oci/cloud_guard/models/responder_rule_details.py index 8705835bb3..04df83552e 100644 --- a/src/oci/cloud_guard/models/responder_rule_details.py +++ b/src/oci/cloud_guard/models/responder_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_rule_execution_details.py b/src/oci/cloud_guard/models/responder_rule_execution_details.py index ec7cc91d21..20c99e22fe 100644 --- a/src/oci/cloud_guard/models/responder_rule_execution_details.py +++ b/src/oci/cloud_guard/models/responder_rule_execution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/responder_rule_summary.py b/src/oci/cloud_guard/models/responder_rule_summary.py index b9e3409c33..96d642637a 100644 --- a/src/oci/cloud_guard/models/responder_rule_summary.py +++ b/src/oci/cloud_guard/models/responder_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/risk_score_aggregation.py b/src/oci/cloud_guard/models/risk_score_aggregation.py index 2a6041a70c..0e7ffbc94f 100644 --- a/src/oci/cloud_guard/models/risk_score_aggregation.py +++ b/src/oci/cloud_guard/models/risk_score_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/risk_score_aggregation_collection.py b/src/oci/cloud_guard/models/risk_score_aggregation_collection.py index 4ba3351458..5a33375129 100644 --- a/src/oci/cloud_guard/models/risk_score_aggregation_collection.py +++ b/src/oci/cloud_guard/models/risk_score_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/rule_summary.py b/src/oci/cloud_guard/models/rule_summary.py index 3cefc176c8..250f94563c 100644 --- a/src/oci/cloud_guard/models/rule_summary.py +++ b/src/oci/cloud_guard/models/rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/security_score_aggregation.py b/src/oci/cloud_guard/models/security_score_aggregation.py index cf1343644b..cda1e15c13 100644 --- a/src/oci/cloud_guard/models/security_score_aggregation.py +++ b/src/oci/cloud_guard/models/security_score_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/security_score_aggregation_collection.py b/src/oci/cloud_guard/models/security_score_aggregation_collection.py index 573863113c..a3a6350c8f 100644 --- a/src/oci/cloud_guard/models/security_score_aggregation_collection.py +++ b/src/oci/cloud_guard/models/security_score_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/security_score_trend_aggregation.py b/src/oci/cloud_guard/models/security_score_trend_aggregation.py index 96b1c8083b..9221838d48 100644 --- a/src/oci/cloud_guard/models/security_score_trend_aggregation.py +++ b/src/oci/cloud_guard/models/security_score_trend_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/security_score_trend_aggregation_collection.py b/src/oci/cloud_guard/models/security_score_trend_aggregation_collection.py index 55f28ff415..b01657cddc 100644 --- a/src/oci/cloud_guard/models/security_score_trend_aggregation_collection.py +++ b/src/oci/cloud_guard/models/security_score_trend_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/service_type_summary.py b/src/oci/cloud_guard/models/service_type_summary.py index 891c75d116..281b157e45 100644 --- a/src/oci/cloud_guard/models/service_type_summary.py +++ b/src/oci/cloud_guard/models/service_type_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/simple_condition.py b/src/oci/cloud_guard/models/simple_condition.py index 48b18f2ffd..ca5838ce22 100644 --- a/src/oci/cloud_guard/models/simple_condition.py +++ b/src/oci/cloud_guard/models/simple_condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .condition import Condition diff --git a/src/oci/cloud_guard/models/skip_bulk_responder_execution_details.py b/src/oci/cloud_guard/models/skip_bulk_responder_execution_details.py index 4b7e5bdf28..9e8a9b98da 100644 --- a/src/oci/cloud_guard/models/skip_bulk_responder_execution_details.py +++ b/src/oci/cloud_guard/models/skip_bulk_responder_execution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/target.py b/src/oci/cloud_guard/models/target.py index 9a1d841945..2efafbceaa 100644 --- a/src/oci/cloud_guard/models/target.py +++ b/src/oci/cloud_guard/models/target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/target_collection.py b/src/oci/cloud_guard/models/target_collection.py index 4c08c1c882..dc62a6117a 100644 --- a/src/oci/cloud_guard/models/target_collection.py +++ b/src/oci/cloud_guard/models/target_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/target_detector_details.py b/src/oci/cloud_guard/models/target_detector_details.py index c6a2777560..872f2ad365 100644 --- a/src/oci/cloud_guard/models/target_detector_details.py +++ b/src/oci/cloud_guard/models/target_detector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/target_detector_recipe.py b/src/oci/cloud_guard/models/target_detector_recipe.py index fa51e82adc..0652844079 100644 --- a/src/oci/cloud_guard/models/target_detector_recipe.py +++ b/src/oci/cloud_guard/models/target_detector_recipe.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/target_detector_recipe_collection.py b/src/oci/cloud_guard/models/target_detector_recipe_collection.py index 056e9e05a1..e0f7c56659 100644 --- a/src/oci/cloud_guard/models/target_detector_recipe_collection.py +++ b/src/oci/cloud_guard/models/target_detector_recipe_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/target_detector_recipe_detector_rule.py b/src/oci/cloud_guard/models/target_detector_recipe_detector_rule.py index 6c25d89ddc..c8816e6862 100644 --- a/src/oci/cloud_guard/models/target_detector_recipe_detector_rule.py +++ b/src/oci/cloud_guard/models/target_detector_recipe_detector_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/target_detector_recipe_detector_rule_collection.py b/src/oci/cloud_guard/models/target_detector_recipe_detector_rule_collection.py index 7e837d201c..2c2ff10f87 100644 --- a/src/oci/cloud_guard/models/target_detector_recipe_detector_rule_collection.py +++ b/src/oci/cloud_guard/models/target_detector_recipe_detector_rule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/target_detector_recipe_detector_rule_summary.py b/src/oci/cloud_guard/models/target_detector_recipe_detector_rule_summary.py index 8b10c98ba1..89baf98328 100644 --- a/src/oci/cloud_guard/models/target_detector_recipe_detector_rule_summary.py +++ b/src/oci/cloud_guard/models/target_detector_recipe_detector_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/target_detector_recipe_summary.py b/src/oci/cloud_guard/models/target_detector_recipe_summary.py index 9adaa1ae41..56a284ac76 100644 --- a/src/oci/cloud_guard/models/target_detector_recipe_summary.py +++ b/src/oci/cloud_guard/models/target_detector_recipe_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/target_ids_selected.py b/src/oci/cloud_guard/models/target_ids_selected.py index e3b37c29e8..ac3d850f8b 100644 --- a/src/oci/cloud_guard/models/target_ids_selected.py +++ b/src/oci/cloud_guard/models/target_ids_selected.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .target_selected import TargetSelected diff --git a/src/oci/cloud_guard/models/target_resource_types_selected.py b/src/oci/cloud_guard/models/target_resource_types_selected.py index 03c09d8cc6..0e22be96c8 100644 --- a/src/oci/cloud_guard/models/target_resource_types_selected.py +++ b/src/oci/cloud_guard/models/target_resource_types_selected.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .target_selected import TargetSelected diff --git a/src/oci/cloud_guard/models/target_responder_recipe.py b/src/oci/cloud_guard/models/target_responder_recipe.py index 194888e2bb..8df0948f3c 100644 --- a/src/oci/cloud_guard/models/target_responder_recipe.py +++ b/src/oci/cloud_guard/models/target_responder_recipe.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/target_responder_recipe_collection.py b/src/oci/cloud_guard/models/target_responder_recipe_collection.py index aafcdfe930..3eeb08a31b 100644 --- a/src/oci/cloud_guard/models/target_responder_recipe_collection.py +++ b/src/oci/cloud_guard/models/target_responder_recipe_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/target_responder_recipe_responder_rule.py b/src/oci/cloud_guard/models/target_responder_recipe_responder_rule.py index 18132cd99a..c8ca7471a7 100644 --- a/src/oci/cloud_guard/models/target_responder_recipe_responder_rule.py +++ b/src/oci/cloud_guard/models/target_responder_recipe_responder_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/target_responder_recipe_responder_rule_collection.py b/src/oci/cloud_guard/models/target_responder_recipe_responder_rule_collection.py index 32e076a8d7..a27493cb2a 100644 --- a/src/oci/cloud_guard/models/target_responder_recipe_responder_rule_collection.py +++ b/src/oci/cloud_guard/models/target_responder_recipe_responder_rule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/target_responder_recipe_responder_rule_summary.py b/src/oci/cloud_guard/models/target_responder_recipe_responder_rule_summary.py index e4566781f0..5d369faadb 100644 --- a/src/oci/cloud_guard/models/target_responder_recipe_responder_rule_summary.py +++ b/src/oci/cloud_guard/models/target_responder_recipe_responder_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/target_responder_recipe_summary.py b/src/oci/cloud_guard/models/target_responder_recipe_summary.py index 6b29bd1e88..0028bff4c9 100644 --- a/src/oci/cloud_guard/models/target_responder_recipe_summary.py +++ b/src/oci/cloud_guard/models/target_responder_recipe_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/target_selected.py b/src/oci/cloud_guard/models/target_selected.py index 5b635a436f..e47c755495 100644 --- a/src/oci/cloud_guard/models/target_selected.py +++ b/src/oci/cloud_guard/models/target_selected.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/target_summary.py b/src/oci/cloud_guard/models/target_summary.py index 9e9305e94e..78a811aefd 100644 --- a/src/oci/cloud_guard/models/target_summary.py +++ b/src/oci/cloud_guard/models/target_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/trigger_responder_details.py b/src/oci/cloud_guard/models/trigger_responder_details.py index d152aa766a..0264c61c63 100644 --- a/src/oci/cloud_guard/models/trigger_responder_details.py +++ b/src/oci/cloud_guard/models/trigger_responder_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_bulk_problem_status_details.py b/src/oci/cloud_guard/models/update_bulk_problem_status_details.py index 5c6c9e4382..148e20c688 100644 --- a/src/oci/cloud_guard/models/update_bulk_problem_status_details.py +++ b/src/oci/cloud_guard/models/update_bulk_problem_status_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_configuration_details.py b/src/oci/cloud_guard/models/update_configuration_details.py index cb5fa56db5..b37b0e2ed5 100644 --- a/src/oci/cloud_guard/models/update_configuration_details.py +++ b/src/oci/cloud_guard/models/update_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_data_mask_rule_details.py b/src/oci/cloud_guard/models/update_data_mask_rule_details.py index 6bb4c3f7b6..9932423342 100644 --- a/src/oci/cloud_guard/models/update_data_mask_rule_details.py +++ b/src/oci/cloud_guard/models/update_data_mask_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_detector_recipe_details.py b/src/oci/cloud_guard/models/update_detector_recipe_details.py index c376fa3abd..df14ecf2c9 100644 --- a/src/oci/cloud_guard/models/update_detector_recipe_details.py +++ b/src/oci/cloud_guard/models/update_detector_recipe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_detector_recipe_detector_rule.py b/src/oci/cloud_guard/models/update_detector_recipe_detector_rule.py index c0f62457e9..e6b7f243bd 100644 --- a/src/oci/cloud_guard/models/update_detector_recipe_detector_rule.py +++ b/src/oci/cloud_guard/models/update_detector_recipe_detector_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_detector_recipe_detector_rule_details.py b/src/oci/cloud_guard/models/update_detector_recipe_detector_rule_details.py index ccfb7bcce2..a66d3a9321 100644 --- a/src/oci/cloud_guard/models/update_detector_recipe_detector_rule_details.py +++ b/src/oci/cloud_guard/models/update_detector_recipe_detector_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_detector_rule_details.py b/src/oci/cloud_guard/models/update_detector_rule_details.py index d30c76e645..3a65310da1 100644 --- a/src/oci/cloud_guard/models/update_detector_rule_details.py +++ b/src/oci/cloud_guard/models/update_detector_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_managed_list_details.py b/src/oci/cloud_guard/models/update_managed_list_details.py index 2e91ef7296..275c418704 100644 --- a/src/oci/cloud_guard/models/update_managed_list_details.py +++ b/src/oci/cloud_guard/models/update_managed_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_problem_status_details.py b/src/oci/cloud_guard/models/update_problem_status_details.py index 1387a68b85..75ecb4611d 100644 --- a/src/oci/cloud_guard/models/update_problem_status_details.py +++ b/src/oci/cloud_guard/models/update_problem_status_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_responder_recipe_details.py b/src/oci/cloud_guard/models/update_responder_recipe_details.py index 09a7a6da0e..f2a4435e59 100644 --- a/src/oci/cloud_guard/models/update_responder_recipe_details.py +++ b/src/oci/cloud_guard/models/update_responder_recipe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_responder_recipe_responder_rule.py b/src/oci/cloud_guard/models/update_responder_recipe_responder_rule.py index 0630013ea8..fdf109d202 100644 --- a/src/oci/cloud_guard/models/update_responder_recipe_responder_rule.py +++ b/src/oci/cloud_guard/models/update_responder_recipe_responder_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_responder_recipe_responder_rule_details.py b/src/oci/cloud_guard/models/update_responder_recipe_responder_rule_details.py index 85c942a97d..c7f4db2f7f 100644 --- a/src/oci/cloud_guard/models/update_responder_recipe_responder_rule_details.py +++ b/src/oci/cloud_guard/models/update_responder_recipe_responder_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_responder_rule_details.py b/src/oci/cloud_guard/models/update_responder_rule_details.py index 8d609baa0e..44ce462842 100644 --- a/src/oci/cloud_guard/models/update_responder_rule_details.py +++ b/src/oci/cloud_guard/models/update_responder_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_target_details.py b/src/oci/cloud_guard/models/update_target_details.py index 15907a4670..6e2f782fae 100644 --- a/src/oci/cloud_guard/models/update_target_details.py +++ b/src/oci/cloud_guard/models/update_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_target_detector_recipe.py b/src/oci/cloud_guard/models/update_target_detector_recipe.py index 9d8988115f..9075d19065 100644 --- a/src/oci/cloud_guard/models/update_target_detector_recipe.py +++ b/src/oci/cloud_guard/models/update_target_detector_recipe.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_target_detector_recipe_details.py b/src/oci/cloud_guard/models/update_target_detector_recipe_details.py index 0810452adf..e9bbee92c8 100644 --- a/src/oci/cloud_guard/models/update_target_detector_recipe_details.py +++ b/src/oci/cloud_guard/models/update_target_detector_recipe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_target_detector_recipe_detector_rule_details.py b/src/oci/cloud_guard/models/update_target_detector_recipe_detector_rule_details.py index 7a059af2d6..e688615330 100644 --- a/src/oci/cloud_guard/models/update_target_detector_recipe_detector_rule_details.py +++ b/src/oci/cloud_guard/models/update_target_detector_recipe_detector_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_target_detector_rule_details.py b/src/oci/cloud_guard/models/update_target_detector_rule_details.py index 944c0444be..6e7571fc0f 100644 --- a/src/oci/cloud_guard/models/update_target_detector_rule_details.py +++ b/src/oci/cloud_guard/models/update_target_detector_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_target_recipe_detector_rule_details.py b/src/oci/cloud_guard/models/update_target_recipe_detector_rule_details.py index 52ae42792b..2b04a4b149 100644 --- a/src/oci/cloud_guard/models/update_target_recipe_detector_rule_details.py +++ b/src/oci/cloud_guard/models/update_target_recipe_detector_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_target_recipe_responder_rule_details.py b/src/oci/cloud_guard/models/update_target_recipe_responder_rule_details.py index 810552a4fc..0fa4d9c38e 100644 --- a/src/oci/cloud_guard/models/update_target_recipe_responder_rule_details.py +++ b/src/oci/cloud_guard/models/update_target_recipe_responder_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_target_responder_recipe.py b/src/oci/cloud_guard/models/update_target_responder_recipe.py index 10103f7fea..7261028475 100644 --- a/src/oci/cloud_guard/models/update_target_responder_recipe.py +++ b/src/oci/cloud_guard/models/update_target_responder_recipe.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_target_responder_recipe_details.py b/src/oci/cloud_guard/models/update_target_responder_recipe_details.py index 291244f56d..1880c60908 100644 --- a/src/oci/cloud_guard/models/update_target_responder_recipe_details.py +++ b/src/oci/cloud_guard/models/update_target_responder_recipe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_target_responder_recipe_responder_rule_details.py b/src/oci/cloud_guard/models/update_target_responder_recipe_responder_rule_details.py index 663d9c0bd2..744c264630 100644 --- a/src/oci/cloud_guard/models/update_target_responder_recipe_responder_rule_details.py +++ b/src/oci/cloud_guard/models/update_target_responder_recipe_responder_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/cloud_guard/models/update_target_responder_rule_details.py b/src/oci/cloud_guard/models/update_target_responder_rule_details.py index abfa664952..5a7ea8dd4a 100644 --- a/src/oci/cloud_guard/models/update_target_responder_rule_details.py +++ b/src/oci/cloud_guard/models/update_target_responder_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/compute_instance_agent/__init__.py b/src/oci/compute_instance_agent/__init__.py index 66c0d4ab14..eb939ef340 100644 --- a/src/oci/compute_instance_agent/__init__.py +++ b/src/oci/compute_instance_agent/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/compute_instance_agent/compute_instance_agent_client.py b/src/oci/compute_instance_agent/compute_instance_agent_client.py index 0035e31b15..8597e27f20 100644 --- a/src/oci/compute_instance_agent/compute_instance_agent_client.py +++ b/src/oci/compute_instance_agent/compute_instance_agent_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("compute_instance_agent", config, signer, compute_instance_agent_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -130,6 +136,10 @@ def cancel_instance_agent_command(self, instance_agent_command_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -141,6 +151,7 @@ def cancel_instance_agent_command(self, instance_agent_command_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -223,6 +234,10 @@ def create_instance_agent_command(self, create_instance_agent_command_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.compute_instance_agent.models.InstanceAgentCommand` :rtype: :class:`~oci.response.Response` @@ -234,6 +249,7 @@ def create_instance_agent_command(self, create_instance_agent_command_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -298,6 +314,10 @@ def get_instance_agent_command(self, instance_agent_command_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.compute_instance_agent.models.InstanceAgentCommand` :rtype: :class:`~oci.response.Response` @@ -309,6 +329,7 @@ def get_instance_agent_command(self, instance_agent_command_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -385,6 +406,10 @@ def get_instance_agent_command_execution(self, instance_agent_command_id, instan To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.compute_instance_agent.models.InstanceAgentCommandExecution` :rtype: :class:`~oci.response.Response` @@ -396,6 +421,7 @@ def get_instance_agent_command_execution(self, instance_agent_command_id, instan # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -516,6 +542,10 @@ def list_instance_agent_command_executions(self, compartment_id, instance_id, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.compute_instance_agent.models.InstanceAgentCommandExecutionSummary` :rtype: :class:`~oci.response.Response` @@ -527,6 +557,7 @@ def list_instance_agent_command_executions(self, compartment_id, instance_id, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -656,6 +687,10 @@ def list_instance_agent_commands(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.compute_instance_agent.models.InstanceAgentCommandSummary` :rtype: :class:`~oci.response.Response` @@ -667,6 +702,7 @@ def list_instance_agent_commands(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", diff --git a/src/oci/compute_instance_agent/compute_instance_agent_client_composite_operations.py b/src/oci/compute_instance_agent/compute_instance_agent_client_composite_operations.py index 815d19d97b..85d057c313 100644 --- a/src/oci/compute_instance_agent/compute_instance_agent_client_composite_operations.py +++ b/src/oci/compute_instance_agent/compute_instance_agent_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/compute_instance_agent/models/__init__.py b/src/oci/compute_instance_agent/models/__init__.py index e6a4054e8f..ef4602116f 100644 --- a/src/oci/compute_instance_agent/models/__init__.py +++ b/src/oci/compute_instance_agent/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/compute_instance_agent/models/available_plugin_summary.py b/src/oci/compute_instance_agent/models/available_plugin_summary.py index ae251fe372..27279da5c8 100644 --- a/src/oci/compute_instance_agent/models/available_plugin_summary.py +++ b/src/oci/compute_instance_agent/models/available_plugin_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/compute_instance_agent/models/create_instance_agent_command_details.py b/src/oci/compute_instance_agent/models/create_instance_agent_command_details.py index b7f11679b4..25627fd369 100644 --- a/src/oci/compute_instance_agent/models/create_instance_agent_command_details.py +++ b/src/oci/compute_instance_agent/models/create_instance_agent_command_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/compute_instance_agent/models/instance_agent_command.py b/src/oci/compute_instance_agent/models/instance_agent_command.py index 2a1ae532bc..b830525b67 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/compute_instance_agent/models/instance_agent_command_content.py b/src/oci/compute_instance_agent/models/instance_agent_command_content.py index 17f5b43646..fff817c6b5 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command_content.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command_content.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/compute_instance_agent/models/instance_agent_command_content_info.py b/src/oci/compute_instance_agent/models/instance_agent_command_content_info.py index 0599224f90..7cae9dff19 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command_content_info.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command_content_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/compute_instance_agent/models/instance_agent_command_execution.py b/src/oci/compute_instance_agent/models/instance_agent_command_execution.py index 441c840d54..3f40cfbd97 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command_execution.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command_execution.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/compute_instance_agent/models/instance_agent_command_execution_output_content.py b/src/oci/compute_instance_agent/models/instance_agent_command_execution_output_content.py index d8a5b622d6..83cbb2c61b 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command_execution_output_content.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command_execution_output_content.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/compute_instance_agent/models/instance_agent_command_execution_output_via_object_storage_tuple_details.py b/src/oci/compute_instance_agent/models/instance_agent_command_execution_output_via_object_storage_tuple_details.py index 5594a0ea12..0126f1e683 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command_execution_output_via_object_storage_tuple_details.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command_execution_output_via_object_storage_tuple_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_agent_command_execution_output_content import InstanceAgentCommandExecutionOutputContent diff --git a/src/oci/compute_instance_agent/models/instance_agent_command_execution_output_via_object_storage_uri_details.py b/src/oci/compute_instance_agent/models/instance_agent_command_execution_output_via_object_storage_uri_details.py index 8134c70724..00342d5992 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command_execution_output_via_object_storage_uri_details.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command_execution_output_via_object_storage_uri_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_agent_command_execution_output_content import InstanceAgentCommandExecutionOutputContent diff --git a/src/oci/compute_instance_agent/models/instance_agent_command_execution_output_via_text_details.py b/src/oci/compute_instance_agent/models/instance_agent_command_execution_output_via_text_details.py index 4a7c343766..a420bc4919 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command_execution_output_via_text_details.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command_execution_output_via_text_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_agent_command_execution_output_content import InstanceAgentCommandExecutionOutputContent diff --git a/src/oci/compute_instance_agent/models/instance_agent_command_execution_summary.py b/src/oci/compute_instance_agent/models/instance_agent_command_execution_summary.py index 1690c6a86f..383bfdbe09 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command_execution_summary.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command_execution_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/compute_instance_agent/models/instance_agent_command_output_details.py b/src/oci/compute_instance_agent/models/instance_agent_command_output_details.py index aa6785cac4..a8ccc184ee 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command_output_details.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command_output_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/compute_instance_agent/models/instance_agent_command_output_via_object_storage_tuple_details.py b/src/oci/compute_instance_agent/models/instance_agent_command_output_via_object_storage_tuple_details.py index 8ad76728c5..453b61629b 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command_output_via_object_storage_tuple_details.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command_output_via_object_storage_tuple_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_agent_command_output_details import InstanceAgentCommandOutputDetails diff --git a/src/oci/compute_instance_agent/models/instance_agent_command_output_via_object_storage_uri_details.py b/src/oci/compute_instance_agent/models/instance_agent_command_output_via_object_storage_uri_details.py index 19dabd38f0..4f28a9c94d 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command_output_via_object_storage_uri_details.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command_output_via_object_storage_uri_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_agent_command_output_details import InstanceAgentCommandOutputDetails diff --git a/src/oci/compute_instance_agent/models/instance_agent_command_output_via_text_details.py b/src/oci/compute_instance_agent/models/instance_agent_command_output_via_text_details.py index f3917f04b8..ea9c13d789 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command_output_via_text_details.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command_output_via_text_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_agent_command_output_details import InstanceAgentCommandOutputDetails diff --git a/src/oci/compute_instance_agent/models/instance_agent_command_source_details.py b/src/oci/compute_instance_agent/models/instance_agent_command_source_details.py index 5b32fa37a2..2ffece84a9 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command_source_details.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/compute_instance_agent/models/instance_agent_command_source_via_object_storage_tuple_details.py b/src/oci/compute_instance_agent/models/instance_agent_command_source_via_object_storage_tuple_details.py index af3686724a..69b56a1092 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command_source_via_object_storage_tuple_details.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command_source_via_object_storage_tuple_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_agent_command_source_details import InstanceAgentCommandSourceDetails diff --git a/src/oci/compute_instance_agent/models/instance_agent_command_source_via_object_storage_uri_details.py b/src/oci/compute_instance_agent/models/instance_agent_command_source_via_object_storage_uri_details.py index caffccaf08..d0fa6cd1f4 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command_source_via_object_storage_uri_details.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command_source_via_object_storage_uri_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_agent_command_source_details import InstanceAgentCommandSourceDetails diff --git a/src/oci/compute_instance_agent/models/instance_agent_command_source_via_text_details.py b/src/oci/compute_instance_agent/models/instance_agent_command_source_via_text_details.py index 832fc5b2ce..2857bcbcc7 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command_source_via_text_details.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command_source_via_text_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_agent_command_source_details import InstanceAgentCommandSourceDetails diff --git a/src/oci/compute_instance_agent/models/instance_agent_command_summary.py b/src/oci/compute_instance_agent/models/instance_agent_command_summary.py index b369a3790f..029e9b2cea 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command_summary.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/compute_instance_agent/models/instance_agent_command_target.py b/src/oci/compute_instance_agent/models/instance_agent_command_target.py index 78f2d36ce6..2ab52a4049 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_command_target.py +++ b/src/oci/compute_instance_agent/models/instance_agent_command_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/compute_instance_agent/models/instance_agent_plugin.py b/src/oci/compute_instance_agent/models/instance_agent_plugin.py index 732f2ee122..c3588bbadf 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_plugin.py +++ b/src/oci/compute_instance_agent/models/instance_agent_plugin.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/compute_instance_agent/models/instance_agent_plugin_summary.py b/src/oci/compute_instance_agent/models/instance_agent_plugin_summary.py index 42495fb874..16de9718fb 100644 --- a/src/oci/compute_instance_agent/models/instance_agent_plugin_summary.py +++ b/src/oci/compute_instance_agent/models/instance_agent_plugin_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/compute_instance_agent/models/plugin.py b/src/oci/compute_instance_agent/models/plugin.py index c384f003ab..b35fa18c74 100644 --- a/src/oci/compute_instance_agent/models/plugin.py +++ b/src/oci/compute_instance_agent/models/plugin.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/compute_instance_agent/plugin_client.py b/src/oci/compute_instance_agent/plugin_client.py index cab6de6696..c1b2f04acc 100644 --- a/src/oci/compute_instance_agent/plugin_client.py +++ b/src/oci/compute_instance_agent/plugin_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("plugin", config, signer, compute_instance_agent_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -127,6 +133,10 @@ def get_instance_agent_plugin(self, instanceagent_id, compartment_id, plugin_nam To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.compute_instance_agent.models.InstanceAgentPlugin` :rtype: :class:`~oci.response.Response` @@ -138,6 +148,7 @@ def get_instance_agent_plugin(self, instanceagent_id, compartment_id, plugin_nam # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -259,6 +270,10 @@ def list_instance_agent_plugins(self, compartment_id, instanceagent_id, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.compute_instance_agent.models.InstanceAgentPluginSummary` :rtype: :class:`~oci.response.Response` @@ -270,6 +285,7 @@ def list_instance_agent_plugins(self, compartment_id, instanceagent_id, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "status", diff --git a/src/oci/compute_instance_agent/plugin_client_composite_operations.py b/src/oci/compute_instance_agent/plugin_client_composite_operations.py index 64469bb915..56c44659f7 100644 --- a/src/oci/compute_instance_agent/plugin_client_composite_operations.py +++ b/src/oci/compute_instance_agent/plugin_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/compute_instance_agent/pluginconfig_client.py b/src/oci/compute_instance_agent/pluginconfig_client.py index 2cb911543e..e1653ef261 100644 --- a/src/oci/compute_instance_agent/pluginconfig_client.py +++ b/src/oci/compute_instance_agent/pluginconfig_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("pluginconfig", config, signer, compute_instance_agent_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -166,6 +172,10 @@ def list_instanceagent_available_plugins(self, compartment_id, os_name, os_versi To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.compute_instance_agent.models.AvailablePluginSummary` :rtype: :class:`~oci.response.Response` @@ -177,6 +187,7 @@ def list_instanceagent_available_plugins(self, compartment_id, os_name, os_versi # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", diff --git a/src/oci/compute_instance_agent/pluginconfig_client_composite_operations.py b/src/oci/compute_instance_agent/pluginconfig_client_composite_operations.py index 5c5365485f..15542b5388 100644 --- a/src/oci/compute_instance_agent/pluginconfig_client_composite_operations.py +++ b/src/oci/compute_instance_agent/pluginconfig_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/config.py b/src/oci/config.py index f76ea14e17..5c4f21bc22 100644 --- a/src/oci/config.py +++ b/src/oci/config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. """ diff --git a/src/oci/constants.py b/src/oci/constants.py index 04c1141ed7..0ba0845412 100644 --- a/src/oci/constants.py +++ b/src/oci/constants.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. HEADER_NEXT_PAGE = 'opc-next-page' diff --git a/src/oci/container_engine/__init__.py b/src/oci/container_engine/__init__.py index 438b0fa5e2..60065f960a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 9dd6b7951d..0aa7e6bed4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -66,6 +66,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -96,6 +100,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("container_engine", config, signer, container_engine_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -128,6 +134,10 @@ def cluster_migrate_to_native_vcn(self, cluster_id, cluster_migrate_to_native_vc To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -139,6 +149,7 @@ def cluster_migrate_to_native_vcn(self, cluster_id, cluster_migrate_to_native_vc # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -214,6 +225,10 @@ def create_cluster(self, create_cluster_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -225,6 +240,7 @@ def create_cluster(self, create_cluster_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -288,6 +304,10 @@ def create_kubeconfig(self, cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -299,6 +319,7 @@ def create_kubeconfig(self, cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "create_cluster_kubeconfig_content_details" @@ -375,6 +396,10 @@ def create_node_pool(self, create_node_pool_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -386,6 +411,7 @@ def create_node_pool(self, create_node_pool_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -451,6 +477,10 @@ def delete_cluster(self, cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -462,6 +492,7 @@ def delete_cluster(self, cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -536,6 +567,10 @@ def delete_node_pool(self, node_pool_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -547,6 +582,7 @@ def delete_node_pool(self, node_pool_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -621,6 +657,10 @@ def delete_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -632,6 +672,7 @@ def delete_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -701,6 +742,10 @@ def get_cluster(self, cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.container_engine.models.Cluster` :rtype: :class:`~oci.response.Response` @@ -712,6 +757,7 @@ def get_cluster(self, cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -781,6 +827,10 @@ def get_cluster_migrate_to_native_vcn_status(self, cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.container_engine.models.ClusterMigrateToNativeVcnStatus` :rtype: :class:`~oci.response.Response` @@ -792,6 +842,7 @@ def get_cluster_migrate_to_native_vcn_status(self, cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -864,6 +915,10 @@ def get_cluster_options(self, cluster_option_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.container_engine.models.ClusterOptions` :rtype: :class:`~oci.response.Response` @@ -875,6 +930,7 @@ def get_cluster_options(self, cluster_option_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "opc_request_id" @@ -952,6 +1008,10 @@ def get_node_pool(self, node_pool_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.container_engine.models.NodePool` :rtype: :class:`~oci.response.Response` @@ -963,6 +1023,7 @@ def get_node_pool(self, node_pool_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1035,6 +1096,10 @@ def get_node_pool_options(self, node_pool_option_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.container_engine.models.NodePoolOptions` :rtype: :class:`~oci.response.Response` @@ -1046,6 +1111,7 @@ def get_node_pool_options(self, node_pool_option_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "opc_request_id" @@ -1123,6 +1189,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.container_engine.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -1134,6 +1204,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1234,6 +1305,10 @@ def list_clusters(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.container_engine.models.ClusterSummary` :rtype: :class:`~oci.response.Response` @@ -1245,6 +1320,7 @@ def list_clusters(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "name", @@ -1372,6 +1448,10 @@ def list_node_pools(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.container_engine.models.NodePoolSummary` :rtype: :class:`~oci.response.Response` @@ -1383,6 +1463,7 @@ def list_node_pools(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "cluster_id", "name", @@ -1476,6 +1557,10 @@ def list_work_request_errors(self, compartment_id, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.container_engine.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -1487,6 +1572,7 @@ def list_work_request_errors(self, compartment_id, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1566,6 +1652,10 @@ def list_work_request_logs(self, compartment_id, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.container_engine.models.WorkRequestLogEntry` :rtype: :class:`~oci.response.Response` @@ -1577,6 +1667,7 @@ def list_work_request_logs(self, compartment_id, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1690,6 +1781,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.container_engine.models.WorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -1701,6 +1796,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "cluster_id", "resource_id", @@ -1810,6 +1906,10 @@ def update_cluster(self, cluster_id, update_cluster_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1821,6 +1921,7 @@ def update_cluster(self, cluster_id, update_cluster_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1900,6 +2001,10 @@ def update_cluster_endpoint_config(self, cluster_id, update_cluster_endpoint_con To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1911,6 +2016,7 @@ def update_cluster_endpoint_config(self, cluster_id, update_cluster_endpoint_con # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1990,6 +2096,10 @@ def update_node_pool(self, node_pool_id, update_node_pool_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2001,6 +2111,7 @@ def update_node_pool(self, node_pool_id, update_node_pool_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" 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 e8ff29264b..1e163350b7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/container_engine/models/__init__.py b/src/oci/container_engine/models/__init__.py index 23dd135672..a737e0caaa 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 5a824b9669..00a0323b84 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/admission_controller_options.py b/src/oci/container_engine/models/admission_controller_options.py index 93a1a4adf6..42f38f25e1 100644 --- a/src/oci/container_engine/models/admission_controller_options.py +++ b/src/oci/container_engine/models/admission_controller_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/cluster.py b/src/oci/container_engine/models/cluster.py index 738f06cb61..d16f81b6c9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/cluster_create_options.py b/src/oci/container_engine/models/cluster_create_options.py index 943a9d31f0..c332cc2726 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/cluster_endpoint_config.py b/src/oci/container_engine/models/cluster_endpoint_config.py index 71a78ff507..4835953a29 100644 --- a/src/oci/container_engine/models/cluster_endpoint_config.py +++ b/src/oci/container_engine/models/cluster_endpoint_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/cluster_endpoints.py b/src/oci/container_engine/models/cluster_endpoints.py index e0645eb024..e5ed0fabac 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/cluster_metadata.py b/src/oci/container_engine/models/cluster_metadata.py index dad6394694..16efbd2e68 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/cluster_migrate_to_native_vcn_details.py b/src/oci/container_engine/models/cluster_migrate_to_native_vcn_details.py index 524f1eb86b..ca4fccc6ee 100644 --- a/src/oci/container_engine/models/cluster_migrate_to_native_vcn_details.py +++ b/src/oci/container_engine/models/cluster_migrate_to_native_vcn_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/cluster_migrate_to_native_vcn_status.py b/src/oci/container_engine/models/cluster_migrate_to_native_vcn_status.py index 44f5daa9b9..c20595dfd8 100644 --- a/src/oci/container_engine/models/cluster_migrate_to_native_vcn_status.py +++ b/src/oci/container_engine/models/cluster_migrate_to_native_vcn_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/cluster_options.py b/src/oci/container_engine/models/cluster_options.py index f81724100e..e810e6e053 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/cluster_summary.py b/src/oci/container_engine/models/cluster_summary.py index 7028117184..44ec5f91c3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/create_cluster_details.py b/src/oci/container_engine/models/create_cluster_details.py index bee818821d..0249d35e9d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/create_cluster_endpoint_config_details.py b/src/oci/container_engine/models/create_cluster_endpoint_config_details.py index 7e9c87b88f..e00f1d8f9e 100644 --- a/src/oci/container_engine/models/create_cluster_endpoint_config_details.py +++ b/src/oci/container_engine/models/create_cluster_endpoint_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 63cc05e2bc..3f4e90f93e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/create_image_policy_config_details.py b/src/oci/container_engine/models/create_image_policy_config_details.py index 2701018ff0..94cdf909b2 100644 --- a/src/oci/container_engine/models/create_image_policy_config_details.py +++ b/src/oci/container_engine/models/create_image_policy_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 0f82bb98b5..907392ee08 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 d7194c3d26..e3195bd2c6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/create_node_shape_config_details.py b/src/oci/container_engine/models/create_node_shape_config_details.py index 96609cfcad..f7713a56d4 100644 --- a/src/oci/container_engine/models/create_node_shape_config_details.py +++ b/src/oci/container_engine/models/create_node_shape_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/image_policy_config.py b/src/oci/container_engine/models/image_policy_config.py index 832d194476..ec3a1377ec 100644 --- a/src/oci/container_engine/models/image_policy_config.py +++ b/src/oci/container_engine/models/image_policy_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/key_details.py b/src/oci/container_engine/models/key_details.py index 87309e79cf..c8f0591f1e 100644 --- a/src/oci/container_engine/models/key_details.py +++ b/src/oci/container_engine/models/key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/key_value.py b/src/oci/container_engine/models/key_value.py index 094b2e262a..8f7e720cc7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/kubernetes_network_config.py b/src/oci/container_engine/models/kubernetes_network_config.py index ec095f5b03..3eabed9462 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/node.py b/src/oci/container_engine/models/node.py index 1ab3eb7a56..87b2d6d5ed 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/node_error.py b/src/oci/container_engine/models/node_error.py index ff0aeff5c6..3e1d3a0a0e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/node_pool.py b/src/oci/container_engine/models/node_pool.py index 7f8e972cf3..d41f25160d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 f8fb790937..5bda345073 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/node_pool_options.py b/src/oci/container_engine/models/node_pool_options.py index 630c6a7a39..87c33c037b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 289eeb532c..50eb5f53a1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/node_pool_summary.py b/src/oci/container_engine/models/node_pool_summary.py index fd917bfb24..4b11e65541 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/node_shape_config.py b/src/oci/container_engine/models/node_shape_config.py index 68a8341edf..8298e2140e 100644 --- a/src/oci/container_engine/models/node_shape_config.py +++ b/src/oci/container_engine/models/node_shape_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/node_source_details.py b/src/oci/container_engine/models/node_source_details.py index f2edbdbb72..2d8f75446c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/node_source_option.py b/src/oci/container_engine/models/node_source_option.py index 22de1cbf7a..2821011cd8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 6b51b604a6..2308568223 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .node_source_details import NodeSourceDetails 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 14588a5440..daa6d621c2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .node_source_option import NodeSourceOption diff --git a/src/oci/container_engine/models/update_cluster_details.py b/src/oci/container_engine/models/update_cluster_details.py index 4738bb0e93..fa24eacd21 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/update_cluster_endpoint_config_details.py b/src/oci/container_engine/models/update_cluster_endpoint_config_details.py index 8b3b8e86b4..5da1f58757 100644 --- a/src/oci/container_engine/models/update_cluster_endpoint_config_details.py +++ b/src/oci/container_engine/models/update_cluster_endpoint_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/update_cluster_options_details.py b/src/oci/container_engine/models/update_cluster_options_details.py index 35708e5764..d7d06ff421 100644 --- a/src/oci/container_engine/models/update_cluster_options_details.py +++ b/src/oci/container_engine/models/update_cluster_options_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/update_image_policy_config_details.py b/src/oci/container_engine/models/update_image_policy_config_details.py index 2c84666563..bd1e10424b 100644 --- a/src/oci/container_engine/models/update_image_policy_config_details.py +++ b/src/oci/container_engine/models/update_image_policy_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 3c9c197075..f673e4fedc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 1e599b4ed0..11e4238cc3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/update_node_shape_config_details.py b/src/oci/container_engine/models/update_node_shape_config_details.py index f10859adc9..65b45dff55 100644 --- a/src/oci/container_engine/models/update_node_shape_config_details.py +++ b/src/oci/container_engine/models/update_node_shape_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/work_request.py b/src/oci/container_engine/models/work_request.py index ce118c8387..64efafde3b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/work_request_error.py b/src/oci/container_engine/models/work_request_error.py index 12f38c1201..5897ba1d73 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 028383c08c..3bd4d833bd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/work_request_resource.py b/src/oci/container_engine/models/work_request_resource.py index df44b2e1ea..f5bcc1f311 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/container_engine/models/work_request_summary.py b/src/oci/container_engine/models/work_request_summary.py index b507bbaee2..29c917c683 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/__init__.py b/src/oci/core/__init__.py index 858da15688..db86efc4ae 100644 --- a/src/oci/core/__init__.py +++ b/src/oci/core/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/core/blockstorage_client.py b/src/oci/core/blockstorage_client.py index 0c8a383b62..56ac0e78d9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -68,6 +68,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -98,6 +102,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("blockstorage", config, signer, core_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -131,6 +137,10 @@ def change_boot_volume_backup_compartment(self, boot_volume_backup_id, change_bo To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -142,6 +152,7 @@ def change_boot_volume_backup_compartment(self, boot_volume_backup_id, change_bo # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -218,6 +229,10 @@ def change_boot_volume_compartment(self, boot_volume_id, change_boot_volume_comp To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -229,6 +244,7 @@ def change_boot_volume_compartment(self, boot_volume_id, change_boot_volume_comp # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -305,6 +321,10 @@ def change_volume_backup_compartment(self, volume_backup_id, change_volume_backu To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -316,6 +336,7 @@ def change_volume_backup_compartment(self, volume_backup_id, change_volume_backu # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -392,6 +413,10 @@ def change_volume_compartment(self, volume_id, change_volume_compartment_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -403,6 +428,7 @@ def change_volume_compartment(self, volume_id, change_volume_compartment_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -479,6 +505,10 @@ def change_volume_group_backup_compartment(self, volume_group_backup_id, change_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -490,6 +520,7 @@ def change_volume_group_backup_compartment(self, volume_group_backup_id, change_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -566,6 +597,10 @@ def change_volume_group_compartment(self, volume_group_id, change_volume_group_c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -577,6 +612,7 @@ def change_volume_group_compartment(self, volume_group_id, change_volume_group_c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -659,6 +695,10 @@ def copy_boot_volume_backup(self, boot_volume_backup_id, copy_boot_volume_backup To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.BootVolumeBackup` :rtype: :class:`~oci.response.Response` @@ -670,6 +710,7 @@ def copy_boot_volume_backup(self, boot_volume_backup_id, copy_boot_volume_backup # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -757,6 +798,10 @@ def copy_volume_backup(self, volume_backup_id, copy_volume_backup_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeBackup` :rtype: :class:`~oci.response.Response` @@ -768,6 +813,7 @@ def copy_volume_backup(self, volume_backup_id, copy_volume_backup_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -855,6 +901,10 @@ def copy_volume_group_backup(self, volume_group_backup_id, copy_volume_group_bac To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeGroupBackup` :rtype: :class:`~oci.response.Response` @@ -866,6 +916,7 @@ def copy_volume_group_backup(self, volume_group_backup_id, copy_volume_group_bac # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -948,6 +999,10 @@ def create_boot_volume(self, create_boot_volume_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.BootVolume` :rtype: :class:`~oci.response.Response` @@ -959,6 +1014,7 @@ def create_boot_volume(self, create_boot_volume_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -1029,6 +1085,10 @@ def create_boot_volume_backup(self, create_boot_volume_backup_details, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.BootVolumeBackup` :rtype: :class:`~oci.response.Response` @@ -1040,6 +1100,7 @@ def create_boot_volume_backup(self, create_boot_volume_backup_details, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -1120,6 +1181,10 @@ def create_volume(self, create_volume_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Volume` :rtype: :class:`~oci.response.Response` @@ -1131,6 +1196,7 @@ def create_volume(self, create_volume_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -1201,6 +1267,10 @@ def create_volume_backup(self, create_volume_backup_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeBackup` :rtype: :class:`~oci.response.Response` @@ -1212,6 +1282,7 @@ def create_volume_backup(self, create_volume_backup_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -1284,6 +1355,10 @@ def create_volume_backup_policy(self, create_volume_backup_policy_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeBackupPolicy` :rtype: :class:`~oci.response.Response` @@ -1295,6 +1370,7 @@ def create_volume_backup_policy(self, create_volume_backup_policy_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1355,6 +1431,10 @@ def create_volume_backup_policy_assignment(self, create_volume_backup_policy_ass To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeBackupPolicyAssignment` :rtype: :class:`~oci.response.Response` @@ -1430,6 +1510,10 @@ def create_volume_group(self, create_volume_group_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeGroup` :rtype: :class:`~oci.response.Response` @@ -1441,6 +1525,7 @@ def create_volume_group(self, create_volume_group_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -1507,6 +1592,10 @@ def create_volume_group_backup(self, create_volume_group_backup_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeGroupBackup` :rtype: :class:`~oci.response.Response` @@ -1518,6 +1607,7 @@ def create_volume_group_backup(self, create_volume_group_backup_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -1584,6 +1674,10 @@ def delete_boot_volume(self, boot_volume_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1595,6 +1689,7 @@ def delete_boot_volume(self, boot_volume_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -1663,6 +1758,10 @@ def delete_boot_volume_backup(self, boot_volume_backup_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1674,6 +1773,7 @@ def delete_boot_volume_backup(self, boot_volume_backup_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -1742,6 +1842,10 @@ def delete_boot_volume_kms_key(self, boot_volume_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1753,6 +1857,7 @@ def delete_boot_volume_kms_key(self, boot_volume_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -1826,6 +1931,10 @@ def delete_volume(self, volume_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1837,6 +1946,7 @@ def delete_volume(self, volume_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -1905,6 +2015,10 @@ def delete_volume_backup(self, volume_backup_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1916,6 +2030,7 @@ def delete_volume_backup(self, volume_backup_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -1994,6 +2109,10 @@ def delete_volume_backup_policy(self, policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2005,6 +2124,7 @@ def delete_volume_backup_policy(self, policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -2075,6 +2195,10 @@ def delete_volume_backup_policy_assignment(self, policy_assignment_id, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2086,6 +2210,7 @@ def delete_volume_backup_policy_assignment(self, policy_assignment_id, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -2157,6 +2282,10 @@ def delete_volume_group(self, volume_group_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2168,6 +2297,7 @@ def delete_volume_group(self, volume_group_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -2239,6 +2369,10 @@ def delete_volume_group_backup(self, volume_group_backup_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2250,6 +2384,7 @@ def delete_volume_group_backup(self, volume_group_backup_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -2318,6 +2453,10 @@ def delete_volume_kms_key(self, volume_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2329,6 +2468,7 @@ def delete_volume_kms_key(self, volume_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -2392,6 +2532,10 @@ def get_block_volume_replica(self, block_volume_replica_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.BlockVolumeReplica` :rtype: :class:`~oci.response.Response` @@ -2462,6 +2606,10 @@ def get_boot_volume(self, boot_volume_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.BootVolume` :rtype: :class:`~oci.response.Response` @@ -2532,6 +2680,10 @@ def get_boot_volume_backup(self, boot_volume_backup_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.BootVolumeBackup` :rtype: :class:`~oci.response.Response` @@ -2607,6 +2759,10 @@ def get_boot_volume_kms_key(self, boot_volume_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.BootVolumeKmsKey` :rtype: :class:`~oci.response.Response` @@ -2618,6 +2774,7 @@ def get_boot_volume_kms_key(self, boot_volume_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -2683,6 +2840,10 @@ def get_boot_volume_replica(self, boot_volume_replica_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.BootVolumeReplica` :rtype: :class:`~oci.response.Response` @@ -2753,6 +2914,10 @@ def get_volume(self, volume_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Volume` :rtype: :class:`~oci.response.Response` @@ -2823,6 +2988,10 @@ def get_volume_backup(self, volume_backup_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeBackup` :rtype: :class:`~oci.response.Response` @@ -2893,6 +3062,10 @@ def get_volume_backup_policy(self, policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeBackupPolicy` :rtype: :class:`~oci.response.Response` @@ -2981,6 +3154,10 @@ def get_volume_backup_policy_asset_assignment(self, asset_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.VolumeBackupPolicyAssignment` :rtype: :class:`~oci.response.Response` @@ -2992,6 +3169,7 @@ def get_volume_backup_policy_asset_assignment(self, asset_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -3053,6 +3231,10 @@ def get_volume_backup_policy_assignment(self, policy_assignment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeBackupPolicyAssignment` :rtype: :class:`~oci.response.Response` @@ -3125,6 +3307,10 @@ def get_volume_group(self, volume_group_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeGroup` :rtype: :class:`~oci.response.Response` @@ -3197,6 +3383,10 @@ def get_volume_group_backup(self, volume_group_backup_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeGroupBackup` :rtype: :class:`~oci.response.Response` @@ -3272,6 +3462,10 @@ def get_volume_kms_key(self, volume_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeKmsKey` :rtype: :class:`~oci.response.Response` @@ -3283,6 +3477,7 @@ def get_volume_kms_key(self, volume_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -3397,6 +3592,10 @@ def list_block_volume_replicas(self, availability_domain, compartment_id, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.BlockVolumeReplica` :rtype: :class:`~oci.response.Response` @@ -3408,6 +3607,7 @@ def list_block_volume_replicas(self, availability_domain, compartment_id, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -3550,6 +3750,10 @@ def list_boot_volume_backups(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.BootVolumeBackup` :rtype: :class:`~oci.response.Response` @@ -3561,6 +3765,7 @@ def list_boot_volume_backups(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "boot_volume_id", "limit", @@ -3704,6 +3909,10 @@ def list_boot_volume_replicas(self, availability_domain, compartment_id, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.BootVolumeReplica` :rtype: :class:`~oci.response.Response` @@ -3715,6 +3924,7 @@ def list_boot_volume_replicas(self, availability_domain, compartment_id, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -3832,6 +4042,10 @@ def list_boot_volumes(self, availability_domain, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.BootVolume` :rtype: :class:`~oci.response.Response` @@ -3843,6 +4057,7 @@ def list_boot_volumes(self, availability_domain, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -3929,6 +4144,10 @@ def list_volume_backup_policies(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.VolumeBackupPolicy` :rtype: :class:`~oci.response.Response` @@ -3940,6 +4159,7 @@ def list_volume_backup_policies(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -4053,6 +4273,10 @@ def list_volume_backups(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.VolumeBackup` :rtype: :class:`~oci.response.Response` @@ -4064,6 +4288,7 @@ def list_volume_backups(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "volume_id", "limit", @@ -4203,6 +4428,10 @@ def list_volume_group_backups(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.VolumeGroupBackup` :rtype: :class:`~oci.response.Response` @@ -4214,6 +4443,7 @@ def list_volume_group_backups(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "volume_group_id", "limit", @@ -4350,6 +4580,10 @@ def list_volume_groups(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.VolumeGroup` :rtype: :class:`~oci.response.Response` @@ -4361,6 +4595,7 @@ def list_volume_groups(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "availability_domain", "limit", @@ -4506,6 +4741,10 @@ def list_volumes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Volume` :rtype: :class:`~oci.response.Response` @@ -4517,6 +4756,7 @@ def list_volumes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "availability_domain", "limit", @@ -4619,6 +4859,10 @@ def update_boot_volume(self, boot_volume_id, update_boot_volume_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.BootVolume` :rtype: :class:`~oci.response.Response` @@ -4630,6 +4874,7 @@ def update_boot_volume(self, boot_volume_id, update_boot_volume_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -4706,6 +4951,10 @@ def update_boot_volume_backup(self, boot_volume_backup_id, update_boot_volume_ba To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.BootVolumeBackup` :rtype: :class:`~oci.response.Response` @@ -4717,6 +4966,7 @@ def update_boot_volume_backup(self, boot_volume_backup_id, update_boot_volume_ba # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -4792,6 +5042,10 @@ def update_boot_volume_kms_key(self, boot_volume_id, update_boot_volume_kms_key_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.BootVolumeKmsKey` :rtype: :class:`~oci.response.Response` @@ -4803,6 +5057,7 @@ def update_boot_volume_kms_key(self, boot_volume_id, update_boot_volume_kms_key_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -4879,6 +5134,10 @@ def update_volume(self, volume_id, update_volume_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Volume` :rtype: :class:`~oci.response.Response` @@ -4890,6 +5149,7 @@ def update_volume(self, volume_id, update_volume_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -4966,6 +5226,10 @@ def update_volume_backup(self, volume_backup_id, update_volume_backup_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeBackup` :rtype: :class:`~oci.response.Response` @@ -4977,6 +5241,7 @@ def update_volume_backup(self, volume_backup_id, update_volume_backup_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -5069,6 +5334,10 @@ def update_volume_backup_policy(self, policy_id, update_volume_backup_policy_det To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeBackupPolicy` :rtype: :class:`~oci.response.Response` @@ -5080,6 +5349,7 @@ def update_volume_backup_policy(self, policy_id, update_volume_backup_policy_det # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -5167,6 +5437,10 @@ def update_volume_group(self, volume_group_id, update_volume_group_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeGroup` :rtype: :class:`~oci.response.Response` @@ -5178,6 +5452,7 @@ def update_volume_group(self, volume_group_id, update_volume_group_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -5255,6 +5530,10 @@ def update_volume_group_backup(self, volume_group_backup_id, update_volume_group To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeGroupBackup` :rtype: :class:`~oci.response.Response` @@ -5266,6 +5545,7 @@ def update_volume_group_backup(self, volume_group_backup_id, update_volume_group # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -5341,6 +5621,10 @@ def update_volume_kms_key(self, volume_id, update_volume_kms_key_details, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeKmsKey` :rtype: :class:`~oci.response.Response` @@ -5352,6 +5636,7 @@ def update_volume_kms_key(self, volume_id, update_volume_kms_key_details, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] diff --git a/src/oci/core/blockstorage_client_composite_operations.py b/src/oci/core/blockstorage_client_composite_operations.py index 34179bc435..83580feaff 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/core/compute_client.py b/src/oci/core/compute_client.py index 0104bf62ca..4f78bfbd65 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -68,6 +68,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -96,6 +100,8 @@ def __init__(self, config, **kwargs): } if 'timeout' in kwargs: base_client_init_kwargs['timeout'] = kwargs.get('timeout') + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("compute", config, signer, core_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -136,6 +142,10 @@ def accept_shielded_integrity_policy(self, instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -147,6 +157,7 @@ def accept_shielded_integrity_policy(self, instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -223,6 +234,10 @@ def add_image_shape_compatibility_entry(self, image_id, shape_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ImageShapeCompatibilityEntry` :rtype: :class:`~oci.response.Response` @@ -234,6 +249,7 @@ def add_image_shape_compatibility_entry(self, image_id, shape_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "add_image_shape_compatibility_entry_details" ] @@ -307,6 +323,10 @@ def attach_boot_volume(self, attach_boot_volume_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.BootVolumeAttachment` :rtype: :class:`~oci.response.Response` @@ -318,6 +338,7 @@ def attach_boot_volume(self, attach_boot_volume_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -385,6 +406,10 @@ def attach_vnic(self, attach_vnic_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VnicAttachment` :rtype: :class:`~oci.response.Response` @@ -396,6 +421,7 @@ def attach_vnic(self, attach_vnic_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -459,6 +485,10 @@ def attach_volume(self, attach_volume_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeAttachment` :rtype: :class:`~oci.response.Response` @@ -470,6 +500,7 @@ def attach_volume(self, attach_volume_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -549,6 +580,10 @@ def capture_console_history(self, capture_console_history_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ConsoleHistory` :rtype: :class:`~oci.response.Response` @@ -560,6 +595,7 @@ def capture_console_history(self, capture_console_history_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -639,6 +675,10 @@ def change_compute_capacity_reservation_compartment(self, capacity_reservation_i To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -650,6 +690,7 @@ def change_compute_capacity_reservation_compartment(self, capacity_reservation_i # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -743,6 +784,10 @@ def change_compute_image_capability_schema_compartment(self, compute_image_capab To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -754,6 +799,7 @@ def change_compute_image_capability_schema_compartment(self, compute_image_capab # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -843,6 +889,10 @@ def change_dedicated_vm_host_compartment(self, dedicated_vm_host_id, change_dedi To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -854,6 +904,7 @@ def change_dedicated_vm_host_compartment(self, dedicated_vm_host_id, change_dedi # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -949,6 +1000,10 @@ def change_image_compartment(self, image_id, change_image_compartment_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -960,6 +1015,7 @@ def change_image_compartment(self, image_id, change_image_compartment_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1058,6 +1114,10 @@ def change_instance_compartment(self, instance_id, change_instance_compartment_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1069,6 +1129,7 @@ def change_instance_compartment(self, instance_id, change_instance_compartment_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1146,6 +1207,10 @@ def create_app_catalog_subscription(self, create_app_catalog_subscription_detail To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.AppCatalogSubscription` :rtype: :class:`~oci.response.Response` @@ -1157,6 +1222,7 @@ def create_app_catalog_subscription(self, create_app_catalog_subscription_detail # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -1232,6 +1298,10 @@ def create_compute_capacity_reservation(self, create_compute_capacity_reservatio To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ComputeCapacityReservation` :rtype: :class:`~oci.response.Response` @@ -1243,6 +1313,7 @@ def create_compute_capacity_reservation(self, create_compute_capacity_reservatio # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1308,6 +1379,10 @@ def create_compute_image_capability_schema(self, create_compute_image_capability To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ComputeImageCapabilitySchema` :rtype: :class:`~oci.response.Response` @@ -1319,6 +1394,7 @@ def create_compute_image_capability_schema(self, create_compute_image_capability # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -1391,6 +1467,10 @@ def create_dedicated_vm_host(self, create_dedicated_vm_host_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DedicatedVmHost` :rtype: :class:`~oci.response.Response` @@ -1402,6 +1482,7 @@ def create_dedicated_vm_host(self, create_dedicated_vm_host_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1494,6 +1575,10 @@ def create_image(self, create_image_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Image` :rtype: :class:`~oci.response.Response` @@ -1505,6 +1590,7 @@ def create_image(self, create_image_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -1574,6 +1660,10 @@ def create_instance_console_connection(self, create_instance_console_connection_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstanceConsoleConnection` :rtype: :class:`~oci.response.Response` @@ -1585,6 +1675,7 @@ def create_instance_console_connection(self, create_instance_console_connection_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -1649,6 +1740,10 @@ def delete_app_catalog_subscription(self, listing_id, compartment_id, resource_v To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1723,6 +1818,10 @@ def delete_compute_capacity_reservation(self, capacity_reservation_id, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1734,6 +1833,7 @@ def delete_compute_capacity_reservation(self, capacity_reservation_id, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1804,6 +1904,10 @@ def delete_compute_image_capability_schema(self, compute_image_capability_schema To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1815,6 +1919,7 @@ def delete_compute_image_capability_schema(self, compute_image_capability_schema # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -1883,6 +1988,10 @@ def delete_console_history(self, instance_console_history_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1894,6 +2003,7 @@ def delete_console_history(self, instance_console_history_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -1964,6 +2074,10 @@ def delete_dedicated_vm_host(self, dedicated_vm_host_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1975,6 +2089,7 @@ def delete_dedicated_vm_host(self, dedicated_vm_host_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2045,6 +2160,10 @@ def delete_image(self, image_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2056,6 +2175,7 @@ def delete_image(self, image_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -2124,6 +2244,10 @@ def delete_instance_console_connection(self, instance_console_connection_id, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2135,6 +2259,7 @@ def delete_instance_console_connection(self, instance_console_connection_id, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -2206,6 +2331,10 @@ def detach_boot_volume(self, boot_volume_attachment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2217,6 +2346,7 @@ def detach_boot_volume(self, boot_volume_attachment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -2296,6 +2426,10 @@ def detach_vnic(self, vnic_attachment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2307,6 +2441,7 @@ def detach_vnic(self, vnic_attachment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -2378,6 +2513,10 @@ def detach_volume(self, volume_attachment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2389,6 +2528,7 @@ def detach_volume(self, volume_attachment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -2483,6 +2623,10 @@ def export_image(self, image_id, export_image_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Image` :rtype: :class:`~oci.response.Response` @@ -2494,6 +2638,7 @@ def export_image(self, image_id, export_image_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match" @@ -2564,6 +2709,10 @@ def get_app_catalog_listing(self, listing_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.AppCatalogListing` :rtype: :class:`~oci.response.Response` @@ -2637,6 +2786,10 @@ def get_app_catalog_listing_agreements(self, listing_id, resource_version, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.AppCatalogListingResourceVersionAgreements` :rtype: :class:`~oci.response.Response` @@ -2711,6 +2864,10 @@ def get_app_catalog_listing_resource_version(self, listing_id, resource_version, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.AppCatalogListingResourceVersion` :rtype: :class:`~oci.response.Response` @@ -2782,6 +2939,10 @@ def get_boot_volume_attachment(self, boot_volume_attachment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.BootVolumeAttachment` :rtype: :class:`~oci.response.Response` @@ -2856,6 +3017,10 @@ def get_compute_capacity_reservation(self, capacity_reservation_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ComputeCapacityReservation` :rtype: :class:`~oci.response.Response` @@ -2867,6 +3032,7 @@ def get_compute_capacity_reservation(self, capacity_reservation_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2934,6 +3100,10 @@ def get_compute_global_image_capability_schema(self, compute_global_image_capabi To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ComputeGlobalImageCapabilitySchema` :rtype: :class:`~oci.response.Response` @@ -3009,6 +3179,10 @@ def get_compute_global_image_capability_schema_version(self, compute_global_imag To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ComputeGlobalImageCapabilitySchemaVersion` :rtype: :class:`~oci.response.Response` @@ -3083,6 +3257,10 @@ def get_compute_image_capability_schema(self, compute_image_capability_schema_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ComputeImageCapabilitySchema` :rtype: :class:`~oci.response.Response` @@ -3094,6 +3272,7 @@ def get_compute_image_capability_schema(self, compute_image_capability_schema_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "is_merge_enabled" ] @@ -3166,6 +3345,10 @@ def get_console_history(self, instance_console_history_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ConsoleHistory` :rtype: :class:`~oci.response.Response` @@ -3244,6 +3427,10 @@ def get_console_history_content(self, instance_console_history_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type bytes :rtype: :class:`~oci.response.Response` @@ -3255,6 +3442,7 @@ def get_console_history_content(self, instance_console_history_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "offset", "length" @@ -3331,6 +3519,10 @@ def get_dedicated_vm_host(self, dedicated_vm_host_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DedicatedVmHost` :rtype: :class:`~oci.response.Response` @@ -3342,6 +3534,7 @@ def get_dedicated_vm_host(self, dedicated_vm_host_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3409,6 +3602,10 @@ def get_image(self, image_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Image` :rtype: :class:`~oci.response.Response` @@ -3488,6 +3685,10 @@ def get_image_shape_compatibility_entry(self, image_id, shape_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ImageShapeCompatibilityEntry` :rtype: :class:`~oci.response.Response` @@ -3499,6 +3700,7 @@ def get_image_shape_compatibility_entry(self, image_id, shape_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3567,6 +3769,10 @@ def get_instance(self, instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Instance` :rtype: :class:`~oci.response.Response` @@ -3637,6 +3843,10 @@ def get_instance_console_connection(self, instance_console_connection_id, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstanceConsoleConnection` :rtype: :class:`~oci.response.Response` @@ -3713,6 +3923,10 @@ def get_measured_boot_report(self, instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.MeasuredBootReport` :rtype: :class:`~oci.response.Response` @@ -3724,6 +3938,7 @@ def get_measured_boot_report(self, instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3789,6 +4004,10 @@ def get_vnic_attachment(self, vnic_attachment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VnicAttachment` :rtype: :class:`~oci.response.Response` @@ -3859,6 +4078,10 @@ def get_volume_attachment(self, volume_attachment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeAttachment` :rtype: :class:`~oci.response.Response` @@ -3932,6 +4155,10 @@ def get_windows_instance_initial_credentials(self, instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstanceCredentials` :rtype: :class:`~oci.response.Response` @@ -4053,6 +4280,10 @@ def instance_action(self, instance_id, action, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Instance` :rtype: :class:`~oci.response.Response` @@ -4064,6 +4295,7 @@ def instance_action(self, instance_id, action, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match" @@ -4189,6 +4421,10 @@ def launch_instance(self, launch_instance_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Instance` :rtype: :class:`~oci.response.Response` @@ -4200,6 +4436,7 @@ def launch_instance(self, launch_instance_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -4278,6 +4515,10 @@ def list_app_catalog_listing_resource_versions(self, listing_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.AppCatalogListingResourceVersionSummary` :rtype: :class:`~oci.response.Response` @@ -4289,6 +4530,7 @@ def list_app_catalog_listing_resource_versions(self, listing_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -4398,6 +4640,10 @@ def list_app_catalog_listings(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.AppCatalogListingSummary` :rtype: :class:`~oci.response.Response` @@ -4409,6 +4655,7 @@ def list_app_catalog_listings(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -4523,6 +4770,10 @@ def list_app_catalog_subscriptions(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.AppCatalogSubscriptionSummary` :rtype: :class:`~oci.response.Response` @@ -4534,6 +4785,7 @@ def list_app_catalog_subscriptions(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -4645,6 +4897,10 @@ def list_boot_volume_attachments(self, availability_domain, compartment_id, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.BootVolumeAttachment` :rtype: :class:`~oci.response.Response` @@ -4656,6 +4912,7 @@ def list_boot_volume_attachments(self, availability_domain, compartment_id, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -4770,6 +5027,10 @@ def list_compute_capacity_reservation_instance_shapes(self, compartment_id, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.ComputeCapacityReservationInstanceShapeSummary` :rtype: :class:`~oci.response.Response` @@ -4781,6 +5042,7 @@ def list_compute_capacity_reservation_instance_shapes(self, compartment_id, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "availability_domain", "opc_request_id", @@ -4915,6 +5177,10 @@ def list_compute_capacity_reservation_instances(self, capacity_reservation_id, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.CapacityReservationInstanceSummary` :rtype: :class:`~oci.response.Response` @@ -4926,6 +5192,7 @@ def list_compute_capacity_reservation_instances(self, capacity_reservation_id, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "availability_domain", "compartment_id", @@ -5079,6 +5346,10 @@ def list_compute_capacity_reservations(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.ComputeCapacityReservationSummary` :rtype: :class:`~oci.response.Response` @@ -5090,6 +5361,7 @@ def list_compute_capacity_reservations(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "availability_domain", "lifecycle_state", @@ -5224,6 +5496,10 @@ def list_compute_global_image_capability_schema_versions(self, compute_global_im To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.ComputeGlobalImageCapabilitySchemaVersionSummary` :rtype: :class:`~oci.response.Response` @@ -5235,6 +5511,7 @@ def list_compute_global_image_capability_schema_versions(self, compute_global_im # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -5364,6 +5641,10 @@ def list_compute_global_image_capability_schemas(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.ComputeGlobalImageCapabilitySchemaSummary` :rtype: :class:`~oci.response.Response` @@ -5375,6 +5656,7 @@ def list_compute_global_image_capability_schemas(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "display_name", @@ -5499,6 +5781,10 @@ def list_compute_image_capability_schemas(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.ComputeImageCapabilitySchemaSummary` :rtype: :class:`~oci.response.Response` @@ -5510,6 +5796,7 @@ def list_compute_image_capability_schemas(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "image_id", @@ -5644,6 +5931,10 @@ def list_console_histories(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.ConsoleHistory` :rtype: :class:`~oci.response.Response` @@ -5655,6 +5946,7 @@ def list_console_histories(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "availability_domain", "limit", @@ -5778,6 +6070,10 @@ def list_dedicated_vm_host_instance_shapes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DedicatedVmHostInstanceShapeSummary` :rtype: :class:`~oci.response.Response` @@ -5789,6 +6085,7 @@ def list_dedicated_vm_host_instance_shapes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "availability_domain", "dedicated_vm_host_shape", @@ -5905,6 +6202,10 @@ def list_dedicated_vm_host_instances(self, compartment_id, dedicated_vm_host_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DedicatedVmHostInstanceSummary` :rtype: :class:`~oci.response.Response` @@ -5916,6 +6217,7 @@ def list_dedicated_vm_host_instances(self, compartment_id, dedicated_vm_host_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "availability_domain", "limit", @@ -6042,6 +6344,10 @@ def list_dedicated_vm_host_shapes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DedicatedVmHostShapeSummary` :rtype: :class:`~oci.response.Response` @@ -6053,6 +6359,7 @@ def list_dedicated_vm_host_shapes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "availability_domain", "instance_shape_name", @@ -6186,6 +6493,10 @@ def list_dedicated_vm_hosts(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DedicatedVmHostSummary` :rtype: :class:`~oci.response.Response` @@ -6197,6 +6508,7 @@ def list_dedicated_vm_hosts(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "availability_domain", "lifecycle_state", @@ -6320,6 +6632,10 @@ def list_image_shape_compatibility_entries(self, image_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.ImageShapeCompatibilitySummary` :rtype: :class:`~oci.response.Response` @@ -6331,6 +6647,7 @@ def list_image_shape_compatibility_entries(self, image_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -6477,6 +6794,10 @@ def list_images(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Image` :rtype: :class:`~oci.response.Response` @@ -6488,6 +6809,7 @@ def list_images(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "operating_system", @@ -6609,6 +6931,10 @@ def list_instance_console_connections(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.InstanceConsoleConnection` :rtype: :class:`~oci.response.Response` @@ -6620,6 +6946,7 @@ def list_instance_console_connections(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "instance_id", "limit", @@ -6729,6 +7056,10 @@ def list_instance_devices(self, instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Device` :rtype: :class:`~oci.response.Response` @@ -6740,6 +7071,7 @@ def list_instance_devices(self, instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "is_available", "name", @@ -6892,6 +7224,10 @@ def list_instances(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Instance` :rtype: :class:`~oci.response.Response` @@ -6903,6 +7239,7 @@ def list_instances(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "availability_domain", "capacity_reservation_id", @@ -7026,6 +7363,10 @@ def list_shapes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Shape` :rtype: :class:`~oci.response.Response` @@ -7037,6 +7378,7 @@ def list_shapes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "availability_domain", "limit", @@ -7133,6 +7475,10 @@ def list_vnic_attachments(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.VnicAttachment` :rtype: :class:`~oci.response.Response` @@ -7144,6 +7490,7 @@ def list_vnic_attachments(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "availability_domain", "instance_id", @@ -7244,6 +7591,10 @@ def list_volume_attachments(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.VolumeAttachment` :rtype: :class:`~oci.response.Response` @@ -7255,6 +7606,7 @@ def list_volume_attachments(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "availability_domain", "limit", @@ -7327,6 +7679,10 @@ def remove_image_shape_compatibility_entry(self, image_id, shape_name, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7414,6 +7770,10 @@ def terminate_instance(self, instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7425,6 +7785,7 @@ def terminate_instance(self, instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "preserve_boot_volume" @@ -7510,6 +7871,10 @@ def update_compute_capacity_reservation(self, capacity_reservation_id, update_co To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7521,6 +7886,7 @@ def update_compute_capacity_reservation(self, capacity_reservation_id, update_co # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -7596,6 +7962,10 @@ def update_compute_image_capability_schema(self, compute_image_capability_schema To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ComputeImageCapabilitySchema` :rtype: :class:`~oci.response.Response` @@ -7607,6 +7977,7 @@ def update_compute_image_capability_schema(self, compute_image_capability_schema # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -7682,6 +8053,10 @@ def update_console_history(self, instance_console_history_id, update_console_his To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ConsoleHistory` :rtype: :class:`~oci.response.Response` @@ -7693,6 +8068,7 @@ def update_console_history(self, instance_console_history_id, update_console_his # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -7780,6 +8156,10 @@ def update_dedicated_vm_host(self, dedicated_vm_host_id, update_dedicated_vm_hos To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DedicatedVmHost` :rtype: :class:`~oci.response.Response` @@ -7791,6 +8171,7 @@ def update_dedicated_vm_host(self, dedicated_vm_host_id, update_dedicated_vm_hos # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -7880,6 +8261,10 @@ def update_image(self, image_id, update_image_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Image` :rtype: :class:`~oci.response.Response` @@ -7891,6 +8276,7 @@ def update_image(self, image_id, update_image_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match" @@ -7984,6 +8370,10 @@ def update_instance(self, instance_id, update_instance_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Instance` :rtype: :class:`~oci.response.Response` @@ -7995,6 +8385,7 @@ def update_instance(self, instance_id, update_instance_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match" @@ -8077,6 +8468,10 @@ def update_instance_console_connection(self, instance_console_connection_id, upd To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstanceConsoleConnection` :rtype: :class:`~oci.response.Response` @@ -8088,6 +8483,7 @@ def update_instance_console_connection(self, instance_console_connection_id, upd # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -8169,6 +8565,10 @@ def update_volume_attachment(self, volume_attachment_id, update_volume_attachmen To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VolumeAttachment` :rtype: :class:`~oci.response.Response` @@ -8180,6 +8580,7 @@ def update_volume_attachment(self, volume_attachment_id, update_volume_attachmen # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" diff --git a/src/oci/core/compute_client_composite_operations.py b/src/oci/core/compute_client_composite_operations.py index 7324abc1e6..7a80f66151 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/core/compute_management_client.py b/src/oci/core/compute_management_client.py index f9d11ceab6..2520b108db 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -68,6 +68,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -98,6 +102,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("compute_management", config, signer, core_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -136,6 +142,10 @@ def attach_instance_pool_instance(self, instance_pool_id, attach_instance_pool_i To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstancePoolInstance` :rtype: :class:`~oci.response.Response` @@ -147,6 +157,7 @@ def attach_instance_pool_instance(self, instance_pool_id, attach_instance_pool_i # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -232,6 +243,10 @@ def attach_load_balancer(self, instance_pool_id, attach_load_balancer_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstancePool` :rtype: :class:`~oci.response.Response` @@ -243,6 +258,7 @@ def attach_load_balancer(self, instance_pool_id, attach_load_balancer_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match" @@ -341,6 +357,10 @@ def change_cluster_network_compartment(self, cluster_network_id, change_cluster_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -352,6 +372,7 @@ def change_cluster_network_compartment(self, cluster_network_id, change_cluster_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -456,6 +477,10 @@ def change_instance_configuration_compartment(self, instance_configuration_id, c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -467,6 +492,7 @@ def change_instance_configuration_compartment(self, instance_configuration_id, c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -565,6 +591,10 @@ def change_instance_pool_compartment(self, instance_pool_id, change_instance_poo To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -576,6 +606,7 @@ def change_instance_pool_compartment(self, instance_pool_id, change_instance_poo # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -656,6 +687,10 @@ def create_cluster_network(self, create_cluster_network_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ClusterNetwork` :rtype: :class:`~oci.response.Response` @@ -667,6 +702,7 @@ def create_cluster_network(self, create_cluster_network_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -731,6 +767,10 @@ def create_instance_configuration(self, create_instance_configuration, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstanceConfiguration` :rtype: :class:`~oci.response.Response` @@ -742,6 +782,7 @@ def create_instance_configuration(self, create_instance_configuration, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -805,6 +846,10 @@ def create_instance_pool(self, create_instance_pool_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstancePool` :rtype: :class:`~oci.response.Response` @@ -816,6 +861,7 @@ def create_instance_pool(self, create_instance_pool_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -877,6 +923,10 @@ def delete_instance_configuration(self, instance_configuration_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -888,6 +938,7 @@ def delete_instance_configuration(self, instance_configuration_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -963,6 +1014,10 @@ def detach_instance_pool_instance(self, instance_pool_id, detach_instance_pool_i To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -974,6 +1029,7 @@ def detach_instance_pool_instance(self, instance_pool_id, detach_instance_pool_i # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -1057,6 +1113,10 @@ def detach_load_balancer(self, instance_pool_id, detach_load_balancer_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstancePool` :rtype: :class:`~oci.response.Response` @@ -1068,6 +1128,7 @@ def detach_load_balancer(self, instance_pool_id, detach_load_balancer_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match" @@ -1140,6 +1201,10 @@ def get_cluster_network(self, cluster_network_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ClusterNetwork` :rtype: :class:`~oci.response.Response` @@ -1210,6 +1275,10 @@ def get_instance_configuration(self, instance_configuration_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstanceConfiguration` :rtype: :class:`~oci.response.Response` @@ -1282,6 +1351,10 @@ def get_instance_pool(self, instance_pool_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstancePool` :rtype: :class:`~oci.response.Response` @@ -1359,6 +1432,10 @@ def get_instance_pool_instance(self, instance_pool_id, instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstancePoolInstance` :rtype: :class:`~oci.response.Response` @@ -1435,6 +1512,10 @@ def get_instance_pool_load_balancer_attachment(self, instance_pool_id, instance_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstancePoolLoadBalancerAttachment` :rtype: :class:`~oci.response.Response` @@ -1522,6 +1603,10 @@ def launch_instance_configuration(self, instance_configuration_id, instance_conf To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Instance` :rtype: :class:`~oci.response.Response` @@ -1533,6 +1618,7 @@ def launch_instance_configuration(self, instance_configuration_id, instance_conf # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -1645,6 +1731,10 @@ def list_cluster_network_instances(self, compartment_id, cluster_network_id, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.InstanceSummary` :rtype: :class:`~oci.response.Response` @@ -1656,6 +1746,7 @@ def list_cluster_network_instances(self, compartment_id, cluster_network_id, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -1794,6 +1885,10 @@ def list_cluster_networks(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.ClusterNetworkSummary` :rtype: :class:`~oci.response.Response` @@ -1805,6 +1900,7 @@ def list_cluster_networks(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -1931,6 +2027,10 @@ def list_instance_configurations(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.InstanceConfigurationSummary` :rtype: :class:`~oci.response.Response` @@ -1942,6 +2042,7 @@ def list_instance_configurations(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -2065,6 +2166,10 @@ def list_instance_pool_instances(self, compartment_id, instance_pool_id, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.InstanceSummary` :rtype: :class:`~oci.response.Response` @@ -2076,6 +2181,7 @@ def list_instance_pool_instances(self, compartment_id, instance_pool_id, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -2214,6 +2320,10 @@ def list_instance_pools(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.InstancePoolSummary` :rtype: :class:`~oci.response.Response` @@ -2225,6 +2335,7 @@ def list_instance_pools(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -2330,6 +2441,10 @@ def reset_instance_pool(self, instance_pool_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstancePool` :rtype: :class:`~oci.response.Response` @@ -2341,6 +2456,7 @@ def reset_instance_pool(self, instance_pool_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match" @@ -2427,6 +2543,10 @@ def softreset_instance_pool(self, instance_pool_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstancePool` :rtype: :class:`~oci.response.Response` @@ -2438,6 +2558,7 @@ def softreset_instance_pool(self, instance_pool_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match" @@ -2521,6 +2642,10 @@ def start_instance_pool(self, instance_pool_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstancePool` :rtype: :class:`~oci.response.Response` @@ -2532,6 +2657,7 @@ def start_instance_pool(self, instance_pool_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match" @@ -2615,6 +2741,10 @@ def stop_instance_pool(self, instance_pool_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstancePool` :rtype: :class:`~oci.response.Response` @@ -2626,6 +2756,7 @@ def stop_instance_pool(self, instance_pool_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match" @@ -2704,6 +2835,10 @@ def terminate_cluster_network(self, cluster_network_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2715,6 +2850,7 @@ def terminate_cluster_network(self, cluster_network_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -2792,6 +2928,10 @@ def terminate_instance_pool(self, instance_pool_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2803,6 +2943,7 @@ def terminate_instance_pool(self, instance_pool_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -2883,6 +3024,10 @@ def update_cluster_network(self, cluster_network_id, update_cluster_network_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ClusterNetwork` :rtype: :class:`~oci.response.Response` @@ -2894,6 +3039,7 @@ def update_cluster_network(self, cluster_network_id, update_cluster_network_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match" @@ -2979,6 +3125,10 @@ def update_instance_configuration(self, instance_configuration_id, update_instan To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstanceConfiguration` :rtype: :class:`~oci.response.Response` @@ -2990,6 +3140,7 @@ def update_instance_configuration(self, instance_configuration_id, update_instan # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match" @@ -3079,6 +3230,10 @@ def update_instance_pool(self, instance_pool_id, update_instance_pool_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InstancePool` :rtype: :class:`~oci.response.Response` @@ -3090,6 +3245,7 @@ def update_instance_pool(self, instance_pool_id, update_instance_pool_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match" diff --git a/src/oci/core/compute_management_client_composite_operations.py b/src/oci/core/compute_management_client_composite_operations.py index f410b5c2f1..f526674e52 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/core/models/__init__.py b/src/oci/core/models/__init__.py index eab22d22a5..37e66c81e6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/core/models/add_drg_route_distribution_statement_details.py b/src/oci/core/models/add_drg_route_distribution_statement_details.py index 731fec1ce0..496010e6e1 100644 --- a/src/oci/core/models/add_drg_route_distribution_statement_details.py +++ b/src/oci/core/models/add_drg_route_distribution_statement_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/add_drg_route_distribution_statements_details.py b/src/oci/core/models/add_drg_route_distribution_statements_details.py index 7144996583..1ea7949812 100644 --- a/src/oci/core/models/add_drg_route_distribution_statements_details.py +++ b/src/oci/core/models/add_drg_route_distribution_statements_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/add_drg_route_rule_details.py b/src/oci/core/models/add_drg_route_rule_details.py index 85103a601d..534fc5ae16 100644 --- a/src/oci/core/models/add_drg_route_rule_details.py +++ b/src/oci/core/models/add_drg_route_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/add_drg_route_rules_details.py b/src/oci/core/models/add_drg_route_rules_details.py index b95cc646f6..4846c25cea 100644 --- a/src/oci/core/models/add_drg_route_rules_details.py +++ b/src/oci/core/models/add_drg_route_rules_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/add_image_shape_compatibility_entry_details.py b/src/oci/core/models/add_image_shape_compatibility_entry_details.py index b595a5726e..1e2641a989 100644 --- a/src/oci/core/models/add_image_shape_compatibility_entry_details.py +++ b/src/oci/core/models/add_image_shape_compatibility_entry_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 d46ca01b18..427c00cfe8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/add_public_ip_pool_capacity_details.py b/src/oci/core/models/add_public_ip_pool_capacity_details.py index 9d7a6a7fa3..62d28db5a6 100644 --- a/src/oci/core/models/add_public_ip_pool_capacity_details.py +++ b/src/oci/core/models/add_public_ip_pool_capacity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/add_security_rule_details.py b/src/oci/core/models/add_security_rule_details.py index cae5a64554..eb10c0e651 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/add_vcn_cidr_details.py b/src/oci/core/models/add_vcn_cidr_details.py index f84ecdf469..3e412c5ed2 100644 --- a/src/oci/core/models/add_vcn_cidr_details.py +++ b/src/oci/core/models/add_vcn_cidr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 ed319a69c3..d0ed50c27a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/allowed_ike_ip_sec_parameters.py b/src/oci/core/models/allowed_ike_ip_sec_parameters.py index eedf05947f..86e61b3d00 100644 --- a/src/oci/core/models/allowed_ike_ip_sec_parameters.py +++ b/src/oci/core/models/allowed_ike_ip_sec_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/allowed_phase_one_parameters.py b/src/oci/core/models/allowed_phase_one_parameters.py index 856c4daeff..f9af7f4cf9 100644 --- a/src/oci/core/models/allowed_phase_one_parameters.py +++ b/src/oci/core/models/allowed_phase_one_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/allowed_phase_two_parameters.py b/src/oci/core/models/allowed_phase_two_parameters.py index 59dd3bfdc1..251a7c8b7a 100644 --- a/src/oci/core/models/allowed_phase_two_parameters.py +++ b/src/oci/core/models/allowed_phase_two_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/amd_milan_bm_launch_instance_platform_config.py b/src/oci/core/models/amd_milan_bm_launch_instance_platform_config.py index bd4d41500e..d03ca599e5 100644 --- a/src/oci/core/models/amd_milan_bm_launch_instance_platform_config.py +++ b/src/oci/core/models/amd_milan_bm_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .launch_instance_platform_config import LaunchInstancePlatformConfig diff --git a/src/oci/core/models/amd_milan_bm_platform_config.py b/src/oci/core/models/amd_milan_bm_platform_config.py index e653ec33bd..0c126c6eca 100644 --- a/src/oci/core/models/amd_milan_bm_platform_config.py +++ b/src/oci/core/models/amd_milan_bm_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .platform_config import PlatformConfig diff --git a/src/oci/core/models/amd_rome_bm_launch_instance_platform_config.py b/src/oci/core/models/amd_rome_bm_launch_instance_platform_config.py index 596428d10a..9990532652 100644 --- a/src/oci/core/models/amd_rome_bm_launch_instance_platform_config.py +++ b/src/oci/core/models/amd_rome_bm_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .launch_instance_platform_config import LaunchInstancePlatformConfig diff --git a/src/oci/core/models/amd_rome_bm_platform_config.py b/src/oci/core/models/amd_rome_bm_platform_config.py index fb189aad50..327400eb90 100644 --- a/src/oci/core/models/amd_rome_bm_platform_config.py +++ b/src/oci/core/models/amd_rome_bm_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .platform_config import PlatformConfig diff --git a/src/oci/core/models/amd_vm_launch_instance_platform_config.py b/src/oci/core/models/amd_vm_launch_instance_platform_config.py index 277e6661ee..6a3566f5f7 100644 --- a/src/oci/core/models/amd_vm_launch_instance_platform_config.py +++ b/src/oci/core/models/amd_vm_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .launch_instance_platform_config import LaunchInstancePlatformConfig diff --git a/src/oci/core/models/amd_vm_platform_config.py b/src/oci/core/models/amd_vm_platform_config.py index 6b50c82528..d64dbea17e 100644 --- a/src/oci/core/models/amd_vm_platform_config.py +++ b/src/oci/core/models/amd_vm_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .platform_config import PlatformConfig diff --git a/src/oci/core/models/app_catalog_listing.py b/src/oci/core/models/app_catalog_listing.py index 5faccd1609..fe81dfc29e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 349c40b253..5716460ad2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 89ae5346ff..c8fe573dd7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 2724512ece..5065ed4ef5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/app_catalog_listing_summary.py b/src/oci/core/models/app_catalog_listing_summary.py index 46c1c4d2e7..d81f1a5b82 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/app_catalog_subscription.py b/src/oci/core/models/app_catalog_subscription.py index 3b1edb3209..67e3c12ce7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/app_catalog_subscription_summary.py b/src/oci/core/models/app_catalog_subscription_summary.py index 22c6a04fa0..a870e0ed93 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/attach_boot_volume_details.py b/src/oci/core/models/attach_boot_volume_details.py index 692ea1b9b5..4f960f9918 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/attach_emulated_volume_details.py b/src/oci/core/models/attach_emulated_volume_details.py index a58fbcf3a2..82c210dbb7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .attach_volume_details import AttachVolumeDetails 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 e01f62418e..bf119962d7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .attach_volume_details import AttachVolumeDetails diff --git a/src/oci/core/models/attach_instance_pool_instance_details.py b/src/oci/core/models/attach_instance_pool_instance_details.py index bf49bfd864..36485db2d6 100644 --- a/src/oci/core/models/attach_instance_pool_instance_details.py +++ b/src/oci/core/models/attach_instance_pool_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/attach_load_balancer_details.py b/src/oci/core/models/attach_load_balancer_details.py index 5025ce87ca..1f0839586d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/attach_paravirtualized_volume_details.py b/src/oci/core/models/attach_paravirtualized_volume_details.py index c00ca30e28..3216a5d97a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .attach_volume_details import AttachVolumeDetails 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 8bcc5a341c..6a7735b1bd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .attach_volume_details import AttachVolumeDetails diff --git a/src/oci/core/models/attach_vnic_details.py b/src/oci/core/models/attach_vnic_details.py index bca31893f8..bdb65b9d76 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/attach_volume_details.py b/src/oci/core/models/attach_volume_details.py index 1eba4f210c..f895b0e435 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/bgp_session_info.py b/src/oci/core/models/bgp_session_info.py index 95833ee819..d0f31bb517 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/block_volume_replica.py b/src/oci/core/models/block_volume_replica.py index cf38aa49e0..64e1394fde 100644 --- a/src/oci/core/models/block_volume_replica.py +++ b/src/oci/core/models/block_volume_replica.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/block_volume_replica_details.py b/src/oci/core/models/block_volume_replica_details.py index d3384e3fac..0f27f24442 100644 --- a/src/oci/core/models/block_volume_replica_details.py +++ b/src/oci/core/models/block_volume_replica_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/block_volume_replica_info.py b/src/oci/core/models/block_volume_replica_info.py index 0db82f77ef..bfff4684a7 100644 --- a/src/oci/core/models/block_volume_replica_info.py +++ b/src/oci/core/models/block_volume_replica_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/boolean_image_capability_schema_descriptor.py b/src/oci/core/models/boolean_image_capability_schema_descriptor.py index 8ab7ff5635..4fa4636fd1 100644 --- a/src/oci/core/models/boolean_image_capability_schema_descriptor.py +++ b/src/oci/core/models/boolean_image_capability_schema_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .image_capability_schema_descriptor import ImageCapabilitySchemaDescriptor diff --git a/src/oci/core/models/boot_volume.py b/src/oci/core/models/boot_volume.py index 2c9a422a0f..542acdee9c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/boot_volume_attachment.py b/src/oci/core/models/boot_volume_attachment.py index 799891d9eb..0390d3f3f3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/boot_volume_backup.py b/src/oci/core/models/boot_volume_backup.py index 36ffd6260e..3e3e7268a7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/boot_volume_kms_key.py b/src/oci/core/models/boot_volume_kms_key.py index 819e8cbcbb..2bb39d01f5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/boot_volume_replica.py b/src/oci/core/models/boot_volume_replica.py index 310284ffa7..e915d5dd74 100644 --- a/src/oci/core/models/boot_volume_replica.py +++ b/src/oci/core/models/boot_volume_replica.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/boot_volume_replica_details.py b/src/oci/core/models/boot_volume_replica_details.py index 503779f2dd..6a23c6dcd9 100644 --- a/src/oci/core/models/boot_volume_replica_details.py +++ b/src/oci/core/models/boot_volume_replica_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/boot_volume_replica_info.py b/src/oci/core/models/boot_volume_replica_info.py index c628e38939..64ba05f64e 100644 --- a/src/oci/core/models/boot_volume_replica_info.py +++ b/src/oci/core/models/boot_volume_replica_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/boot_volume_source_details.py b/src/oci/core/models/boot_volume_source_details.py index 2d36a93f5a..31bfa5053f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 b37b60ae3f..2d1191e6fe 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .boot_volume_source_details import BootVolumeSourceDetails 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 7106b42635..3602983411 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .boot_volume_source_details import BootVolumeSourceDetails diff --git a/src/oci/core/models/boot_volume_source_from_boot_volume_replica_details.py b/src/oci/core/models/boot_volume_source_from_boot_volume_replica_details.py index ef8f6a23c7..e3e0b8958c 100644 --- a/src/oci/core/models/boot_volume_source_from_boot_volume_replica_details.py +++ b/src/oci/core/models/boot_volume_source_from_boot_volume_replica_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .boot_volume_source_details import BootVolumeSourceDetails 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 aa4f6ed1ac..88504a8cae 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 200416e1f4..7675ce8692 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/byoip_allocated_range_collection.py b/src/oci/core/models/byoip_allocated_range_collection.py index 2f39f5cfd6..ff0c81e729 100644 --- a/src/oci/core/models/byoip_allocated_range_collection.py +++ b/src/oci/core/models/byoip_allocated_range_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/byoip_allocated_range_summary.py b/src/oci/core/models/byoip_allocated_range_summary.py index 148331cb8f..f8392b4a70 100644 --- a/src/oci/core/models/byoip_allocated_range_summary.py +++ b/src/oci/core/models/byoip_allocated_range_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/byoip_range.py b/src/oci/core/models/byoip_range.py index 318bb2a199..14edddfa29 100644 --- a/src/oci/core/models/byoip_range.py +++ b/src/oci/core/models/byoip_range.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/byoip_range_collection.py b/src/oci/core/models/byoip_range_collection.py index f6833a3944..d0e7a1b61d 100644 --- a/src/oci/core/models/byoip_range_collection.py +++ b/src/oci/core/models/byoip_range_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/byoip_range_summary.py b/src/oci/core/models/byoip_range_summary.py index 751e39f51e..338d5832a4 100644 --- a/src/oci/core/models/byoip_range_summary.py +++ b/src/oci/core/models/byoip_range_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/capacity_reservation_instance_summary.py b/src/oci/core/models/capacity_reservation_instance_summary.py index 7d1428c161..c1e9b4a739 100644 --- a/src/oci/core/models/capacity_reservation_instance_summary.py +++ b/src/oci/core/models/capacity_reservation_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/capture_console_history_details.py b/src/oci/core/models/capture_console_history_details.py index 80710f1009..c1848ca256 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 781f103f4c..994ae9c3f9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 a99e8bb756..9c2802210b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/change_byoip_range_compartment_details.py b/src/oci/core/models/change_byoip_range_compartment_details.py index 3635d24441..f6ebc63130 100644 --- a/src/oci/core/models/change_byoip_range_compartment_details.py +++ b/src/oci/core/models/change_byoip_range_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 adf21ee3c4..679388aa7e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/change_compute_capacity_reservation_compartment_details.py b/src/oci/core/models/change_compute_capacity_reservation_compartment_details.py index 59d5c02008..93643dfe75 100644 --- a/src/oci/core/models/change_compute_capacity_reservation_compartment_details.py +++ b/src/oci/core/models/change_compute_capacity_reservation_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/change_compute_image_capability_schema_compartment_details.py b/src/oci/core/models/change_compute_image_capability_schema_compartment_details.py index 7f218fb79b..90c77cc2a0 100644 --- a/src/oci/core/models/change_compute_image_capability_schema_compartment_details.py +++ b/src/oci/core/models/change_compute_image_capability_schema_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/change_cpe_compartment_details.py b/src/oci/core/models/change_cpe_compartment_details.py index a1c788de28..c89e0f6058 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 efd3fbb1dd..ce43f99248 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 29c134e94e..db651947b0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 f8168f8b11..3548b3694b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 94610e9b0c..fbb1cd7af5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/change_drg_compartment_details.py b/src/oci/core/models/change_drg_compartment_details.py index ff38d2cabf..0ac7b23bf7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/change_image_compartment_details.py b/src/oci/core/models/change_image_compartment_details.py index 0f46073ab2..faa0e6bcff 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/change_instance_compartment_details.py b/src/oci/core/models/change_instance_compartment_details.py index 7e98088f08..4f0557bdd8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 baea21df6f..bd22ee665e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 f7bd89593b..1b922779b7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 091bb2c75c..7461fcbd59 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 522353a6c6..eea7e1d22d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 26150b9a29..5bc5d27a80 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 91d981bf75..90416dfa29 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 c6462b9daf..2dcaa3dd06 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 5c0c07a01f..7f53608e30 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/change_public_ip_pool_compartment_details.py b/src/oci/core/models/change_public_ip_pool_compartment_details.py index 03005e8af8..c59a06d950 100644 --- a/src/oci/core/models/change_public_ip_pool_compartment_details.py +++ b/src/oci/core/models/change_public_ip_pool_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 e8625c1727..88caffbb78 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 e6d1357191..cb4dbc5c48 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 ea7e1f69e8..625dbeb100 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 2a289c808f..51539302e5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/change_subnet_compartment_details.py b/src/oci/core/models/change_subnet_compartment_details.py index 1f7c8bb7bd..0667c27d99 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/change_vcn_compartment_details.py b/src/oci/core/models/change_vcn_compartment_details.py index 8619296ad9..89f2e1bf08 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 d303627861..5df45b4853 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/change_vlan_compartment_details.py b/src/oci/core/models/change_vlan_compartment_details.py index 6c81546a57..6bd64497e3 100644 --- a/src/oci/core/models/change_vlan_compartment_details.py +++ b/src/oci/core/models/change_vlan_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 1895d9c483..ec0f30b6cc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/change_volume_compartment_details.py b/src/oci/core/models/change_volume_compartment_details.py index 18da54736f..00e252235c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 8118102a2d..1a7cea780f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 fe4199c57b..daa69eec3e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/cluster_network.py b/src/oci/core/models/cluster_network.py index 3de17d1105..178295f6cb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 9f715ee6be..2e6519ab4f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/cluster_network_summary.py b/src/oci/core/models/cluster_network_summary.py index 1dcf02c9d9..81eec66f73 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/compute_capacity_reservation.py b/src/oci/core/models/compute_capacity_reservation.py index 935678cee7..b1ec7fff6e 100644 --- a/src/oci/core/models/compute_capacity_reservation.py +++ b/src/oci/core/models/compute_capacity_reservation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/compute_capacity_reservation_instance_shape_summary.py b/src/oci/core/models/compute_capacity_reservation_instance_shape_summary.py index 4e679703f6..d1e71ce1c5 100644 --- a/src/oci/core/models/compute_capacity_reservation_instance_shape_summary.py +++ b/src/oci/core/models/compute_capacity_reservation_instance_shape_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/compute_capacity_reservation_summary.py b/src/oci/core/models/compute_capacity_reservation_summary.py index 5a48bb76f0..0c1f815206 100644 --- a/src/oci/core/models/compute_capacity_reservation_summary.py +++ b/src/oci/core/models/compute_capacity_reservation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/compute_global_image_capability_schema.py b/src/oci/core/models/compute_global_image_capability_schema.py index c2baa6ca7f..4c9a3ada32 100644 --- a/src/oci/core/models/compute_global_image_capability_schema.py +++ b/src/oci/core/models/compute_global_image_capability_schema.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/compute_global_image_capability_schema_summary.py b/src/oci/core/models/compute_global_image_capability_schema_summary.py index dea350900c..0286664943 100644 --- a/src/oci/core/models/compute_global_image_capability_schema_summary.py +++ b/src/oci/core/models/compute_global_image_capability_schema_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/compute_global_image_capability_schema_version.py b/src/oci/core/models/compute_global_image_capability_schema_version.py index 01cdd2b43b..8062bbe8e7 100644 --- a/src/oci/core/models/compute_global_image_capability_schema_version.py +++ b/src/oci/core/models/compute_global_image_capability_schema_version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/compute_global_image_capability_schema_version_summary.py b/src/oci/core/models/compute_global_image_capability_schema_version_summary.py index 6e1b5675f3..8b8fec5d36 100644 --- a/src/oci/core/models/compute_global_image_capability_schema_version_summary.py +++ b/src/oci/core/models/compute_global_image_capability_schema_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/compute_image_capability_schema.py b/src/oci/core/models/compute_image_capability_schema.py index a4def1c24e..4050df729a 100644 --- a/src/oci/core/models/compute_image_capability_schema.py +++ b/src/oci/core/models/compute_image_capability_schema.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/compute_image_capability_schema_summary.py b/src/oci/core/models/compute_image_capability_schema_summary.py index dd12801e5f..d5ef5527f8 100644 --- a/src/oci/core/models/compute_image_capability_schema_summary.py +++ b/src/oci/core/models/compute_image_capability_schema_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/compute_instance_details.py b/src/oci/core/models/compute_instance_details.py index e4af1b240d..bb0f83a235 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_configuration_instance_details import InstanceConfigurationInstanceDetails 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 9683eb35a5..f380a253b9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 e3552da531..c04bae15a6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/console_history.py b/src/oci/core/models/console_history.py index 1ff46d270b..f397c20718 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 5e2667fc0f..3772a32043 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/copy_volume_backup_details.py b/src/oci/core/models/copy_volume_backup_details.py index 35b2f8a5ac..de864c220f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/copy_volume_group_backup_details.py b/src/oci/core/models/copy_volume_group_backup_details.py index b87c9f40f4..619a338127 100644 --- a/src/oci/core/models/copy_volume_group_backup_details.py +++ b/src/oci/core/models/copy_volume_group_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/cpe.py b/src/oci/core/models/cpe.py index 350dace0b9..d8957be436 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/cpe_device_config_answer.py b/src/oci/core/models/cpe_device_config_answer.py index d75d02065c..50e32b7e35 100644 --- a/src/oci/core/models/cpe_device_config_answer.py +++ b/src/oci/core/models/cpe_device_config_answer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/cpe_device_config_question.py b/src/oci/core/models/cpe_device_config_question.py index f3e216404a..b7df66cb1a 100644 --- a/src/oci/core/models/cpe_device_config_question.py +++ b/src/oci/core/models/cpe_device_config_question.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/cpe_device_info.py b/src/oci/core/models/cpe_device_info.py index 490c4c9b49..a519a508a8 100644 --- a/src/oci/core/models/cpe_device_info.py +++ b/src/oci/core/models/cpe_device_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/cpe_device_shape_detail.py b/src/oci/core/models/cpe_device_shape_detail.py index fe66449a82..979667d96f 100644 --- a/src/oci/core/models/cpe_device_shape_detail.py +++ b/src/oci/core/models/cpe_device_shape_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/cpe_device_shape_summary.py b/src/oci/core/models/cpe_device_shape_summary.py index 93b128de04..f1d13323e3 100644 --- a/src/oci/core/models/cpe_device_shape_summary.py +++ b/src/oci/core/models/cpe_device_shape_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 fce8b8ce48..627cffe7d0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 4d52d530b9..786891f938 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_boot_volume_details.py b/src/oci/core/models/create_boot_volume_details.py index 19e3c33917..dc29b40204 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_byoip_range_details.py b/src/oci/core/models/create_byoip_range_details.py index d4ac1e4c44..38212777c9 100644 --- a/src/oci/core/models/create_byoip_range_details.py +++ b/src/oci/core/models/create_byoip_range_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_cluster_network_details.py b/src/oci/core/models/create_cluster_network_details.py index 814627b9ab..bc96bb6d88 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 41debf2826..140fc6ee2e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_compute_capacity_reservation_details.py b/src/oci/core/models/create_compute_capacity_reservation_details.py index 33976b8a9b..265d8d44f7 100644 --- a/src/oci/core/models/create_compute_capacity_reservation_details.py +++ b/src/oci/core/models/create_compute_capacity_reservation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_compute_image_capability_schema_details.py b/src/oci/core/models/create_compute_image_capability_schema_details.py index 974a0a24c7..03813c826f 100644 --- a/src/oci/core/models/create_compute_image_capability_schema_details.py +++ b/src/oci/core/models/create_compute_image_capability_schema_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_cpe_details.py b/src/oci/core/models/create_cpe_details.py index 182163f566..4121c2ba07 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_cross_connect_details.py b/src/oci/core/models/create_cross_connect_details.py index 49341f388f..a895a1c198 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 05fdfd1822..fce807bf02 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 e0ef2696fe..4859c0d374 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_dhcp_details.py b/src/oci/core/models/create_dhcp_details.py index 1af92380c6..4a8d67d110 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_drg_attachment_details.py b/src/oci/core/models/create_drg_attachment_details.py index 87ba234b1b..da02a63762 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_drg_details.py b/src/oci/core/models/create_drg_details.py index 7ed8bd2422..1be194c93c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_drg_route_distribution_details.py b/src/oci/core/models/create_drg_route_distribution_details.py index f6ac21b8aa..88de862956 100644 --- a/src/oci/core/models/create_drg_route_distribution_details.py +++ b/src/oci/core/models/create_drg_route_distribution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_drg_route_table_details.py b/src/oci/core/models/create_drg_route_table_details.py index 7850af9b01..fc2cf291db 100644 --- a/src/oci/core/models/create_drg_route_table_details.py +++ b/src/oci/core/models/create_drg_route_table_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_image_details.py b/src/oci/core/models/create_image_details.py index a9d0c8d9be..843227bddb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_instance_configuration_base.py b/src/oci/core/models/create_instance_configuration_base.py index f8067ff292..275463190b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_instance_configuration_details.py b/src/oci/core/models/create_instance_configuration_details.py index 884d8ae846..34850f6dd4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_instance_configuration_base import CreateInstanceConfigurationBase 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 2758fe3890..79f1134b92 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_instance_configuration_base import CreateInstanceConfigurationBase 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 a70415d506..488d372e07 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_instance_pool_details.py b/src/oci/core/models/create_instance_pool_details.py index d2e0e3121f..a5a446fa74 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 41d000fc53..09d42e131a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_internet_gateway_details.py b/src/oci/core/models/create_internet_gateway_details.py index c568318884..a3376be738 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 1ef2449fd7..fbd2ab4f94 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 c4abe96f5b..07545f0ce8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 3aea34f18e..c0ce4b85f8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_ip_sec_tunnel_encryption_domain_details.py b/src/oci/core/models/create_ip_sec_tunnel_encryption_domain_details.py index cf22e9489a..1be4f8661b 100644 --- a/src/oci/core/models/create_ip_sec_tunnel_encryption_domain_details.py +++ b/src/oci/core/models/create_ip_sec_tunnel_encryption_domain_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_ipv6_details.py b/src/oci/core/models/create_ipv6_details.py index 1723cbbc84..f166682e17 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 efb7b95156..9da54da798 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_macsec_key.py b/src/oci/core/models/create_macsec_key.py index e4244c988e..5f613b113a 100644 --- a/src/oci/core/models/create_macsec_key.py +++ b/src/oci/core/models/create_macsec_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_macsec_properties.py b/src/oci/core/models/create_macsec_properties.py index 5cb449fea2..cbc48f8786 100644 --- a/src/oci/core/models/create_macsec_properties.py +++ b/src/oci/core/models/create_macsec_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_nat_gateway_details.py b/src/oci/core/models/create_nat_gateway_details.py index 7f82f590b4..e60177e5bc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 038601291c..73e4660b80 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_private_ip_details.py b/src/oci/core/models/create_private_ip_details.py index bf0ee8e8de..f163f53ec6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_public_ip_details.py b/src/oci/core/models/create_public_ip_details.py index 60207ea02c..b600c141b5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_public_ip_pool_details.py b/src/oci/core/models/create_public_ip_pool_details.py index e20593c022..400cc5d0fd 100644 --- a/src/oci/core/models/create_public_ip_pool_details.py +++ b/src/oci/core/models/create_public_ip_pool_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 41ac9596f5..0491183000 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_route_table_details.py b/src/oci/core/models/create_route_table_details.py index 6a9550efd3..fe763603b6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_security_list_details.py b/src/oci/core/models/create_security_list_details.py index e552e053d8..780f70244a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_service_gateway_details.py b/src/oci/core/models/create_service_gateway_details.py index 2947b7b17f..2a6889a010 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_subnet_details.py b/src/oci/core/models/create_subnet_details.py index 20d8e4b642..f9caf8e237 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_vcn_details.py b/src/oci/core/models/create_vcn_details.py index 56b7eef578..8a1d6e1246 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_virtual_circuit_details.py b/src/oci/core/models/create_virtual_circuit_details.py index 84cf4f5a93..6a03b684df 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 d603185d2c..35742701f7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_vlan_details.py b/src/oci/core/models/create_vlan_details.py index 9872ecd3f5..290871757d 100644 --- a/src/oci/core/models/create_vlan_details.py +++ b/src/oci/core/models/create_vlan_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_vnic_details.py b/src/oci/core/models/create_vnic_details.py index 79e0b96d1e..e531cb9dd0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_volume_backup_details.py b/src/oci/core/models/create_volume_backup_details.py index 26b8220af9..f4f62c53df 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 efde786cca..8e3f910985 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 9f726f8045..93c547d078 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_volume_details.py b/src/oci/core/models/create_volume_details.py index ea5667c54f..989a6c1367 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 5e4a136417..61c5e4866b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/create_volume_group_details.py b/src/oci/core/models/create_volume_group_details.py index 6b52732aaa..da0614b03a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/cross_connect.py b/src/oci/core/models/cross_connect.py index b50471c193..d65dcfb759 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/cross_connect_group.py b/src/oci/core/models/cross_connect_group.py index 438af8618e..27d09ce92a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/cross_connect_location.py b/src/oci/core/models/cross_connect_location.py index b094605029..ba84648087 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/cross_connect_mapping.py b/src/oci/core/models/cross_connect_mapping.py index f050442293..538f716a77 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/cross_connect_mapping_details.py b/src/oci/core/models/cross_connect_mapping_details.py index eb2d0035c3..f117ca33a3 100644 --- a/src/oci/core/models/cross_connect_mapping_details.py +++ b/src/oci/core/models/cross_connect_mapping_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/cross_connect_mapping_details_collection.py b/src/oci/core/models/cross_connect_mapping_details_collection.py index 43c342f0cd..4ffd05bb01 100644 --- a/src/oci/core/models/cross_connect_mapping_details_collection.py +++ b/src/oci/core/models/cross_connect_mapping_details_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 78dacfe776..dad8b2b6ba 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/cross_connect_status.py b/src/oci/core/models/cross_connect_status.py index 84d6d997e7..2f94b75f9a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/dedicated_vm_host.py b/src/oci/core/models/dedicated_vm_host.py index 27aba50d91..9e6a70944a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 e8216c8dc5..90ff639c38 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 dec2d154e5..353ba32610 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 457711cd00..6a8c52c52a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/dedicated_vm_host_summary.py b/src/oci/core/models/dedicated_vm_host_summary.py index 4e597e1bc4..8f7a837118 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/default_drg_route_tables.py b/src/oci/core/models/default_drg_route_tables.py index c464242d62..72058b1ac8 100644 --- a/src/oci/core/models/default_drg_route_tables.py +++ b/src/oci/core/models/default_drg_route_tables.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/default_phase_one_parameters.py b/src/oci/core/models/default_phase_one_parameters.py index 90243152d8..70c7f6e3ab 100644 --- a/src/oci/core/models/default_phase_one_parameters.py +++ b/src/oci/core/models/default_phase_one_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/default_phase_two_parameters.py b/src/oci/core/models/default_phase_two_parameters.py index c8fef9cf86..5aafa230a2 100644 --- a/src/oci/core/models/default_phase_two_parameters.py +++ b/src/oci/core/models/default_phase_two_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 ea9f699e65..237046f84d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/detach_instance_pool_instance_details.py b/src/oci/core/models/detach_instance_pool_instance_details.py index 98f06fbbbb..1d1de1e876 100644 --- a/src/oci/core/models/detach_instance_pool_instance_details.py +++ b/src/oci/core/models/detach_instance_pool_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/detach_load_balancer_details.py b/src/oci/core/models/detach_load_balancer_details.py index ca842f3295..fec3584a3b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/device.py b/src/oci/core/models/device.py index 0bb24b8904..3e647887a5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/dhcp_dns_option.py b/src/oci/core/models/dhcp_dns_option.py index 9940b92100..992131c6ed 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .dhcp_option import DhcpOption diff --git a/src/oci/core/models/dhcp_option.py b/src/oci/core/models/dhcp_option.py index bb6e9aa66e..5875fe3d0c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/dhcp_options.py b/src/oci/core/models/dhcp_options.py index e4ea96e158..360b7c0434 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/dhcp_search_domain_option.py b/src/oci/core/models/dhcp_search_domain_option.py index 825cdb5235..3ad366514f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .dhcp_option import DhcpOption diff --git a/src/oci/core/models/dpd_config.py b/src/oci/core/models/dpd_config.py index c2aff529f2..1614e75998 100644 --- a/src/oci/core/models/dpd_config.py +++ b/src/oci/core/models/dpd_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/drg.py b/src/oci/core/models/drg.py index cd4231c982..d6f50048c9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/drg_attachment.py b/src/oci/core/models/drg_attachment.py index e2b2135858..2c37ea904b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/drg_attachment_id_drg_route_distribution_match_criteria.py b/src/oci/core/models/drg_attachment_id_drg_route_distribution_match_criteria.py index 3dbbc75466..ddb8a31c48 100644 --- a/src/oci/core/models/drg_attachment_id_drg_route_distribution_match_criteria.py +++ b/src/oci/core/models/drg_attachment_id_drg_route_distribution_match_criteria.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .drg_route_distribution_match_criteria import DrgRouteDistributionMatchCriteria diff --git a/src/oci/core/models/drg_attachment_info.py b/src/oci/core/models/drg_attachment_info.py index acf4620c88..453e75b192 100644 --- a/src/oci/core/models/drg_attachment_info.py +++ b/src/oci/core/models/drg_attachment_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/drg_attachment_network_create_details.py b/src/oci/core/models/drg_attachment_network_create_details.py index 4c40c2ce7b..4e258a241c 100644 --- a/src/oci/core/models/drg_attachment_network_create_details.py +++ b/src/oci/core/models/drg_attachment_network_create_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/drg_attachment_network_details.py b/src/oci/core/models/drg_attachment_network_details.py index b03be80b68..6404dfea47 100644 --- a/src/oci/core/models/drg_attachment_network_details.py +++ b/src/oci/core/models/drg_attachment_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/drg_attachment_network_update_details.py b/src/oci/core/models/drg_attachment_network_update_details.py index e5083c78a8..fdfbfdca2b 100644 --- a/src/oci/core/models/drg_attachment_network_update_details.py +++ b/src/oci/core/models/drg_attachment_network_update_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/drg_attachment_type_drg_route_distribution_match_criteria.py b/src/oci/core/models/drg_attachment_type_drg_route_distribution_match_criteria.py index 116389bb43..89d9ee05b3 100644 --- a/src/oci/core/models/drg_attachment_type_drg_route_distribution_match_criteria.py +++ b/src/oci/core/models/drg_attachment_type_drg_route_distribution_match_criteria.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .drg_route_distribution_match_criteria import DrgRouteDistributionMatchCriteria diff --git a/src/oci/core/models/drg_redundancy_status.py b/src/oci/core/models/drg_redundancy_status.py index 809b9d8a4b..ce441a0875 100644 --- a/src/oci/core/models/drg_redundancy_status.py +++ b/src/oci/core/models/drg_redundancy_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/drg_route_distribution.py b/src/oci/core/models/drg_route_distribution.py index 05ceb84ad2..52120055b6 100644 --- a/src/oci/core/models/drg_route_distribution.py +++ b/src/oci/core/models/drg_route_distribution.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/drg_route_distribution_match_criteria.py b/src/oci/core/models/drg_route_distribution_match_criteria.py index b867c7ce99..63687431e3 100644 --- a/src/oci/core/models/drg_route_distribution_match_criteria.py +++ b/src/oci/core/models/drg_route_distribution_match_criteria.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/drg_route_distribution_statement.py b/src/oci/core/models/drg_route_distribution_statement.py index ceecf15110..88ce0e851c 100644 --- a/src/oci/core/models/drg_route_distribution_statement.py +++ b/src/oci/core/models/drg_route_distribution_statement.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/drg_route_rule.py b/src/oci/core/models/drg_route_rule.py index 36ce18cc33..95f52893f6 100644 --- a/src/oci/core/models/drg_route_rule.py +++ b/src/oci/core/models/drg_route_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/drg_route_table.py b/src/oci/core/models/drg_route_table.py index 0e8f6b3704..fb9e4af6e5 100644 --- a/src/oci/core/models/drg_route_table.py +++ b/src/oci/core/models/drg_route_table.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/egress_security_rule.py b/src/oci/core/models/egress_security_rule.py index 32616c4d14..292c778626 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/emulated_volume_attachment.py b/src/oci/core/models/emulated_volume_attachment.py index 35cf2ab4a3..df69433a6f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .volume_attachment import VolumeAttachment diff --git a/src/oci/core/models/encryption_domain_config.py b/src/oci/core/models/encryption_domain_config.py index b11ee231c6..e37770dcce 100644 --- a/src/oci/core/models/encryption_domain_config.py +++ b/src/oci/core/models/encryption_domain_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/enum_integer_image_capability_descriptor.py b/src/oci/core/models/enum_integer_image_capability_descriptor.py index b3ae7fa1f1..19731b0b4d 100644 --- a/src/oci/core/models/enum_integer_image_capability_descriptor.py +++ b/src/oci/core/models/enum_integer_image_capability_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .image_capability_schema_descriptor import ImageCapabilitySchemaDescriptor diff --git a/src/oci/core/models/enum_string_image_capability_schema_descriptor.py b/src/oci/core/models/enum_string_image_capability_schema_descriptor.py index 9af2a9f47c..9a03e61d7d 100644 --- a/src/oci/core/models/enum_string_image_capability_schema_descriptor.py +++ b/src/oci/core/models/enum_string_image_capability_schema_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .image_capability_schema_descriptor import ImageCapabilitySchemaDescriptor diff --git a/src/oci/core/models/export_image_details.py b/src/oci/core/models/export_image_details.py index 7e317ac98e..baf4ed876b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 81a0b8037e..0d548607c2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .export_image_details import ExportImageDetails 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 2eebf0252a..be5a007710 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .export_image_details import ExportImageDetails diff --git a/src/oci/core/models/fast_connect_provider_service.py b/src/oci/core/models/fast_connect_provider_service.py index 1e25d247e8..1ebe36324f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 8febfcd3ef..5c62b9f773 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 8c6bd122bc..71a4cb41da 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 99b1931d54..83f511da5e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/i_scsi_volume_attachment.py b/src/oci/core/models/i_scsi_volume_attachment.py index 4f6e9a1f19..3d0ba79046 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .volume_attachment import VolumeAttachment diff --git a/src/oci/core/models/icmp_options.py b/src/oci/core/models/icmp_options.py index 06e9e12ac2..2e5d1d577e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/image.py b/src/oci/core/models/image.py index b02b35dcb8..e4cecec551 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/image_capability_schema_descriptor.py b/src/oci/core/models/image_capability_schema_descriptor.py index f86f42c627..937d222d62 100644 --- a/src/oci/core/models/image_capability_schema_descriptor.py +++ b/src/oci/core/models/image_capability_schema_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/image_memory_constraints.py b/src/oci/core/models/image_memory_constraints.py index ee5c500575..ea115bf23c 100644 --- a/src/oci/core/models/image_memory_constraints.py +++ b/src/oci/core/models/image_memory_constraints.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/image_ocpu_constraints.py b/src/oci/core/models/image_ocpu_constraints.py index c20779e568..7044a3d4d5 100644 --- a/src/oci/core/models/image_ocpu_constraints.py +++ b/src/oci/core/models/image_ocpu_constraints.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/image_shape_compatibility_entry.py b/src/oci/core/models/image_shape_compatibility_entry.py index 0ca6c7e864..27bf0b6cd8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/image_shape_compatibility_summary.py b/src/oci/core/models/image_shape_compatibility_summary.py index 72d6b31aae..ddad49a1e4 100644 --- a/src/oci/core/models/image_shape_compatibility_summary.py +++ b/src/oci/core/models/image_shape_compatibility_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/image_source_details.py b/src/oci/core/models/image_source_details.py index c6e450371c..4c9fd9b640 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 3b6753a0dc..e596f5bc46 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .image_source_details import ImageSourceDetails 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 99dae312ef..2fd236cfaf 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .image_source_details import ImageSourceDetails diff --git a/src/oci/core/models/ingress_security_rule.py b/src/oci/core/models/ingress_security_rule.py index b6a27e0ea3..8021c2939d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance.py b/src/oci/core/models/instance.py index 98e2ee05a4..f46344404b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_agent_config.py b/src/oci/core/models/instance_agent_config.py index 0e29c81b6a..691bc52aed 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_agent_features.py b/src/oci/core/models/instance_agent_features.py index a6c304a5e5..05e41da3ac 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_agent_plugin_config_details.py b/src/oci/core/models/instance_agent_plugin_config_details.py index c763af67b1..314099232d 100644 --- a/src/oci/core/models/instance_agent_plugin_config_details.py +++ b/src/oci/core/models/instance_agent_plugin_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_availability_config.py b/src/oci/core/models/instance_availability_config.py index d245b67129..f896343cd2 100644 --- a/src/oci/core/models/instance_availability_config.py +++ b/src/oci/core/models/instance_availability_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_configuration.py b/src/oci/core/models/instance_configuration.py index 115eb4662c..f17fc060be 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_configuration_amd_milan_bm_launch_instance_platform_config.py b/src/oci/core/models/instance_configuration_amd_milan_bm_launch_instance_platform_config.py index 8dfdcd306e..8f9dc5fdab 100644 --- a/src/oci/core/models/instance_configuration_amd_milan_bm_launch_instance_platform_config.py +++ b/src/oci/core/models/instance_configuration_amd_milan_bm_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_configuration_launch_instance_platform_config import InstanceConfigurationLaunchInstancePlatformConfig diff --git a/src/oci/core/models/instance_configuration_amd_rome_bm_launch_instance_platform_config.py b/src/oci/core/models/instance_configuration_amd_rome_bm_launch_instance_platform_config.py index 7bf9b6dc38..de79386335 100644 --- a/src/oci/core/models/instance_configuration_amd_rome_bm_launch_instance_platform_config.py +++ b/src/oci/core/models/instance_configuration_amd_rome_bm_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_configuration_launch_instance_platform_config import InstanceConfigurationLaunchInstancePlatformConfig diff --git a/src/oci/core/models/instance_configuration_amd_vm_launch_instance_platform_config.py b/src/oci/core/models/instance_configuration_amd_vm_launch_instance_platform_config.py index 7868db3a76..d0cc9c3c9b 100644 --- a/src/oci/core/models/instance_configuration_amd_vm_launch_instance_platform_config.py +++ b/src/oci/core/models/instance_configuration_amd_vm_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_configuration_launch_instance_platform_config import InstanceConfigurationLaunchInstancePlatformConfig 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 08896caf43..df44ff8ac1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 5b2422649f..526dc952db 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_configuration_availability_config.py b/src/oci/core/models/instance_configuration_availability_config.py index 24468c5261..99c45debc5 100644 --- a/src/oci/core/models/instance_configuration_availability_config.py +++ b/src/oci/core/models/instance_configuration_availability_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 37a7ef54de..0332e02246 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 2c809487d5..ace74708c3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 3c1b94f120..13117f9f00 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_configuration_instance_details.py b/src/oci/core/models/instance_configuration_instance_details.py index 5969d25544..b2883d4229 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_configuration_instance_options.py b/src/oci/core/models/instance_configuration_instance_options.py index 3476a1b135..1aa63bad10 100644 --- a/src/oci/core/models/instance_configuration_instance_options.py +++ b/src/oci/core/models/instance_configuration_instance_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 abb4a358d0..eb787050b9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 adc3b13919..3513637ee7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_configuration_instance_source_details import InstanceConfigurationInstanceSourceDetails 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 b822118999..deb815a5a3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_configuration_instance_source_details import InstanceConfigurationInstanceSourceDetails diff --git a/src/oci/core/models/instance_configuration_intel_skylake_bm_launch_instance_platform_config.py b/src/oci/core/models/instance_configuration_intel_skylake_bm_launch_instance_platform_config.py index f2948c140c..dec7f4d0fe 100644 --- a/src/oci/core/models/instance_configuration_intel_skylake_bm_launch_instance_platform_config.py +++ b/src/oci/core/models/instance_configuration_intel_skylake_bm_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_configuration_launch_instance_platform_config import InstanceConfigurationLaunchInstancePlatformConfig diff --git a/src/oci/core/models/instance_configuration_intel_vm_launch_instance_platform_config.py b/src/oci/core/models/instance_configuration_intel_vm_launch_instance_platform_config.py index 4633bf22cd..508cf80e39 100644 --- a/src/oci/core/models/instance_configuration_intel_vm_launch_instance_platform_config.py +++ b/src/oci/core/models/instance_configuration_intel_vm_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_configuration_launch_instance_platform_config import InstanceConfigurationLaunchInstancePlatformConfig 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 987455013f..8e75e9cf6b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_configuration_attach_volume_details import InstanceConfigurationAttachVolumeDetails diff --git a/src/oci/core/models/instance_configuration_launch_instance_agent_config_details.py b/src/oci/core/models/instance_configuration_launch_instance_agent_config_details.py index 28ee24c907..8e26ba34ee 100644 --- a/src/oci/core/models/instance_configuration_launch_instance_agent_config_details.py +++ b/src/oci/core/models/instance_configuration_launch_instance_agent_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 79327c83c0..f4443430a0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_configuration_launch_instance_platform_config.py b/src/oci/core/models/instance_configuration_launch_instance_platform_config.py index 9ed05033d0..f6c65a9f97 100644 --- a/src/oci/core/models/instance_configuration_launch_instance_platform_config.py +++ b/src/oci/core/models/instance_configuration_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_configuration_launch_instance_shape_config_details.py b/src/oci/core/models/instance_configuration_launch_instance_shape_config_details.py index 5ac09d651d..753af8476b 100644 --- a/src/oci/core/models/instance_configuration_launch_instance_shape_config_details.py +++ b/src/oci/core/models/instance_configuration_launch_instance_shape_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_configuration_launch_options.py b/src/oci/core/models/instance_configuration_launch_options.py index 7e33d6e0a1..f4e407a0fb 100644 --- a/src/oci/core/models/instance_configuration_launch_options.py +++ b/src/oci/core/models/instance_configuration_launch_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 7d3c5a987c..33830047af 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_configuration_attach_volume_details import InstanceConfigurationAttachVolumeDetails diff --git a/src/oci/core/models/instance_configuration_summary.py b/src/oci/core/models/instance_configuration_summary.py index 81b439c538..90352493a2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 2b9a9955f1..1d50812eef 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 ea84e1dfe4..cb6e86c355 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_configuration_volume_source_details import InstanceConfigurationVolumeSourceDetails 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 3a1aef0bcf..68b00ab545 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_configuration_volume_source_details import InstanceConfigurationVolumeSourceDetails diff --git a/src/oci/core/models/instance_console_connection.py b/src/oci/core/models/instance_console_connection.py index ce27605747..b326102ec1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_credentials.py b/src/oci/core/models/instance_credentials.py index 7936042f28..5f0ec2469d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_options.py b/src/oci/core/models/instance_options.py index 548531915f..542e04f429 100644 --- a/src/oci/core/models/instance_options.py +++ b/src/oci/core/models/instance_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_pool.py b/src/oci/core/models/instance_pool.py index 366f93a84a..efdef63bc2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_pool_instance.py b/src/oci/core/models/instance_pool_instance.py index 94ffd29ac8..0ed94137e3 100644 --- a/src/oci/core/models/instance_pool_instance.py +++ b/src/oci/core/models/instance_pool_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 7e6434c981..89b01ab900 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 e1c1eb492b..8b481b6bfe 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_pool_placement_configuration.py b/src/oci/core/models/instance_pool_placement_configuration.py index a4461f2efe..4eed07ec7e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 e2b1d8af2e..03b62d6ae5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_pool_summary.py b/src/oci/core/models/instance_pool_summary.py index 61cfdf12e9..79594bf35d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_reservation_config.py b/src/oci/core/models/instance_reservation_config.py index d7c084d61e..d4019cb916 100644 --- a/src/oci/core/models/instance_reservation_config.py +++ b/src/oci/core/models/instance_reservation_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_reservation_config_details.py b/src/oci/core/models/instance_reservation_config_details.py index a2b6c10b2b..866bcf9a70 100644 --- a/src/oci/core/models/instance_reservation_config_details.py +++ b/src/oci/core/models/instance_reservation_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_reservation_shape_config_details.py b/src/oci/core/models/instance_reservation_shape_config_details.py index 21877c83b8..fe295f3c66 100644 --- a/src/oci/core/models/instance_reservation_shape_config_details.py +++ b/src/oci/core/models/instance_reservation_shape_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_shape_config.py b/src/oci/core/models/instance_shape_config.py index 505d7915c6..c616bbe3af 100644 --- a/src/oci/core/models/instance_shape_config.py +++ b/src/oci/core/models/instance_shape_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/instance_source_details.py b/src/oci/core/models/instance_source_details.py index d3404bd3b1..41c1bc5339 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 1da2122fc5..1e3b6a9320 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_source_details import InstanceSourceDetails 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 4d41432720..a6174d7b72 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .instance_source_details import InstanceSourceDetails diff --git a/src/oci/core/models/instance_summary.py b/src/oci/core/models/instance_summary.py index 6dfdaaaf34..1549e4797b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/intel_skylake_bm_launch_instance_platform_config.py b/src/oci/core/models/intel_skylake_bm_launch_instance_platform_config.py index bfa1ba04b4..80df842a27 100644 --- a/src/oci/core/models/intel_skylake_bm_launch_instance_platform_config.py +++ b/src/oci/core/models/intel_skylake_bm_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .launch_instance_platform_config import LaunchInstancePlatformConfig diff --git a/src/oci/core/models/intel_skylake_bm_platform_config.py b/src/oci/core/models/intel_skylake_bm_platform_config.py index 8388fc1105..26337ec4ea 100644 --- a/src/oci/core/models/intel_skylake_bm_platform_config.py +++ b/src/oci/core/models/intel_skylake_bm_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .platform_config import PlatformConfig diff --git a/src/oci/core/models/intel_vm_launch_instance_platform_config.py b/src/oci/core/models/intel_vm_launch_instance_platform_config.py index 42e7dc05fe..648f7806a3 100644 --- a/src/oci/core/models/intel_vm_launch_instance_platform_config.py +++ b/src/oci/core/models/intel_vm_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .launch_instance_platform_config import LaunchInstancePlatformConfig diff --git a/src/oci/core/models/intel_vm_platform_config.py b/src/oci/core/models/intel_vm_platform_config.py index 504ff8e153..90849e952b 100644 --- a/src/oci/core/models/intel_vm_platform_config.py +++ b/src/oci/core/models/intel_vm_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .platform_config import PlatformConfig diff --git a/src/oci/core/models/internet_gateway.py b/src/oci/core/models/internet_gateway.py index f9e201b6db..2ade61a75d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/ip_sec_connection.py b/src/oci/core/models/ip_sec_connection.py index a5c09bbb35..2d1847700b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 74e97dc8b6..4ee51094eb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 2d1b35438f..bc4a59df0f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/ip_sec_connection_tunnel.py b/src/oci/core/models/ip_sec_connection_tunnel.py index 9b7f3146b1..75cacd94f8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/ip_sec_connection_tunnel_error_details.py b/src/oci/core/models/ip_sec_connection_tunnel_error_details.py index 32128e315a..4485c6a3a1 100644 --- a/src/oci/core/models/ip_sec_connection_tunnel_error_details.py +++ b/src/oci/core/models/ip_sec_connection_tunnel_error_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 7dbd1d5ff1..804b44571f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/ipsec_tunnel_drg_attachment_network_details.py b/src/oci/core/models/ipsec_tunnel_drg_attachment_network_details.py index f3a878707a..df0e9adb7c 100644 --- a/src/oci/core/models/ipsec_tunnel_drg_attachment_network_details.py +++ b/src/oci/core/models/ipsec_tunnel_drg_attachment_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .drg_attachment_network_details import DrgAttachmentNetworkDetails diff --git a/src/oci/core/models/ipv6.py b/src/oci/core/models/ipv6.py index e23c7461b2..ee61e792f2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 acee486865..e66003185d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/launch_instance_availability_config_details.py b/src/oci/core/models/launch_instance_availability_config_details.py index ed671c07a8..121a2c5fb1 100644 --- a/src/oci/core/models/launch_instance_availability_config_details.py +++ b/src/oci/core/models/launch_instance_availability_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/launch_instance_details.py b/src/oci/core/models/launch_instance_details.py index ecd19dedb8..fc432d3409 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/launch_instance_platform_config.py b/src/oci/core/models/launch_instance_platform_config.py index 7e798e46d9..2e0627ee77 100644 --- a/src/oci/core/models/launch_instance_platform_config.py +++ b/src/oci/core/models/launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/launch_instance_shape_config_details.py b/src/oci/core/models/launch_instance_shape_config_details.py index afea14a264..803eb0fcbb 100644 --- a/src/oci/core/models/launch_instance_shape_config_details.py +++ b/src/oci/core/models/launch_instance_shape_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/launch_options.py b/src/oci/core/models/launch_options.py index 80f352e778..d09ad17716 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/letter_of_authority.py b/src/oci/core/models/letter_of_authority.py index bfed49e7db..ef44521c25 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/local_peering_gateway.py b/src/oci/core/models/local_peering_gateway.py index a7f9ba8873..8915b143e8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/macsec_key.py b/src/oci/core/models/macsec_key.py index 8884d451bf..829b1f7fdb 100644 --- a/src/oci/core/models/macsec_key.py +++ b/src/oci/core/models/macsec_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/macsec_properties.py b/src/oci/core/models/macsec_properties.py index ea99fb9889..62b7d582b6 100644 --- a/src/oci/core/models/macsec_properties.py +++ b/src/oci/core/models/macsec_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/measured_boot_entry.py b/src/oci/core/models/measured_boot_entry.py index ca6c2de174..95c3d48c9b 100644 --- a/src/oci/core/models/measured_boot_entry.py +++ b/src/oci/core/models/measured_boot_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/measured_boot_report.py b/src/oci/core/models/measured_boot_report.py index a25d75944c..b4aa466fcd 100644 --- a/src/oci/core/models/measured_boot_report.py +++ b/src/oci/core/models/measured_boot_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/measured_boot_report_measurements.py b/src/oci/core/models/measured_boot_report_measurements.py index 75255307c5..31a79b08e6 100644 --- a/src/oci/core/models/measured_boot_report_measurements.py +++ b/src/oci/core/models/measured_boot_report_measurements.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/modify_vcn_cidr_details.py b/src/oci/core/models/modify_vcn_cidr_details.py index 48103c20e2..40fd23465d 100644 --- a/src/oci/core/models/modify_vcn_cidr_details.py +++ b/src/oci/core/models/modify_vcn_cidr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/multipath_device.py b/src/oci/core/models/multipath_device.py index 0a60483f44..b39c3f96ac 100644 --- a/src/oci/core/models/multipath_device.py +++ b/src/oci/core/models/multipath_device.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/nat_gateway.py b/src/oci/core/models/nat_gateway.py index 9ca8514785..6a7a22e0f0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/network_security_group.py b/src/oci/core/models/network_security_group.py index c46f6052a1..5c29cca901 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/network_security_group_vnic.py b/src/oci/core/models/network_security_group_vnic.py index 1c04a80586..31ac53528f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/networking_topology.py b/src/oci/core/models/networking_topology.py index f1361d91fc..563ab8fe19 100644 --- a/src/oci/core/models/networking_topology.py +++ b/src/oci/core/models/networking_topology.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .topology import Topology diff --git a/src/oci/core/models/paravirtualized_volume_attachment.py b/src/oci/core/models/paravirtualized_volume_attachment.py index 203f781544..7f3629ff4e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .volume_attachment import VolumeAttachment 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 d97b3ae4bd..a3827ac520 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/phase_one_config_details.py b/src/oci/core/models/phase_one_config_details.py index bdc538d4ef..af7e3072ee 100644 --- a/src/oci/core/models/phase_one_config_details.py +++ b/src/oci/core/models/phase_one_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/phase_two_config_details.py b/src/oci/core/models/phase_two_config_details.py index f321bfc465..0a2db85b8f 100644 --- a/src/oci/core/models/phase_two_config_details.py +++ b/src/oci/core/models/phase_two_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/platform_config.py b/src/oci/core/models/platform_config.py index bc6cd6cd70..7c2cb9f2c5 100644 --- a/src/oci/core/models/platform_config.py +++ b/src/oci/core/models/platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/port_range.py b/src/oci/core/models/port_range.py index 011d5d3f6e..146486b12e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/preemptible_instance_config_details.py b/src/oci/core/models/preemptible_instance_config_details.py index 0b278242ac..8a560376cc 100644 --- a/src/oci/core/models/preemptible_instance_config_details.py +++ b/src/oci/core/models/preemptible_instance_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/preemption_action.py b/src/oci/core/models/preemption_action.py index c77f89943d..c41b0d9b29 100644 --- a/src/oci/core/models/preemption_action.py +++ b/src/oci/core/models/preemption_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/private_ip.py b/src/oci/core/models/private_ip.py index ea611fd149..4a3c1a7d84 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/public_ip.py b/src/oci/core/models/public_ip.py index 78801dfab0..657abaf5f7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/public_ip_pool.py b/src/oci/core/models/public_ip_pool.py index 89e1a8ac2e..cdfe2904cc 100644 --- a/src/oci/core/models/public_ip_pool.py +++ b/src/oci/core/models/public_ip_pool.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/public_ip_pool_collection.py b/src/oci/core/models/public_ip_pool_collection.py index 1507205763..5cfbbde85a 100644 --- a/src/oci/core/models/public_ip_pool_collection.py +++ b/src/oci/core/models/public_ip_pool_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/public_ip_pool_summary.py b/src/oci/core/models/public_ip_pool_summary.py index faf647e272..43d1694a5e 100644 --- a/src/oci/core/models/public_ip_pool_summary.py +++ b/src/oci/core/models/public_ip_pool_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/remote_peering_connection.py b/src/oci/core/models/remote_peering_connection.py index 82eecb7c7c..ba21bbb050 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/remote_peering_connection_drg_attachment_network_details.py b/src/oci/core/models/remote_peering_connection_drg_attachment_network_details.py index 90bec1c67f..75c7d492eb 100644 --- a/src/oci/core/models/remote_peering_connection_drg_attachment_network_details.py +++ b/src/oci/core/models/remote_peering_connection_drg_attachment_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .drg_attachment_network_details import DrgAttachmentNetworkDetails diff --git a/src/oci/core/models/remove_drg_route_distribution_statements_details.py b/src/oci/core/models/remove_drg_route_distribution_statements_details.py index 7f151026cf..ed14baaeab 100644 --- a/src/oci/core/models/remove_drg_route_distribution_statements_details.py +++ b/src/oci/core/models/remove_drg_route_distribution_statements_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/remove_drg_route_rules_details.py b/src/oci/core/models/remove_drg_route_rules_details.py index 1b020990aa..8fac2d0782 100644 --- a/src/oci/core/models/remove_drg_route_rules_details.py +++ b/src/oci/core/models/remove_drg_route_rules_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 b203998643..d6505b9302 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/remove_public_ip_pool_capacity_details.py b/src/oci/core/models/remove_public_ip_pool_capacity_details.py index c37d54f7bf..a904b58cf3 100644 --- a/src/oci/core/models/remove_public_ip_pool_capacity_details.py +++ b/src/oci/core/models/remove_public_ip_pool_capacity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/remove_vcn_cidr_details.py b/src/oci/core/models/remove_vcn_cidr_details.py index 3827e8fa78..c2713a56b4 100644 --- a/src/oci/core/models/remove_vcn_cidr_details.py +++ b/src/oci/core/models/remove_vcn_cidr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/route_rule.py b/src/oci/core/models/route_rule.py index ab69c68707..8810e07cfc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/route_table.py b/src/oci/core/models/route_table.py index 0a4f8df921..b5844359bf 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/security_list.py b/src/oci/core/models/security_list.py index 2c6a0b3ee7..228edf3c4a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/security_rule.py b/src/oci/core/models/security_rule.py index 110df6ceff..a658aca1ae 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/service.py b/src/oci/core/models/service.py index d1a7130c9a..fb338938a7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/service_gateway.py b/src/oci/core/models/service_gateway.py index bcc6e4c771..34985a85fc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/service_id_request_details.py b/src/oci/core/models/service_id_request_details.py index aa63b17575..3ac7aa4a57 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/service_id_response_details.py b/src/oci/core/models/service_id_response_details.py index 611874d9a5..00973c2ecc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/shape.py b/src/oci/core/models/shape.py index d070ac3c12..5e38ee44a3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/shape_max_vnic_attachment_options.py b/src/oci/core/models/shape_max_vnic_attachment_options.py index 138fc19b31..1c1c5f2b68 100644 --- a/src/oci/core/models/shape_max_vnic_attachment_options.py +++ b/src/oci/core/models/shape_max_vnic_attachment_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/shape_measured_boot_options.py b/src/oci/core/models/shape_measured_boot_options.py index b2833be9fb..bfe332299e 100644 --- a/src/oci/core/models/shape_measured_boot_options.py +++ b/src/oci/core/models/shape_measured_boot_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/shape_memory_options.py b/src/oci/core/models/shape_memory_options.py index 8749214f45..c6caf5a86b 100644 --- a/src/oci/core/models/shape_memory_options.py +++ b/src/oci/core/models/shape_memory_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/shape_networking_bandwidth_options.py b/src/oci/core/models/shape_networking_bandwidth_options.py index d99d790f3f..42b7d8d046 100644 --- a/src/oci/core/models/shape_networking_bandwidth_options.py +++ b/src/oci/core/models/shape_networking_bandwidth_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/shape_numa_nodes_per_socket_platform_options.py b/src/oci/core/models/shape_numa_nodes_per_socket_platform_options.py index a14aea9b08..5de83b44ef 100644 --- a/src/oci/core/models/shape_numa_nodes_per_socket_platform_options.py +++ b/src/oci/core/models/shape_numa_nodes_per_socket_platform_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/shape_ocpu_options.py b/src/oci/core/models/shape_ocpu_options.py index 2980766fc8..58a3d49952 100644 --- a/src/oci/core/models/shape_ocpu_options.py +++ b/src/oci/core/models/shape_ocpu_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/shape_platform_config_options.py b/src/oci/core/models/shape_platform_config_options.py index 8a2b7131d9..4e8c8f3e76 100644 --- a/src/oci/core/models/shape_platform_config_options.py +++ b/src/oci/core/models/shape_platform_config_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/shape_secure_boot_options.py b/src/oci/core/models/shape_secure_boot_options.py index b387ade540..3469d7937e 100644 --- a/src/oci/core/models/shape_secure_boot_options.py +++ b/src/oci/core/models/shape_secure_boot_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/shape_trusted_platform_module_options.py b/src/oci/core/models/shape_trusted_platform_module_options.py index 9a5c993946..da02bdae7f 100644 --- a/src/oci/core/models/shape_trusted_platform_module_options.py +++ b/src/oci/core/models/shape_trusted_platform_module_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/subnet.py b/src/oci/core/models/subnet.py index 238e7b05f1..dee7c6f34b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/subnet_topology.py b/src/oci/core/models/subnet_topology.py index 07b02dfd68..3f03630c3a 100644 --- a/src/oci/core/models/subnet_topology.py +++ b/src/oci/core/models/subnet_topology.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .topology import Topology diff --git a/src/oci/core/models/tcp_options.py b/src/oci/core/models/tcp_options.py index 9e0ad71a2b..1e9555f737 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/terminate_preemption_action.py b/src/oci/core/models/terminate_preemption_action.py index 6d37c24d0c..cfcbdb3dc1 100644 --- a/src/oci/core/models/terminate_preemption_action.py +++ b/src/oci/core/models/terminate_preemption_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .preemption_action import PreemptionAction diff --git a/src/oci/core/models/topology.py b/src/oci/core/models/topology.py index 307a04f59f..ba2863f3c9 100644 --- a/src/oci/core/models/topology.py +++ b/src/oci/core/models/topology.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/topology_associated_with_entity_relationship.py b/src/oci/core/models/topology_associated_with_entity_relationship.py index 58fb757ad0..921ec576da 100644 --- a/src/oci/core/models/topology_associated_with_entity_relationship.py +++ b/src/oci/core/models/topology_associated_with_entity_relationship.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .topology_entity_relationship import TopologyEntityRelationship diff --git a/src/oci/core/models/topology_associated_with_relationship_details.py b/src/oci/core/models/topology_associated_with_relationship_details.py index 20cbabd4ab..72b87ffbcc 100644 --- a/src/oci/core/models/topology_associated_with_relationship_details.py +++ b/src/oci/core/models/topology_associated_with_relationship_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/topology_contains_entity_relationship.py b/src/oci/core/models/topology_contains_entity_relationship.py index 4267d79a1e..4e0e80e31e 100644 --- a/src/oci/core/models/topology_contains_entity_relationship.py +++ b/src/oci/core/models/topology_contains_entity_relationship.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .topology_entity_relationship import TopologyEntityRelationship diff --git a/src/oci/core/models/topology_entity_relationship.py b/src/oci/core/models/topology_entity_relationship.py index 17739fb075..98be40bde4 100644 --- a/src/oci/core/models/topology_entity_relationship.py +++ b/src/oci/core/models/topology_entity_relationship.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/topology_routes_to_entity_relationship.py b/src/oci/core/models/topology_routes_to_entity_relationship.py index e1bd3baa35..b8ac2a1bf4 100644 --- a/src/oci/core/models/topology_routes_to_entity_relationship.py +++ b/src/oci/core/models/topology_routes_to_entity_relationship.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .topology_entity_relationship import TopologyEntityRelationship diff --git a/src/oci/core/models/topology_routes_to_relationship_details.py b/src/oci/core/models/topology_routes_to_relationship_details.py index dd6676fdce..11d6f007b7 100644 --- a/src/oci/core/models/topology_routes_to_relationship_details.py +++ b/src/oci/core/models/topology_routes_to_relationship_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/tunnel_config.py b/src/oci/core/models/tunnel_config.py index 630fe2de67..fcf35f4c1c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/tunnel_cpe_device_config.py b/src/oci/core/models/tunnel_cpe_device_config.py index b6a675e1c8..fa29253ef2 100644 --- a/src/oci/core/models/tunnel_cpe_device_config.py +++ b/src/oci/core/models/tunnel_cpe_device_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/tunnel_phase_one_details.py b/src/oci/core/models/tunnel_phase_one_details.py index 98213795b5..3b100a7f7a 100644 --- a/src/oci/core/models/tunnel_phase_one_details.py +++ b/src/oci/core/models/tunnel_phase_one_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/tunnel_phase_two_details.py b/src/oci/core/models/tunnel_phase_two_details.py index c660ecf1ef..101fb79dd0 100644 --- a/src/oci/core/models/tunnel_phase_two_details.py +++ b/src/oci/core/models/tunnel_phase_two_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/tunnel_route_summary.py b/src/oci/core/models/tunnel_route_summary.py index 6d921aa988..1c36ef60af 100644 --- a/src/oci/core/models/tunnel_route_summary.py +++ b/src/oci/core/models/tunnel_route_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/tunnel_security_association_summary.py b/src/oci/core/models/tunnel_security_association_summary.py index 16247fd1f7..2960700a70 100644 --- a/src/oci/core/models/tunnel_security_association_summary.py +++ b/src/oci/core/models/tunnel_security_association_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/tunnel_status.py b/src/oci/core/models/tunnel_status.py index eb7e539306..8ae24d10e5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/udp_options.py b/src/oci/core/models/udp_options.py index a3c72c105b..d9cb23a9ea 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 63097196f4..2f2909a4fd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_boot_volume_details.py b/src/oci/core/models/update_boot_volume_details.py index 92a6c7a82c..4514cfc1bf 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 85cdff5284..c961244b10 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_byoip_range_details.py b/src/oci/core/models/update_byoip_range_details.py index 3a304c8bf6..46c04c9250 100644 --- a/src/oci/core/models/update_byoip_range_details.py +++ b/src/oci/core/models/update_byoip_range_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_cluster_network_details.py b/src/oci/core/models/update_cluster_network_details.py index 1d04e74495..1b67892096 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_cluster_network_instance_pool_details.py b/src/oci/core/models/update_cluster_network_instance_pool_details.py index aaa018ea73..5bca6bc71d 100644 --- a/src/oci/core/models/update_cluster_network_instance_pool_details.py +++ b/src/oci/core/models/update_cluster_network_instance_pool_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_compute_capacity_reservation_details.py b/src/oci/core/models/update_compute_capacity_reservation_details.py index 871a510710..e7aedd73ff 100644 --- a/src/oci/core/models/update_compute_capacity_reservation_details.py +++ b/src/oci/core/models/update_compute_capacity_reservation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_compute_image_capability_schema_details.py b/src/oci/core/models/update_compute_image_capability_schema_details.py index 69eba34e6d..10c91ee0b0 100644 --- a/src/oci/core/models/update_compute_image_capability_schema_details.py +++ b/src/oci/core/models/update_compute_image_capability_schema_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_console_history_details.py b/src/oci/core/models/update_console_history_details.py index aac4206786..d7f5a6be11 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_cpe_details.py b/src/oci/core/models/update_cpe_details.py index faae1786b4..6e837be45b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_cross_connect_details.py b/src/oci/core/models/update_cross_connect_details.py index 4615d39247..52db79799e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 e3b2d423db..1be1a71103 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 fe00761524..22e8e6ab5b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_dhcp_details.py b/src/oci/core/models/update_dhcp_details.py index f63a2a9aec..266baaf33d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_drg_attachment_details.py b/src/oci/core/models/update_drg_attachment_details.py index 01c98c5303..5a35ebb810 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_drg_details.py b/src/oci/core/models/update_drg_details.py index ad81f32200..05a0589c1e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_drg_route_distribution_details.py b/src/oci/core/models/update_drg_route_distribution_details.py index cc72370857..e75aa49434 100644 --- a/src/oci/core/models/update_drg_route_distribution_details.py +++ b/src/oci/core/models/update_drg_route_distribution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_drg_route_distribution_statement_details.py b/src/oci/core/models/update_drg_route_distribution_statement_details.py index cb0dc6df7b..a13e9651cb 100644 --- a/src/oci/core/models/update_drg_route_distribution_statement_details.py +++ b/src/oci/core/models/update_drg_route_distribution_statement_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_drg_route_distribution_statements_details.py b/src/oci/core/models/update_drg_route_distribution_statements_details.py index 48db451346..b04d01e9fc 100644 --- a/src/oci/core/models/update_drg_route_distribution_statements_details.py +++ b/src/oci/core/models/update_drg_route_distribution_statements_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_drg_route_rule_details.py b/src/oci/core/models/update_drg_route_rule_details.py index 57e74a465a..1695374bc5 100644 --- a/src/oci/core/models/update_drg_route_rule_details.py +++ b/src/oci/core/models/update_drg_route_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_drg_route_rules_details.py b/src/oci/core/models/update_drg_route_rules_details.py index 3e2c23b2ff..60991b48be 100644 --- a/src/oci/core/models/update_drg_route_rules_details.py +++ b/src/oci/core/models/update_drg_route_rules_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_drg_route_table_details.py b/src/oci/core/models/update_drg_route_table_details.py index 7f35e9a677..3314fe2287 100644 --- a/src/oci/core/models/update_drg_route_table_details.py +++ b/src/oci/core/models/update_drg_route_table_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_image_details.py b/src/oci/core/models/update_image_details.py index 7cb6c037c3..45909e7cda 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 00d3c6df9a..86d43347a4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_instance_availability_config_details.py b/src/oci/core/models/update_instance_availability_config_details.py index 7f7fb84850..20d0791fe0 100644 --- a/src/oci/core/models/update_instance_availability_config_details.py +++ b/src/oci/core/models/update_instance_availability_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_instance_configuration_details.py b/src/oci/core/models/update_instance_configuration_details.py index ad66b5bad1..9573a0c75e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_instance_console_connection_details.py b/src/oci/core/models/update_instance_console_connection_details.py index 65d12deff3..b821e169dc 100644 --- a/src/oci/core/models/update_instance_console_connection_details.py +++ b/src/oci/core/models/update_instance_console_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_instance_details.py b/src/oci/core/models/update_instance_details.py index 71c7035a6c..ebc205bb94 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_instance_pool_details.py b/src/oci/core/models/update_instance_pool_details.py index 724a18bd5e..0719b8dc67 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 84b336bfba..4609b1247c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_instance_shape_config_details.py b/src/oci/core/models/update_instance_shape_config_details.py index afbb0f51a2..1c2f2836f7 100644 --- a/src/oci/core/models/update_instance_shape_config_details.py +++ b/src/oci/core/models/update_instance_shape_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_internet_gateway_details.py b/src/oci/core/models/update_internet_gateway_details.py index 9c63867045..fb599d3a90 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 bba84e1cab..b52216ddd3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 35df5c0528..c507b9b231 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 1b7c01b62e..358e074ad9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 ca6d7a7b8c..62321ef3c4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_ip_sec_tunnel_encryption_domain_details.py b/src/oci/core/models/update_ip_sec_tunnel_encryption_domain_details.py index a35eb23694..a3eab69f23 100644 --- a/src/oci/core/models/update_ip_sec_tunnel_encryption_domain_details.py +++ b/src/oci/core/models/update_ip_sec_tunnel_encryption_domain_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_ipv6_details.py b/src/oci/core/models/update_ipv6_details.py index 04cc885aad..50eb71ed0c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_launch_options.py b/src/oci/core/models/update_launch_options.py index ea475a4b03..569802ae72 100644 --- a/src/oci/core/models/update_launch_options.py +++ b/src/oci/core/models/update_launch_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 507aceb92b..5c93e7a407 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_macsec_key.py b/src/oci/core/models/update_macsec_key.py index 17f1545086..31743b44c5 100644 --- a/src/oci/core/models/update_macsec_key.py +++ b/src/oci/core/models/update_macsec_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_macsec_properties.py b/src/oci/core/models/update_macsec_properties.py index 51347b5a64..c0fdcb7789 100644 --- a/src/oci/core/models/update_macsec_properties.py +++ b/src/oci/core/models/update_macsec_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_nat_gateway_details.py b/src/oci/core/models/update_nat_gateway_details.py index 945c0c9571..57e5b7e600 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 7a9e892566..82f45b32f3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 371ecc8d7d..8f550b0709 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_private_ip_details.py b/src/oci/core/models/update_private_ip_details.py index 9b46c511a7..77276e79e5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_public_ip_details.py b/src/oci/core/models/update_public_ip_details.py index b9b737add2..4796519f55 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_public_ip_pool_details.py b/src/oci/core/models/update_public_ip_pool_details.py index 676663fcfb..20919fbf89 100644 --- a/src/oci/core/models/update_public_ip_pool_details.py +++ b/src/oci/core/models/update_public_ip_pool_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 7ee4e32931..7c2a962d8d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_route_table_details.py b/src/oci/core/models/update_route_table_details.py index 94b3f5e48f..12b7dfe47a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_security_list_details.py b/src/oci/core/models/update_security_list_details.py index 8cbdbb6359..4b583f5155 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_security_rule_details.py b/src/oci/core/models/update_security_rule_details.py index 5d84a32987..8b3e5b1c36 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_service_gateway_details.py b/src/oci/core/models/update_service_gateway_details.py index 1bf85b39ef..fe572d16cc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_subnet_details.py b/src/oci/core/models/update_subnet_details.py index e644d40b79..94da0cd407 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_tunnel_cpe_device_config_details.py b/src/oci/core/models/update_tunnel_cpe_device_config_details.py index 2d46044473..63436b67a6 100644 --- a/src/oci/core/models/update_tunnel_cpe_device_config_details.py +++ b/src/oci/core/models/update_tunnel_cpe_device_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_vcn_details.py b/src/oci/core/models/update_vcn_details.py index 6e152b4865..d99ffa7a76 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_virtual_circuit_details.py b/src/oci/core/models/update_virtual_circuit_details.py index fa45bfcc83..36cced8999 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_vlan_details.py b/src/oci/core/models/update_vlan_details.py index 937b6f14db..6aeac4be8d 100644 --- a/src/oci/core/models/update_vlan_details.py +++ b/src/oci/core/models/update_vlan_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_vnic_details.py b/src/oci/core/models/update_vnic_details.py index a8f5148ca6..0e0cc78c4f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_volume_attachment_details.py b/src/oci/core/models/update_volume_attachment_details.py index 250d695916..595e1aff23 100644 --- a/src/oci/core/models/update_volume_attachment_details.py +++ b/src/oci/core/models/update_volume_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_volume_backup_details.py b/src/oci/core/models/update_volume_backup_details.py index b4c482375c..88ffd809e6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 27d5bfedbf..7c76cb232d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_volume_details.py b/src/oci/core/models/update_volume_details.py index 08e331302a..9ccf924a4f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 bfd47191f6..1648f9ebed 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/update_volume_group_details.py b/src/oci/core/models/update_volume_group_details.py index a91ffdebc8..7826b25221 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 4f57d0f91e..03845d875e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 d99afde8e7..6de9fb09ac 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/upgrade_status.py b/src/oci/core/models/upgrade_status.py index 394b0db498..62fc4e9bd6 100644 --- a/src/oci/core/models/upgrade_status.py +++ b/src/oci/core/models/upgrade_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/vcn.py b/src/oci/core/models/vcn.py index fe589a7cc0..9074b4ce30 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/vcn_dns_resolver_association.py b/src/oci/core/models/vcn_dns_resolver_association.py index 62397cd4b2..49c02facc3 100644 --- a/src/oci/core/models/vcn_dns_resolver_association.py +++ b/src/oci/core/models/vcn_dns_resolver_association.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/vcn_drg_attachment_network_create_details.py b/src/oci/core/models/vcn_drg_attachment_network_create_details.py index e8831a0460..7a83a87798 100644 --- a/src/oci/core/models/vcn_drg_attachment_network_create_details.py +++ b/src/oci/core/models/vcn_drg_attachment_network_create_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .drg_attachment_network_create_details import DrgAttachmentNetworkCreateDetails diff --git a/src/oci/core/models/vcn_drg_attachment_network_details.py b/src/oci/core/models/vcn_drg_attachment_network_details.py index 86bba5de85..887e502110 100644 --- a/src/oci/core/models/vcn_drg_attachment_network_details.py +++ b/src/oci/core/models/vcn_drg_attachment_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .drg_attachment_network_details import DrgAttachmentNetworkDetails diff --git a/src/oci/core/models/vcn_drg_attachment_network_update_details.py b/src/oci/core/models/vcn_drg_attachment_network_update_details.py index 8c8b80dfa7..85c11eb0bb 100644 --- a/src/oci/core/models/vcn_drg_attachment_network_update_details.py +++ b/src/oci/core/models/vcn_drg_attachment_network_update_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .drg_attachment_network_update_details import DrgAttachmentNetworkUpdateDetails diff --git a/src/oci/core/models/vcn_topology.py b/src/oci/core/models/vcn_topology.py index d9c0ac3b59..f89ef88477 100644 --- a/src/oci/core/models/vcn_topology.py +++ b/src/oci/core/models/vcn_topology.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .topology import Topology diff --git a/src/oci/core/models/virtual_circuit.py b/src/oci/core/models/virtual_circuit.py index 647fd2f98b..91afae2bfd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/virtual_circuit_bandwidth_shape.py b/src/oci/core/models/virtual_circuit_bandwidth_shape.py index 1865239971..31349079b0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/virtual_circuit_drg_attachment_network_details.py b/src/oci/core/models/virtual_circuit_drg_attachment_network_details.py index bca80d3f60..9ee786bae2 100644 --- a/src/oci/core/models/virtual_circuit_drg_attachment_network_details.py +++ b/src/oci/core/models/virtual_circuit_drg_attachment_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .drg_attachment_network_details import DrgAttachmentNetworkDetails diff --git a/src/oci/core/models/virtual_circuit_public_prefix.py b/src/oci/core/models/virtual_circuit_public_prefix.py index 1acec33951..9704b791a2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/vlan.py b/src/oci/core/models/vlan.py index 05b544ff06..b96c88c848 100644 --- a/src/oci/core/models/vlan.py +++ b/src/oci/core/models/vlan.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/vnic.py b/src/oci/core/models/vnic.py index 82c2b019ed..2cbe68c83d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/vnic_attachment.py b/src/oci/core/models/vnic_attachment.py index 9f114428f1..ecf17bb02b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/volume.py b/src/oci/core/models/volume.py index 944cedc063..0d41804d76 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/volume_attachment.py b/src/oci/core/models/volume_attachment.py index ce69317c98..7e065e18af 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/volume_backup.py b/src/oci/core/models/volume_backup.py index 86e503c138..3b20f22156 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/volume_backup_policy.py b/src/oci/core/models/volume_backup_policy.py index ca9cc3dfd7..b2258c7f70 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/volume_backup_policy_assignment.py b/src/oci/core/models/volume_backup_policy_assignment.py index 46b8a8e809..571c0e579b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/volume_backup_schedule.py b/src/oci/core/models/volume_backup_schedule.py index e7449446bf..978ba06f2d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/volume_group.py b/src/oci/core/models/volume_group.py index 97bb4ffbbb..8f80591bba 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/volume_group_backup.py b/src/oci/core/models/volume_group_backup.py index 5a976aa5d4..634128dedd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/volume_group_source_details.py b/src/oci/core/models/volume_group_source_details.py index dc7ea5fa12..296d85f24d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 08f85bd912..0e6e35fe48 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .volume_group_source_details import VolumeGroupSourceDetails 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 ea394d97dc..5c14b7d882 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .volume_group_source_details import VolumeGroupSourceDetails 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 75276b84e3..1212f7832f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .volume_group_source_details import VolumeGroupSourceDetails diff --git a/src/oci/core/models/volume_kms_key.py b/src/oci/core/models/volume_kms_key.py index 2848f26571..1ba0369bd7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/volume_source_details.py b/src/oci/core/models/volume_source_details.py index 49b97ab4be..498dc39548 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/core/models/volume_source_from_block_volume_replica_details.py b/src/oci/core/models/volume_source_from_block_volume_replica_details.py index 93600e72d6..16ae5ec3ae 100644 --- a/src/oci/core/models/volume_source_from_block_volume_replica_details.py +++ b/src/oci/core/models/volume_source_from_block_volume_replica_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .volume_source_details import VolumeSourceDetails 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 8b793449d1..ecc2f937c5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .volume_source_details import VolumeSourceDetails 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 8b5d413980..e6b0563e7b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .volume_source_details import VolumeSourceDetails diff --git a/src/oci/core/virtual_network_client.py b/src/oci/core/virtual_network_client.py index e7bb2e3896..ba5c21fa7a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -68,6 +68,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -98,6 +102,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("virtual_network", config, signer, core_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -125,6 +131,10 @@ def add_drg_route_distribution_statements(self, drg_route_distribution_id, add_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgRouteDistributionStatement` :rtype: :class:`~oci.response.Response` @@ -209,6 +219,10 @@ def add_drg_route_rules(self, drg_route_table_id, add_drg_route_rules_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgRouteRule` :rtype: :class:`~oci.response.Response` @@ -220,6 +234,7 @@ def add_drg_route_rules(self, drg_route_table_id, add_drg_route_rules_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -307,6 +322,10 @@ def add_ipv6_vcn_cidr(self, vcn_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -318,6 +337,7 @@ def add_ipv6_vcn_cidr(self, vcn_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -391,6 +411,10 @@ def add_network_security_group_security_rules(self, network_security_group_id, a To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.AddedNetworkSecurityGroupSecurityRules` :rtype: :class:`~oci.response.Response` @@ -481,6 +505,10 @@ def add_public_ip_pool_capacity(self, public_ip_pool_id, add_public_ip_pool_capa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIpPool` :rtype: :class:`~oci.response.Response` @@ -492,6 +520,7 @@ def add_public_ip_pool_capacity(self, public_ip_pool_id, add_public_ip_pool_capa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -589,6 +618,10 @@ def add_vcn_cidr(self, vcn_id, add_vcn_cidr_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -600,6 +633,7 @@ def add_vcn_cidr(self, vcn_id, add_vcn_cidr_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -677,6 +711,10 @@ def advertise_byoip_range(self, byoip_range_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -688,6 +726,7 @@ def advertise_byoip_range(self, byoip_range_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -770,6 +809,10 @@ def attach_service_id(self, service_gateway_id, attach_service_details, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ServiceGateway` :rtype: :class:`~oci.response.Response` @@ -781,6 +824,7 @@ def attach_service_id(self, service_gateway_id, attach_service_details, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -856,6 +900,10 @@ def bulk_add_virtual_circuit_public_prefixes(self, virtual_circuit_id, bulk_add_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -934,6 +982,10 @@ def bulk_delete_virtual_circuit_public_prefixes(self, virtual_circuit_id, bulk_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1024,6 +1076,10 @@ def change_byoip_range_compartment(self, byoip_range_id, change_byoip_range_comp To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1035,6 +1091,7 @@ def change_byoip_range_compartment(self, byoip_range_id, change_byoip_range_comp # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1123,6 +1180,10 @@ def change_cpe_compartment(self, cpe_id, change_cpe_compartment_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1134,6 +1195,7 @@ def change_cpe_compartment(self, cpe_id, change_cpe_compartment_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1222,6 +1284,10 @@ def change_cross_connect_compartment(self, cross_connect_id, change_cross_connec To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1233,6 +1299,7 @@ def change_cross_connect_compartment(self, cross_connect_id, change_cross_connec # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1321,6 +1388,10 @@ def change_cross_connect_group_compartment(self, cross_connect_group_id, change_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1332,6 +1403,7 @@ def change_cross_connect_group_compartment(self, cross_connect_group_id, change_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1420,6 +1492,10 @@ def change_dhcp_options_compartment(self, dhcp_id, change_dhcp_options_compartme To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1431,6 +1507,7 @@ def change_dhcp_options_compartment(self, dhcp_id, change_dhcp_options_compartme # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1519,6 +1596,10 @@ def change_drg_compartment(self, drg_id, change_drg_compartment_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1530,6 +1611,7 @@ def change_drg_compartment(self, drg_id, change_drg_compartment_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1618,6 +1700,10 @@ def change_internet_gateway_compartment(self, ig_id, change_internet_gateway_com To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1629,6 +1715,7 @@ def change_internet_gateway_compartment(self, ig_id, change_internet_gateway_com # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1717,6 +1804,10 @@ def change_ip_sec_connection_compartment(self, ipsc_id, change_ip_sec_connection To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1728,6 +1819,7 @@ def change_ip_sec_connection_compartment(self, ipsc_id, change_ip_sec_connection # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1816,6 +1908,10 @@ def change_local_peering_gateway_compartment(self, local_peering_gateway_id, cha To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1827,6 +1923,7 @@ def change_local_peering_gateway_compartment(self, local_peering_gateway_id, cha # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1915,6 +2012,10 @@ def change_nat_gateway_compartment(self, nat_gateway_id, change_nat_gateway_comp To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1926,6 +2027,7 @@ def change_nat_gateway_compartment(self, nat_gateway_id, change_nat_gateway_comp # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2013,6 +2115,10 @@ def change_network_security_group_compartment(self, network_security_group_id, c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2024,6 +2130,7 @@ def change_network_security_group_compartment(self, network_security_group_id, c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2115,6 +2222,10 @@ def change_public_ip_compartment(self, public_ip_id, change_public_ip_compartmen To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2126,6 +2237,7 @@ def change_public_ip_compartment(self, public_ip_id, change_public_ip_compartmen # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2214,6 +2326,10 @@ def change_public_ip_pool_compartment(self, public_ip_pool_id, change_public_ip_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2225,6 +2341,7 @@ def change_public_ip_pool_compartment(self, public_ip_pool_id, change_public_ip_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2313,6 +2430,10 @@ def change_remote_peering_connection_compartment(self, remote_peering_connection To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2324,6 +2445,7 @@ def change_remote_peering_connection_compartment(self, remote_peering_connection # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2412,6 +2534,10 @@ def change_route_table_compartment(self, rt_id, change_route_table_compartment_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2423,6 +2549,7 @@ def change_route_table_compartment(self, rt_id, change_route_table_compartment_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2511,6 +2638,10 @@ def change_security_list_compartment(self, security_list_id, change_security_lis To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2522,6 +2653,7 @@ def change_security_list_compartment(self, security_list_id, change_security_lis # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2610,6 +2742,10 @@ def change_service_gateway_compartment(self, service_gateway_id, change_service_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2621,6 +2757,7 @@ def change_service_gateway_compartment(self, service_gateway_id, change_service_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2709,6 +2846,10 @@ def change_subnet_compartment(self, subnet_id, change_subnet_compartment_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2720,6 +2861,7 @@ def change_subnet_compartment(self, subnet_id, change_subnet_compartment_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2808,6 +2950,10 @@ def change_vcn_compartment(self, vcn_id, change_vcn_compartment_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2819,6 +2965,7 @@ def change_vcn_compartment(self, vcn_id, change_vcn_compartment_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2907,6 +3054,10 @@ def change_virtual_circuit_compartment(self, virtual_circuit_id, change_virtual_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2918,6 +3069,7 @@ def change_virtual_circuit_compartment(self, virtual_circuit_id, change_virtual_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -3011,6 +3163,10 @@ def change_vlan_compartment(self, vlan_id, change_vlan_compartment_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3022,6 +3178,7 @@ def change_vlan_compartment(self, vlan_id, change_vlan_compartment_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -3106,6 +3263,10 @@ def connect_local_peering_gateways(self, local_peering_gateway_id, connect_local To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3190,6 +3351,10 @@ def connect_remote_peering_connections(self, remote_peering_connection_id, conne To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3271,6 +3436,10 @@ def create_byoip_range(self, create_byoip_range_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ByoipRange` :rtype: :class:`~oci.response.Response` @@ -3282,6 +3451,7 @@ def create_byoip_range(self, create_byoip_range_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -3367,6 +3537,10 @@ def create_cpe(self, create_cpe_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Cpe` :rtype: :class:`~oci.response.Response` @@ -3378,6 +3552,7 @@ def create_cpe(self, create_cpe_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -3464,6 +3639,10 @@ def create_cross_connect(self, create_cross_connect_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CrossConnect` :rtype: :class:`~oci.response.Response` @@ -3475,6 +3654,7 @@ def create_cross_connect(self, create_cross_connect_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -3557,6 +3737,10 @@ def create_cross_connect_group(self, create_cross_connect_group_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CrossConnectGroup` :rtype: :class:`~oci.response.Response` @@ -3568,6 +3752,7 @@ def create_cross_connect_group(self, create_cross_connect_group_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -3646,6 +3831,10 @@ def create_dhcp_options(self, create_dhcp_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DhcpOptions` :rtype: :class:`~oci.response.Response` @@ -3657,6 +3846,7 @@ def create_dhcp_options(self, create_dhcp_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -3736,6 +3926,10 @@ def create_drg(self, create_drg_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Drg` :rtype: :class:`~oci.response.Response` @@ -3747,6 +3941,7 @@ def create_drg(self, create_drg_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -3824,6 +4019,10 @@ def create_drg_attachment(self, create_drg_attachment_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgAttachment` :rtype: :class:`~oci.response.Response` @@ -3835,6 +4034,7 @@ def create_drg_attachment(self, create_drg_attachment_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -3901,6 +4101,10 @@ def create_drg_route_distribution(self, create_drg_route_distribution_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgRouteDistribution` :rtype: :class:`~oci.response.Response` @@ -3912,6 +4116,7 @@ def create_drg_route_distribution(self, create_drg_route_distribution_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -3976,6 +4181,10 @@ def create_drg_route_table(self, create_drg_route_table_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgRouteTable` :rtype: :class:`~oci.response.Response` @@ -3987,6 +4196,7 @@ def create_drg_route_table(self, create_drg_route_table_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -4073,6 +4283,10 @@ def create_internet_gateway(self, create_internet_gateway_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InternetGateway` :rtype: :class:`~oci.response.Response` @@ -4084,6 +4298,7 @@ def create_internet_gateway(self, create_internet_gateway_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -4179,6 +4394,10 @@ def create_ip_sec_connection(self, create_ip_sec_connection_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnection` :rtype: :class:`~oci.response.Response` @@ -4190,6 +4409,7 @@ def create_ip_sec_connection(self, create_ip_sec_connection_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -4257,6 +4477,10 @@ def create_ipv6(self, create_ipv6_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Ipv6` :rtype: :class:`~oci.response.Response` @@ -4268,6 +4492,7 @@ def create_ipv6(self, create_ipv6_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -4333,6 +4558,10 @@ def create_local_peering_gateway(self, create_local_peering_gateway_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.LocalPeeringGateway` :rtype: :class:`~oci.response.Response` @@ -4344,6 +4573,7 @@ def create_local_peering_gateway(self, create_local_peering_gateway_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -4408,6 +4638,10 @@ def create_nat_gateway(self, create_nat_gateway_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.NatGateway` :rtype: :class:`~oci.response.Response` @@ -4419,6 +4653,7 @@ def create_nat_gateway(self, create_nat_gateway_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -4482,6 +4717,10 @@ def create_network_security_group(self, create_network_security_group_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.NetworkSecurityGroup` :rtype: :class:`~oci.response.Response` @@ -4493,6 +4732,7 @@ def create_network_security_group(self, create_network_security_group_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -4560,6 +4800,10 @@ def create_private_ip(self, create_private_ip_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PrivateIp` :rtype: :class:`~oci.response.Response` @@ -4571,6 +4815,7 @@ def create_private_ip(self, create_private_ip_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -4657,6 +4902,10 @@ def create_public_ip(self, create_public_ip_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIp` :rtype: :class:`~oci.response.Response` @@ -4668,6 +4917,7 @@ def create_public_ip(self, create_public_ip_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -4735,6 +4985,10 @@ def create_public_ip_pool(self, create_public_ip_pool_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIpPool` :rtype: :class:`~oci.response.Response` @@ -4746,6 +5000,7 @@ def create_public_ip_pool(self, create_public_ip_pool_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -4811,6 +5066,10 @@ def create_remote_peering_connection(self, create_remote_peering_connection_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.RemotePeeringConnection` :rtype: :class:`~oci.response.Response` @@ -4822,6 +5081,7 @@ def create_remote_peering_connection(self, create_remote_peering_connection_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -4905,6 +5165,10 @@ def create_route_table(self, create_route_table_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.RouteTable` :rtype: :class:`~oci.response.Response` @@ -4916,6 +5180,7 @@ def create_route_table(self, create_route_table_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -4998,6 +5263,10 @@ def create_security_list(self, create_security_list_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.SecurityList` :rtype: :class:`~oci.response.Response` @@ -5009,6 +5278,7 @@ def create_security_list(self, create_security_list_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -5084,6 +5354,10 @@ def create_service_gateway(self, create_service_gateway_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ServiceGateway` :rtype: :class:`~oci.response.Response` @@ -5095,6 +5369,7 @@ def create_service_gateway(self, create_service_gateway_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -5198,6 +5473,10 @@ def create_subnet(self, create_subnet_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Subnet` :rtype: :class:`~oci.response.Response` @@ -5209,6 +5488,7 @@ def create_subnet(self, create_subnet_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -5313,6 +5593,10 @@ def create_vcn(self, create_vcn_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vcn` :rtype: :class:`~oci.response.Response` @@ -5324,6 +5608,7 @@ def create_vcn(self, create_vcn_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -5413,6 +5698,10 @@ def create_virtual_circuit(self, create_virtual_circuit_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VirtualCircuit` :rtype: :class:`~oci.response.Response` @@ -5424,6 +5713,7 @@ def create_virtual_circuit(self, create_virtual_circuit_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -5491,6 +5781,10 @@ def create_vlan(self, create_vlan_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vlan` :rtype: :class:`~oci.response.Response` @@ -5502,6 +5796,7 @@ def create_vlan(self, create_vlan_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -5577,6 +5872,10 @@ def delete_byoip_range(self, byoip_range_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5588,6 +5887,7 @@ def delete_byoip_range(self, byoip_range_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -5662,6 +5962,10 @@ def delete_cpe(self, cpe_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5673,6 +5977,7 @@ def delete_cpe(self, cpe_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -5744,6 +6049,10 @@ def delete_cross_connect(self, cross_connect_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5755,6 +6064,7 @@ def delete_cross_connect(self, cross_connect_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -5827,6 +6137,10 @@ def delete_cross_connect_group(self, cross_connect_group_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5838,6 +6152,7 @@ def delete_cross_connect_group(self, cross_connect_group_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -5912,6 +6227,10 @@ def delete_dhcp_options(self, dhcp_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5923,6 +6242,7 @@ def delete_dhcp_options(self, dhcp_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -5996,6 +6316,10 @@ def delete_drg(self, drg_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6007,6 +6331,7 @@ def delete_drg(self, drg_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -6079,6 +6404,10 @@ def delete_drg_attachment(self, drg_attachment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6090,6 +6419,7 @@ def delete_drg_attachment(self, drg_attachment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -6162,6 +6492,10 @@ def delete_drg_route_distribution(self, drg_route_distribution_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6173,6 +6507,7 @@ def delete_drg_route_distribution(self, drg_route_distribution_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -6243,6 +6578,10 @@ def delete_drg_route_table(self, drg_route_table_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6254,6 +6593,7 @@ def delete_drg_route_table(self, drg_route_table_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -6328,6 +6668,10 @@ def delete_internet_gateway(self, ig_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6339,6 +6683,7 @@ def delete_internet_gateway(self, ig_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -6416,6 +6761,10 @@ def delete_ip_sec_connection(self, ipsc_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6427,6 +6776,7 @@ def delete_ip_sec_connection(self, ipsc_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -6504,6 +6854,10 @@ def delete_ipv6(self, ipv6_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6515,6 +6869,7 @@ def delete_ipv6(self, ipv6_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -6590,6 +6945,10 @@ def delete_local_peering_gateway(self, local_peering_gateway_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6601,6 +6960,7 @@ def delete_local_peering_gateway(self, local_peering_gateway_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -6675,6 +7035,10 @@ def delete_nat_gateway(self, nat_gateway_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6686,6 +7050,7 @@ def delete_nat_gateway(self, nat_gateway_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -6765,6 +7130,10 @@ def delete_network_security_group(self, network_security_group_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6776,6 +7145,7 @@ def delete_network_security_group(self, network_security_group_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -6859,6 +7229,10 @@ def delete_private_ip(self, private_ip_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6870,6 +7244,7 @@ def delete_private_ip(self, private_ip_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -6956,6 +7331,10 @@ def delete_public_ip(self, public_ip_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6967,6 +7346,7 @@ def delete_public_ip(self, public_ip_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -7045,6 +7425,10 @@ def delete_public_ip_pool(self, public_ip_pool_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7056,6 +7440,7 @@ def delete_public_ip_pool(self, public_ip_pool_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -7131,6 +7516,10 @@ def delete_remote_peering_connection(self, remote_peering_connection_id, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7142,6 +7531,7 @@ def delete_remote_peering_connection(self, remote_peering_connection_id, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -7216,6 +7606,10 @@ def delete_route_table(self, rt_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7227,6 +7621,7 @@ def delete_route_table(self, rt_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -7301,6 +7696,10 @@ def delete_security_list(self, security_list_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7312,6 +7711,7 @@ def delete_security_list(self, security_list_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -7383,6 +7783,10 @@ def delete_service_gateway(self, service_gateway_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7394,6 +7798,7 @@ def delete_service_gateway(self, service_gateway_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -7466,6 +7871,10 @@ def delete_subnet(self, subnet_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7477,6 +7886,7 @@ def delete_subnet(self, subnet_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -7549,6 +7959,10 @@ def delete_vcn(self, vcn_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7560,6 +7974,7 @@ def delete_vcn(self, vcn_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -7634,6 +8049,10 @@ def delete_virtual_circuit(self, virtual_circuit_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7645,6 +8064,7 @@ def delete_virtual_circuit(self, virtual_circuit_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -7719,6 +8139,10 @@ def delete_vlan(self, vlan_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7730,6 +8154,7 @@ def delete_vlan(self, vlan_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -7816,6 +8241,10 @@ def detach_service_id(self, service_gateway_id, detach_service_details, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ServiceGateway` :rtype: :class:`~oci.response.Response` @@ -7827,6 +8256,7 @@ def detach_service_id(self, service_gateway_id, detach_service_details, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -7924,6 +8354,10 @@ def get_all_drg_attachments(self, drg_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgAttachmentInfo` :rtype: :class:`~oci.response.Response` @@ -7935,6 +8369,7 @@ def get_all_drg_attachments(self, drg_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -8022,6 +8457,10 @@ def get_allowed_ike_ip_sec_parameters(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.AllowedIkeIPSecParameters` :rtype: :class:`~oci.response.Response` @@ -8033,6 +8472,7 @@ def get_allowed_ike_ip_sec_parameters(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -8094,6 +8534,10 @@ def get_byoip_range(self, byoip_range_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ByoipRange` :rtype: :class:`~oci.response.Response` @@ -8105,6 +8549,7 @@ def get_byoip_range(self, byoip_range_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -8172,6 +8617,10 @@ def get_cpe(self, cpe_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Cpe` :rtype: :class:`~oci.response.Response` @@ -8265,6 +8714,10 @@ def get_cpe_device_config_content(self, cpe_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -8276,6 +8729,7 @@ def get_cpe_device_config_content(self, cpe_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -8355,6 +8809,10 @@ def get_cpe_device_shape(self, cpe_device_shape_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CpeDeviceShapeDetail` :rtype: :class:`~oci.response.Response` @@ -8366,6 +8824,7 @@ def get_cpe_device_shape(self, cpe_device_shape_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -8433,6 +8892,10 @@ def get_cross_connect(self, cross_connect_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CrossConnect` :rtype: :class:`~oci.response.Response` @@ -8505,6 +8968,10 @@ def get_cross_connect_group(self, cross_connect_group_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CrossConnectGroup` :rtype: :class:`~oci.response.Response` @@ -8577,6 +9044,10 @@ def get_cross_connect_letter_of_authority(self, cross_connect_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.LetterOfAuthority` :rtype: :class:`~oci.response.Response` @@ -8649,6 +9120,10 @@ def get_cross_connect_status(self, cross_connect_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CrossConnectStatus` :rtype: :class:`~oci.response.Response` @@ -8721,6 +9196,10 @@ def get_dhcp_options(self, dhcp_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DhcpOptions` :rtype: :class:`~oci.response.Response` @@ -8793,6 +9272,10 @@ def get_drg(self, drg_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Drg` :rtype: :class:`~oci.response.Response` @@ -8865,6 +9348,10 @@ def get_drg_attachment(self, drg_attachment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgAttachment` :rtype: :class:`~oci.response.Response` @@ -8944,6 +9431,10 @@ def get_drg_redundancy_status(self, drg_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgRedundancyStatus` :rtype: :class:`~oci.response.Response` @@ -8955,6 +9446,7 @@ def get_drg_redundancy_status(self, drg_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -9022,6 +9514,10 @@ def get_drg_route_distribution(self, drg_route_distribution_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgRouteDistribution` :rtype: :class:`~oci.response.Response` @@ -9094,6 +9590,10 @@ def get_drg_route_table(self, drg_route_table_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgRouteTable` :rtype: :class:`~oci.response.Response` @@ -9169,6 +9669,10 @@ def get_fast_connect_provider_service(self, provider_service_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.FastConnectProviderService` :rtype: :class:`~oci.response.Response` @@ -9248,6 +9752,10 @@ def get_fast_connect_provider_service_key(self, provider_service_id, provider_se To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.FastConnectProviderServiceKey` :rtype: :class:`~oci.response.Response` @@ -9321,6 +9829,10 @@ def get_internet_gateway(self, ig_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InternetGateway` :rtype: :class:`~oci.response.Response` @@ -9395,6 +9907,10 @@ def get_ip_sec_connection(self, ipsc_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnection` :rtype: :class:`~oci.response.Response` @@ -9470,6 +9986,10 @@ def get_ip_sec_connection_device_config(self, ipsc_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnectionDeviceConfig` :rtype: :class:`~oci.response.Response` @@ -9543,6 +10063,10 @@ def get_ip_sec_connection_device_status(self, ipsc_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnectionDeviceStatus` :rtype: :class:`~oci.response.Response` @@ -9622,6 +10146,10 @@ def get_ip_sec_connection_tunnel(self, ipsc_id, tunnel_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnectionTunnel` :rtype: :class:`~oci.response.Response` @@ -9700,6 +10228,10 @@ def get_ip_sec_connection_tunnel_error(self, ipsc_id, tunnel_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnectionTunnelErrorDetails` :rtype: :class:`~oci.response.Response` @@ -9779,6 +10311,10 @@ def get_ip_sec_connection_tunnel_shared_secret(self, ipsc_id, tunnel_id, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnectionTunnelSharedSecret` :rtype: :class:`~oci.response.Response` @@ -9874,6 +10410,10 @@ def get_ipsec_cpe_device_config_content(self, ipsc_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -9885,6 +10425,7 @@ def get_ipsec_cpe_device_config_content(self, ipsc_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -9962,6 +10503,10 @@ def get_ipv6(self, ipv6_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Ipv6` :rtype: :class:`~oci.response.Response` @@ -9973,6 +10518,7 @@ def get_ipv6(self, ipv6_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -10040,6 +10586,10 @@ def get_local_peering_gateway(self, local_peering_gateway_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.LocalPeeringGateway` :rtype: :class:`~oci.response.Response` @@ -10112,6 +10662,10 @@ def get_nat_gateway(self, nat_gateway_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.NatGateway` :rtype: :class:`~oci.response.Response` @@ -10190,6 +10744,10 @@ def get_network_security_group(self, network_security_group_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.NetworkSecurityGroup` :rtype: :class:`~oci.response.Response` @@ -10294,6 +10852,10 @@ def get_networking_topology(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.NetworkingTopology` :rtype: :class:`~oci.response.Response` @@ -10305,6 +10867,7 @@ def get_networking_topology(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "access_level", "query_compartment_subtree", @@ -10388,6 +10951,10 @@ def get_private_ip(self, private_ip_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PrivateIp` :rtype: :class:`~oci.response.Response` @@ -10474,6 +11041,10 @@ def get_public_ip(self, public_ip_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIp` :rtype: :class:`~oci.response.Response` @@ -10550,6 +11121,10 @@ def get_public_ip_by_ip_address(self, get_public_ip_by_ip_address_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIp` :rtype: :class:`~oci.response.Response` @@ -10624,6 +11199,10 @@ def get_public_ip_by_private_ip_id(self, get_public_ip_by_private_ip_id_details, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIp` :rtype: :class:`~oci.response.Response` @@ -10692,6 +11271,10 @@ def get_public_ip_pool(self, public_ip_pool_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIpPool` :rtype: :class:`~oci.response.Response` @@ -10703,6 +11286,7 @@ def get_public_ip_pool(self, public_ip_pool_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -10770,6 +11354,10 @@ def get_remote_peering_connection(self, remote_peering_connection_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.RemotePeeringConnection` :rtype: :class:`~oci.response.Response` @@ -10842,6 +11430,10 @@ def get_route_table(self, rt_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.RouteTable` :rtype: :class:`~oci.response.Response` @@ -10914,6 +11506,10 @@ def get_security_list(self, security_list_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.SecurityList` :rtype: :class:`~oci.response.Response` @@ -10986,6 +11582,10 @@ def get_service(self, service_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Service` :rtype: :class:`~oci.response.Response` @@ -11058,6 +11658,10 @@ def get_service_gateway(self, service_gateway_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ServiceGateway` :rtype: :class:`~oci.response.Response` @@ -11130,6 +11734,10 @@ def get_subnet(self, subnet_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Subnet` :rtype: :class:`~oci.response.Response` @@ -11239,6 +11847,10 @@ def get_subnet_topology(self, compartment_id, subnet_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.SubnetTopology` :rtype: :class:`~oci.response.Response` @@ -11250,6 +11862,7 @@ def get_subnet_topology(self, compartment_id, subnet_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "access_level", "query_compartment_subtree", @@ -11341,6 +11954,10 @@ def get_tunnel_cpe_device_config(self, ipsc_id, tunnel_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.TunnelCpeDeviceConfig` :rtype: :class:`~oci.response.Response` @@ -11352,6 +11969,7 @@ def get_tunnel_cpe_device_config(self, ipsc_id, tunnel_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -11446,6 +12064,10 @@ def get_tunnel_cpe_device_config_content(self, ipsc_id, tunnel_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -11457,6 +12079,7 @@ def get_tunnel_cpe_device_config_content(self, ipsc_id, tunnel_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -11529,6 +12152,10 @@ def get_upgrade_status(self, drg_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.UpgradeStatus` :rtype: :class:`~oci.response.Response` @@ -11540,6 +12167,7 @@ def get_upgrade_status(self, drg_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -11607,6 +12235,10 @@ def get_vcn(self, vcn_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vcn` :rtype: :class:`~oci.response.Response` @@ -11683,6 +12315,10 @@ def get_vcn_dns_resolver_association(self, vcn_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VcnDnsResolverAssociation` :rtype: :class:`~oci.response.Response` @@ -11694,6 +12330,7 @@ def get_vcn_dns_resolver_association(self, vcn_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -11798,6 +12435,10 @@ def get_vcn_topology(self, compartment_id, vcn_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VcnTopology` :rtype: :class:`~oci.response.Response` @@ -11809,6 +12450,7 @@ def get_vcn_topology(self, compartment_id, vcn_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "access_level", "query_compartment_subtree", @@ -11887,6 +12529,10 @@ def get_virtual_circuit(self, virtual_circuit_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VirtualCircuit` :rtype: :class:`~oci.response.Response` @@ -11963,6 +12609,10 @@ def get_vlan(self, vlan_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vlan` :rtype: :class:`~oci.response.Response` @@ -11974,6 +12624,7 @@ def get_vlan(self, vlan_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -12046,6 +12697,10 @@ def get_vnic(self, vnic_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vnic` :rtype: :class:`~oci.response.Response` @@ -12116,6 +12771,10 @@ def list_allowed_peer_regions_for_remote_peering(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.PeerRegionForRemotePeering` :rtype: :class:`~oci.response.Response` @@ -12197,6 +12856,10 @@ def list_byoip_allocated_ranges(self, byoip_range_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ByoipAllocatedRangeCollection` :rtype: :class:`~oci.response.Response` @@ -12208,6 +12871,7 @@ def list_byoip_allocated_ranges(self, byoip_range_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -12330,6 +12994,10 @@ def list_byoip_ranges(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ByoipRangeCollection` :rtype: :class:`~oci.response.Response` @@ -12341,6 +13009,7 @@ def list_byoip_ranges(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -12458,6 +13127,10 @@ def list_cpe_device_shapes(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.CpeDeviceShapeSummary` :rtype: :class:`~oci.response.Response` @@ -12469,6 +13142,7 @@ def list_cpe_device_shapes(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -12550,6 +13224,10 @@ def list_cpes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Cpe` :rtype: :class:`~oci.response.Response` @@ -12561,6 +13239,7 @@ def list_cpes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -12667,6 +13346,10 @@ def list_cross_connect_groups(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.CrossConnectGroup` :rtype: :class:`~oci.response.Response` @@ -12678,6 +13361,7 @@ def list_cross_connect_groups(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -12787,6 +13471,10 @@ def list_cross_connect_locations(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.CrossConnectLocation` :rtype: :class:`~oci.response.Response` @@ -12798,6 +13486,7 @@ def list_cross_connect_locations(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -12866,6 +13555,10 @@ def list_cross_connect_mappings(self, virtual_circuit_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CrossConnectMappingDetailsCollection` :rtype: :class:`~oci.response.Response` @@ -12877,6 +13570,7 @@ def list_cross_connect_mappings(self, virtual_circuit_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -12995,6 +13689,10 @@ def list_cross_connects(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.CrossConnect` :rtype: :class:`~oci.response.Response` @@ -13006,6 +13704,7 @@ def list_cross_connects(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "cross_connect_group_id", "limit", @@ -13118,6 +13817,10 @@ def list_crossconnect_port_speed_shapes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.CrossConnectPortSpeedShape` :rtype: :class:`~oci.response.Response` @@ -13129,6 +13832,7 @@ def list_crossconnect_port_speed_shapes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -13243,6 +13947,10 @@ def list_dhcp_options(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DhcpOptions` :rtype: :class:`~oci.response.Response` @@ -13254,6 +13962,7 @@ def list_dhcp_options(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "vcn_id", "limit", @@ -13421,6 +14130,10 @@ def list_drg_attachments(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgAttachment` :rtype: :class:`~oci.response.Response` @@ -13432,6 +14145,7 @@ def list_drg_attachments(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "vcn_id", "drg_id", @@ -13568,6 +14282,10 @@ def list_drg_route_distribution_statements(self, drg_route_distribution_id, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgRouteDistributionStatement` :rtype: :class:`~oci.response.Response` @@ -13579,6 +14297,7 @@ def list_drg_route_distribution_statements(self, drg_route_distribution_id, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -13717,6 +14436,10 @@ def list_drg_route_distributions(self, drg_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgRouteDistribution` :rtype: :class:`~oci.response.Response` @@ -13728,6 +14451,7 @@ def list_drg_route_distributions(self, drg_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -13842,6 +14566,10 @@ def list_drg_route_rules(self, drg_route_table_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgRouteRule` :rtype: :class:`~oci.response.Response` @@ -13853,6 +14581,7 @@ def list_drg_route_rules(self, drg_route_table_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -13986,6 +14715,10 @@ def list_drg_route_tables(self, drg_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgRouteTable` :rtype: :class:`~oci.response.Response` @@ -13997,6 +14730,7 @@ def list_drg_route_tables(self, drg_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -14107,6 +14841,10 @@ def list_drgs(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Drg` :rtype: :class:`~oci.response.Response` @@ -14118,6 +14856,7 @@ def list_drgs(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -14206,6 +14945,10 @@ def list_fast_connect_provider_services(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.FastConnectProviderService` :rtype: :class:`~oci.response.Response` @@ -14217,6 +14960,7 @@ def list_fast_connect_provider_services(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -14301,6 +15045,10 @@ def list_fast_connect_provider_virtual_circuit_bandwidth_shapes(self, provider_s To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.VirtualCircuitBandwidthShape` :rtype: :class:`~oci.response.Response` @@ -14312,6 +15060,7 @@ def list_fast_connect_provider_virtual_circuit_bandwidth_shapes(self, provider_s # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -14435,6 +15184,10 @@ def list_internet_gateways(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.InternetGateway` :rtype: :class:`~oci.response.Response` @@ -14446,6 +15199,7 @@ def list_internet_gateways(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "vcn_id", "limit", @@ -14568,6 +15322,10 @@ def list_ip_sec_connection_tunnel_routes(self, ipsc_id, tunnel_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.TunnelRouteSummary` :rtype: :class:`~oci.response.Response` @@ -14579,6 +15337,7 @@ def list_ip_sec_connection_tunnel_routes(self, ipsc_id, tunnel_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -14684,6 +15443,10 @@ def list_ip_sec_connection_tunnel_security_associations(self, ipsc_id, tunnel_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.TunnelSecurityAssociationSummary` :rtype: :class:`~oci.response.Response` @@ -14695,6 +15458,7 @@ def list_ip_sec_connection_tunnel_security_associations(self, ipsc_id, tunnel_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -14786,6 +15550,10 @@ def list_ip_sec_connection_tunnels(self, ipsc_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.IPSecConnectionTunnel` :rtype: :class:`~oci.response.Response` @@ -14797,6 +15565,7 @@ def list_ip_sec_connection_tunnels(self, ipsc_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -14898,6 +15667,10 @@ def list_ip_sec_connections(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.IPSecConnection` :rtype: :class:`~oci.response.Response` @@ -14909,6 +15682,7 @@ def list_ip_sec_connections(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "drg_id", "cpe_id", @@ -15015,6 +15789,10 @@ def list_ipv6s(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Ipv6` :rtype: :class:`~oci.response.Response` @@ -15026,6 +15804,7 @@ def list_ipv6s(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -15119,6 +15898,10 @@ def list_local_peering_gateways(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.LocalPeeringGateway` :rtype: :class:`~oci.response.Response` @@ -15130,6 +15913,7 @@ def list_local_peering_gateways(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -15244,6 +16028,10 @@ def list_nat_gateways(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.NatGateway` :rtype: :class:`~oci.response.Response` @@ -15255,6 +16043,7 @@ def list_nat_gateways(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "vcn_id", "limit", @@ -15382,6 +16171,10 @@ def list_network_security_group_security_rules(self, network_security_group_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.SecurityRule` :rtype: :class:`~oci.response.Response` @@ -15393,6 +16186,7 @@ def list_network_security_group_security_rules(self, network_security_group_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "direction", "limit", @@ -15521,6 +16315,10 @@ def list_network_security_group_vnics(self, network_security_group_id, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.NetworkSecurityGroupVnic` :rtype: :class:`~oci.response.Response` @@ -15532,6 +16330,7 @@ def list_network_security_group_vnics(self, network_security_group_id, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -15678,6 +16477,10 @@ def list_network_security_groups(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.NetworkSecurityGroup` :rtype: :class:`~oci.response.Response` @@ -15689,6 +16492,7 @@ def list_network_security_groups(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "vlan_id", @@ -15835,6 +16639,10 @@ def list_private_ips(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.PrivateIp` :rtype: :class:`~oci.response.Response` @@ -15846,6 +16654,7 @@ def list_private_ips(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -15961,6 +16770,10 @@ def list_public_ip_pools(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIpPoolCollection` :rtype: :class:`~oci.response.Response` @@ -15972,6 +16785,7 @@ def list_public_ip_pools(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -16122,6 +16936,10 @@ def list_public_ips(self, scope, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.PublicIp` :rtype: :class:`~oci.response.Response` @@ -16133,6 +16951,7 @@ def list_public_ips(self, scope, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -16238,6 +17057,10 @@ def list_remote_peering_connections(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.RemotePeeringConnection` :rtype: :class:`~oci.response.Response` @@ -16249,6 +17072,7 @@ def list_remote_peering_connections(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "drg_id", "limit", @@ -16365,6 +17189,10 @@ def list_route_tables(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.RouteTable` :rtype: :class:`~oci.response.Response` @@ -16376,6 +17204,7 @@ def list_route_tables(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -16519,6 +17348,10 @@ def list_security_lists(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.SecurityList` :rtype: :class:`~oci.response.Response` @@ -16530,6 +17363,7 @@ def list_security_lists(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -16670,6 +17504,10 @@ def list_service_gateways(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.ServiceGateway` :rtype: :class:`~oci.response.Response` @@ -16681,6 +17519,7 @@ def list_service_gateways(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "vcn_id", "limit", @@ -16785,6 +17624,10 @@ def list_services(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Service` :rtype: :class:`~oci.response.Response` @@ -16796,6 +17639,7 @@ def list_services(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -16907,6 +17751,10 @@ def list_subnets(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Subnet` :rtype: :class:`~oci.response.Response` @@ -16918,6 +17766,7 @@ def list_subnets(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -17055,6 +17904,10 @@ def list_vcns(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Vcn` :rtype: :class:`~oci.response.Response` @@ -17066,6 +17919,7 @@ def list_vcns(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -17176,6 +18030,10 @@ def list_virtual_circuit_bandwidth_shapes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.VirtualCircuitBandwidthShape` :rtype: :class:`~oci.response.Response` @@ -17187,6 +18045,7 @@ def list_virtual_circuit_bandwidth_shapes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -17259,6 +18118,10 @@ def list_virtual_circuit_public_prefixes(self, virtual_circuit_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.VirtualCircuitPublicPrefix` :rtype: :class:`~oci.response.Response` @@ -17270,6 +18133,7 @@ def list_virtual_circuit_public_prefixes(self, virtual_circuit_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "verification_state" ] @@ -17392,6 +18256,10 @@ def list_virtual_circuits(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.VirtualCircuit` :rtype: :class:`~oci.response.Response` @@ -17403,6 +18271,7 @@ def list_virtual_circuits(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -17547,6 +18416,10 @@ def list_vlans(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Vlan` :rtype: :class:`~oci.response.Response` @@ -17558,6 +18431,7 @@ def list_vlans(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -17682,6 +18556,10 @@ def modify_vcn_cidr(self, vcn_id, modify_vcn_cidr_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -17693,6 +18571,7 @@ def modify_vcn_cidr(self, vcn_id, modify_vcn_cidr_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -17768,6 +18647,10 @@ def remove_drg_route_distribution_statements(self, drg_route_distribution_id, re To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -17843,6 +18726,10 @@ def remove_drg_route_rules(self, drg_route_table_id, remove_drg_route_rules_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -17924,6 +18811,10 @@ def remove_export_drg_route_distribution(self, drg_attachment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgAttachment` :rtype: :class:`~oci.response.Response` @@ -17935,6 +18826,7 @@ def remove_export_drg_route_distribution(self, drg_attachment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -18014,6 +18906,10 @@ def remove_import_drg_route_distribution(self, drg_route_table_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgRouteTable` :rtype: :class:`~oci.response.Response` @@ -18025,6 +18921,7 @@ def remove_import_drg_route_distribution(self, drg_route_table_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -18098,6 +18995,10 @@ def remove_network_security_group_security_rules(self, network_security_group_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -18184,6 +19085,10 @@ def remove_public_ip_pool_capacity(self, public_ip_pool_id, remove_public_ip_poo To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIpPool` :rtype: :class:`~oci.response.Response` @@ -18195,6 +19100,7 @@ def remove_public_ip_pool_capacity(self, public_ip_pool_id, remove_public_ip_poo # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -18290,6 +19196,10 @@ def remove_vcn_cidr(self, vcn_id, remove_vcn_cidr_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -18301,6 +19211,7 @@ def remove_vcn_cidr(self, vcn_id, remove_vcn_cidr_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -18385,6 +19296,10 @@ def update_byoip_range(self, byoip_range_id, update_byoip_range_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ByoipRange` :rtype: :class:`~oci.response.Response` @@ -18396,6 +19311,7 @@ def update_byoip_range(self, byoip_range_id, update_byoip_range_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -18476,6 +19392,10 @@ def update_cpe(self, cpe_id, update_cpe_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Cpe` :rtype: :class:`~oci.response.Response` @@ -18487,6 +19407,7 @@ def update_cpe(self, cpe_id, update_cpe_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -18564,6 +19485,10 @@ def update_cross_connect(self, cross_connect_id, update_cross_connect_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CrossConnect` :rtype: :class:`~oci.response.Response` @@ -18575,6 +19500,7 @@ def update_cross_connect(self, cross_connect_id, update_cross_connect_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -18653,6 +19579,10 @@ def update_cross_connect_group(self, cross_connect_group_id, update_cross_connec To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CrossConnectGroup` :rtype: :class:`~oci.response.Response` @@ -18664,6 +19594,7 @@ def update_cross_connect_group(self, cross_connect_group_id, update_cross_connec # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -18744,6 +19675,10 @@ def update_dhcp_options(self, dhcp_id, update_dhcp_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DhcpOptions` :rtype: :class:`~oci.response.Response` @@ -18755,6 +19690,7 @@ def update_dhcp_options(self, dhcp_id, update_dhcp_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -18832,6 +19768,10 @@ def update_drg(self, drg_id, update_drg_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Drg` :rtype: :class:`~oci.response.Response` @@ -18843,6 +19783,7 @@ def update_drg(self, drg_id, update_drg_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -18921,6 +19862,10 @@ def update_drg_attachment(self, drg_attachment_id, update_drg_attachment_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgAttachment` :rtype: :class:`~oci.response.Response` @@ -18932,6 +19877,7 @@ def update_drg_attachment(self, drg_attachment_id, update_drg_attachment_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -19009,6 +19955,10 @@ def update_drg_route_distribution(self, drg_route_distribution_id, update_drg_ro To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgRouteDistribution` :rtype: :class:`~oci.response.Response` @@ -19020,6 +19970,7 @@ def update_drg_route_distribution(self, drg_route_distribution_id, update_drg_ro # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -19092,6 +20043,10 @@ def update_drg_route_distribution_statements(self, drg_route_distribution_id, up To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgRouteDistributionStatement` :rtype: :class:`~oci.response.Response` @@ -19169,6 +20124,10 @@ def update_drg_route_rules(self, drg_route_table_id, update_drg_route_rules_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgRouteRule` :rtype: :class:`~oci.response.Response` @@ -19251,6 +20210,10 @@ def update_drg_route_table(self, drg_route_table_id, update_drg_route_table_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgRouteTable` :rtype: :class:`~oci.response.Response` @@ -19262,6 +20225,7 @@ def update_drg_route_table(self, drg_route_table_id, update_drg_route_table_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -19343,6 +20307,10 @@ def update_internet_gateway(self, ig_id, update_internet_gateway_details, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InternetGateway` :rtype: :class:`~oci.response.Response` @@ -19354,6 +20322,7 @@ def update_internet_gateway(self, ig_id, update_internet_gateway_details, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -19434,6 +20403,10 @@ def update_ip_sec_connection(self, ipsc_id, update_ip_sec_connection_details, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnection` :rtype: :class:`~oci.response.Response` @@ -19445,6 +20418,7 @@ def update_ip_sec_connection(self, ipsc_id, update_ip_sec_connection_details, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -19542,6 +20516,10 @@ def update_ip_sec_connection_tunnel(self, ipsc_id, tunnel_id, update_ip_sec_conn To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnectionTunnel` :rtype: :class:`~oci.response.Response` @@ -19553,6 +20531,7 @@ def update_ip_sec_connection_tunnel(self, ipsc_id, tunnel_id, update_ip_sec_conn # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -19640,6 +20619,10 @@ def update_ip_sec_connection_tunnel_shared_secret(self, ipsc_id, tunnel_id, upda To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnectionTunnelSharedSecret` :rtype: :class:`~oci.response.Response` @@ -19651,6 +20634,7 @@ def update_ip_sec_connection_tunnel_shared_secret(self, ipsc_id, tunnel_id, upda # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -19741,6 +20725,10 @@ def update_ipv6(self, ipv6_id, update_ipv6_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Ipv6` :rtype: :class:`~oci.response.Response` @@ -19752,6 +20740,7 @@ def update_ipv6(self, ipv6_id, update_ipv6_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -19831,6 +20820,10 @@ def update_local_peering_gateway(self, local_peering_gateway_id, update_local_pe To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.LocalPeeringGateway` :rtype: :class:`~oci.response.Response` @@ -19842,6 +20835,7 @@ def update_local_peering_gateway(self, local_peering_gateway_id, update_local_pe # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -19919,6 +20913,10 @@ def update_nat_gateway(self, nat_gateway_id, update_nat_gateway_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.NatGateway` :rtype: :class:`~oci.response.Response` @@ -19930,6 +20928,7 @@ def update_nat_gateway(self, nat_gateway_id, update_nat_gateway_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -20023,6 +21022,10 @@ def update_network_security_group(self, network_security_group_id, update_networ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.NetworkSecurityGroup` :rtype: :class:`~oci.response.Response` @@ -20034,6 +21037,7 @@ def update_network_security_group(self, network_security_group_id, update_networ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -20107,6 +21111,10 @@ def update_network_security_group_security_rules(self, network_security_group_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.UpdatedNetworkSecurityGroupSecurityRules` :rtype: :class:`~oci.response.Response` @@ -20200,6 +21208,10 @@ def update_private_ip(self, private_ip_id, update_private_ip_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PrivateIp` :rtype: :class:`~oci.response.Response` @@ -20211,6 +21223,7 @@ def update_private_ip(self, private_ip_id, update_private_ip_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -20329,6 +21342,10 @@ def update_public_ip(self, public_ip_id, update_public_ip_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIp` :rtype: :class:`~oci.response.Response` @@ -20340,6 +21357,7 @@ def update_public_ip(self, public_ip_id, update_public_ip_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -20421,6 +21439,10 @@ def update_public_ip_pool(self, public_ip_pool_id, update_public_ip_pool_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIpPool` :rtype: :class:`~oci.response.Response` @@ -20432,6 +21454,7 @@ def update_public_ip_pool(self, public_ip_pool_id, update_public_ip_pool_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -20511,6 +21534,10 @@ def update_remote_peering_connection(self, remote_peering_connection_id, update_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.RemotePeeringConnection` :rtype: :class:`~oci.response.Response` @@ -20522,6 +21549,7 @@ def update_remote_peering_connection(self, remote_peering_connection_id, update_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -20602,6 +21630,10 @@ def update_route_table(self, rt_id, update_route_table_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.RouteTable` :rtype: :class:`~oci.response.Response` @@ -20613,6 +21645,7 @@ def update_route_table(self, rt_id, update_route_table_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -20694,6 +21727,10 @@ def update_security_list(self, security_list_id, update_security_list_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.SecurityList` :rtype: :class:`~oci.response.Response` @@ -20705,6 +21742,7 @@ def update_security_list(self, security_list_id, update_security_list_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -20783,6 +21821,10 @@ def update_service_gateway(self, service_gateway_id, update_service_gateway_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ServiceGateway` :rtype: :class:`~oci.response.Response` @@ -20794,6 +21836,7 @@ def update_service_gateway(self, service_gateway_id, update_service_gateway_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -20871,6 +21914,10 @@ def update_subnet(self, subnet_id, update_subnet_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Subnet` :rtype: :class:`~oci.response.Response` @@ -20882,6 +21929,7 @@ def update_subnet(self, subnet_id, update_subnet_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -20977,6 +22025,10 @@ def update_tunnel_cpe_device_config(self, ipsc_id, tunnel_id, update_tunnel_cpe_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.TunnelCpeDeviceConfig` :rtype: :class:`~oci.response.Response` @@ -20988,6 +22040,7 @@ def update_tunnel_cpe_device_config(self, ipsc_id, tunnel_id, update_tunnel_cpe_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -21071,6 +22124,10 @@ def update_vcn(self, vcn_id, update_vcn_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vcn` :rtype: :class:`~oci.response.Response` @@ -21082,6 +22139,7 @@ def update_vcn(self, vcn_id, update_vcn_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -21184,6 +22242,10 @@ def update_virtual_circuit(self, virtual_circuit_id, update_virtual_circuit_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VirtualCircuit` :rtype: :class:`~oci.response.Response` @@ -21195,6 +22257,7 @@ def update_virtual_circuit(self, virtual_circuit_id, update_virtual_circuit_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -21277,6 +22340,10 @@ def update_vlan(self, vlan_id, update_vlan_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vlan` :rtype: :class:`~oci.response.Response` @@ -21288,6 +22355,7 @@ def update_vlan(self, vlan_id, update_vlan_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -21367,6 +22435,10 @@ def update_vnic(self, vnic_id, update_vnic_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vnic` :rtype: :class:`~oci.response.Response` @@ -21378,6 +22450,7 @@ def update_vnic(self, vnic_id, update_vnic_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -21459,6 +22532,10 @@ def upgrade_drg(self, drg_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -21470,6 +22547,7 @@ def upgrade_drg(self, drg_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -21545,6 +22623,10 @@ def validate_byoip_range(self, byoip_range_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -21556,6 +22638,7 @@ def validate_byoip_range(self, byoip_range_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -21625,6 +22708,10 @@ def withdraw_byoip_range(self, byoip_range_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -21636,6 +22723,7 @@ def withdraw_byoip_range(self, byoip_range_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] diff --git a/src/oci/core/virtual_network_client_composite_operations.py b/src/oci/core/virtual_network_client_composite_operations.py index 2fe13b4bde..351a9a3ef4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/data_catalog/__init__.py b/src/oci/data_catalog/__init__.py index d3df0c1c01..ee8f23cc44 100644 --- a/src/oci/data_catalog/__init__.py +++ b/src/oci/data_catalog/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/data_catalog/data_catalog_client.py b/src/oci/data_catalog/data_catalog_client.py index 5582dcfd8c..b446b13831 100644 --- a/src/oci/data_catalog/data_catalog_client.py +++ b/src/oci/data_catalog/data_catalog_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("data_catalog", config, signer, data_catalog_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -138,6 +144,10 @@ def add_data_selector_patterns(self, catalog_id, data_asset_key, data_selector_p To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.DataAsset` :rtype: :class:`~oci.response.Response` @@ -149,6 +159,7 @@ def add_data_selector_patterns(self, catalog_id, data_asset_key, data_selector_p # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -245,6 +256,10 @@ def associate_custom_property(self, catalog_id, type_key, associate_custom_prope To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Type` :rtype: :class:`~oci.response.Response` @@ -256,6 +271,7 @@ def associate_custom_property(self, catalog_id, type_key, associate_custom_prope # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -349,6 +365,10 @@ def attach_catalog_private_endpoint(self, attach_catalog_private_endpoint_detail To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -360,6 +380,7 @@ def attach_catalog_private_endpoint(self, attach_catalog_private_endpoint_detail # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -443,6 +464,10 @@ def change_catalog_compartment(self, change_catalog_compartment_details, catalog To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -454,6 +479,7 @@ def change_catalog_compartment(self, change_catalog_compartment_details, catalog # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -534,6 +560,10 @@ def change_catalog_private_endpoint_compartment(self, change_catalog_private_end To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -545,6 +575,7 @@ def change_catalog_private_endpoint_compartment(self, change_catalog_private_end # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -625,6 +656,10 @@ def change_metastore_compartment(self, change_metastore_compartment_details, met To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -636,6 +671,7 @@ def change_metastore_compartment(self, change_metastore_compartment_details, met # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -722,6 +758,10 @@ def create_attribute(self, catalog_id, data_asset_key, entity_key, create_attrib To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Attribute` :rtype: :class:`~oci.response.Response` @@ -733,6 +773,7 @@ def create_attribute(self, catalog_id, data_asset_key, entity_key, create_attrib # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -827,6 +868,10 @@ def create_attribute_tag(self, catalog_id, data_asset_key, entity_key, attribute To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.AttributeTag` :rtype: :class:`~oci.response.Response` @@ -838,6 +883,7 @@ def create_attribute_tag(self, catalog_id, data_asset_key, entity_key, attribute # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -922,6 +968,10 @@ def create_catalog(self, create_catalog_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -933,6 +983,7 @@ def create_catalog(self, create_catalog_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -999,6 +1050,10 @@ def create_catalog_private_endpoint(self, create_catalog_private_endpoint_detail To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1010,6 +1065,7 @@ def create_catalog_private_endpoint(self, create_catalog_private_endpoint_detail # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1082,6 +1138,10 @@ def create_connection(self, catalog_id, data_asset_key, create_connection_detail To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Connection` :rtype: :class:`~oci.response.Response` @@ -1093,6 +1153,7 @@ def create_connection(self, catalog_id, data_asset_key, create_connection_detail # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1180,6 +1241,10 @@ def create_custom_property(self, catalog_id, namespace_id, create_custom_propert To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.CustomProperty` :rtype: :class:`~oci.response.Response` @@ -1191,6 +1256,7 @@ def create_custom_property(self, catalog_id, namespace_id, create_custom_propert # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1275,6 +1341,10 @@ def create_data_asset(self, catalog_id, create_data_asset_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.DataAsset` :rtype: :class:`~oci.response.Response` @@ -1286,6 +1356,7 @@ def create_data_asset(self, catalog_id, create_data_asset_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1372,6 +1443,10 @@ def create_data_asset_tag(self, catalog_id, data_asset_key, create_data_asset_ta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.DataAssetTag` :rtype: :class:`~oci.response.Response` @@ -1383,6 +1458,7 @@ def create_data_asset_tag(self, catalog_id, data_asset_key, create_data_asset_ta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1470,6 +1546,10 @@ def create_entity(self, catalog_id, data_asset_key, create_entity_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Entity` :rtype: :class:`~oci.response.Response` @@ -1481,6 +1561,7 @@ def create_entity(self, catalog_id, data_asset_key, create_entity_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1571,6 +1652,10 @@ def create_entity_tag(self, catalog_id, data_asset_key, entity_key, create_entit To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.EntityTag` :rtype: :class:`~oci.response.Response` @@ -1582,6 +1667,7 @@ def create_entity_tag(self, catalog_id, data_asset_key, entity_key, create_entit # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1670,6 +1756,10 @@ def create_folder(self, catalog_id, data_asset_key, create_folder_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Folder` :rtype: :class:`~oci.response.Response` @@ -1681,6 +1771,7 @@ def create_folder(self, catalog_id, data_asset_key, create_folder_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1771,6 +1862,10 @@ def create_folder_tag(self, catalog_id, data_asset_key, folder_key, create_folde To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.FolderTag` :rtype: :class:`~oci.response.Response` @@ -1782,6 +1877,7 @@ def create_folder_tag(self, catalog_id, data_asset_key, folder_key, create_folde # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1867,6 +1963,10 @@ def create_glossary(self, catalog_id, create_glossary_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Glossary` :rtype: :class:`~oci.response.Response` @@ -1878,6 +1978,7 @@ def create_glossary(self, catalog_id, create_glossary_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1961,6 +2062,10 @@ def create_job(self, catalog_id, create_job_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Job` :rtype: :class:`~oci.response.Response` @@ -1972,6 +2077,7 @@ def create_job(self, catalog_id, create_job_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2055,6 +2161,10 @@ def create_job_definition(self, catalog_id, create_job_definition_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.JobDefinition` :rtype: :class:`~oci.response.Response` @@ -2066,6 +2176,7 @@ def create_job_definition(self, catalog_id, create_job_definition_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2152,6 +2263,10 @@ def create_job_execution(self, catalog_id, job_key, create_job_execution_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.JobExecution` :rtype: :class:`~oci.response.Response` @@ -2163,6 +2278,7 @@ def create_job_execution(self, catalog_id, job_key, create_job_execution_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2244,6 +2360,10 @@ def create_metastore(self, create_metastore_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2255,6 +2375,7 @@ def create_metastore(self, create_metastore_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -2324,6 +2445,10 @@ def create_namespace(self, catalog_id, create_namespace_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Namespace` :rtype: :class:`~oci.response.Response` @@ -2335,6 +2460,7 @@ def create_namespace(self, catalog_id, create_namespace_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2418,6 +2544,10 @@ def create_pattern(self, catalog_id, create_pattern_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Pattern` :rtype: :class:`~oci.response.Response` @@ -2429,6 +2559,7 @@ def create_pattern(self, catalog_id, create_pattern_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2515,6 +2646,10 @@ def create_term(self, catalog_id, glossary_key, create_term_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Term` :rtype: :class:`~oci.response.Response` @@ -2526,6 +2661,7 @@ def create_term(self, catalog_id, glossary_key, create_term_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2616,6 +2752,10 @@ def create_term_relationship(self, catalog_id, glossary_key, term_key, create_te To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.TermRelationship` :rtype: :class:`~oci.response.Response` @@ -2627,6 +2767,7 @@ def create_term_relationship(self, catalog_id, glossary_key, term_key, create_te # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2718,6 +2859,10 @@ def delete_attribute(self, catalog_id, data_asset_key, entity_key, attribute_key To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2729,6 +2874,7 @@ def delete_attribute(self, catalog_id, data_asset_key, entity_key, attribute_key # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2819,6 +2965,10 @@ def delete_attribute_tag(self, catalog_id, data_asset_key, entity_key, attribute To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2830,6 +2980,7 @@ def delete_attribute_tag(self, catalog_id, data_asset_key, entity_key, attribute # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2909,6 +3060,10 @@ def delete_catalog(self, catalog_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2920,6 +3075,7 @@ def delete_catalog(self, catalog_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2995,6 +3151,10 @@ def delete_catalog_private_endpoint(self, catalog_private_endpoint_id, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3006,6 +3166,7 @@ def delete_catalog_private_endpoint(self, catalog_private_endpoint_id, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3087,6 +3248,10 @@ def delete_connection(self, catalog_id, data_asset_key, connection_key, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3098,6 +3263,7 @@ def delete_connection(self, catalog_id, data_asset_key, connection_key, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3181,6 +3347,10 @@ def delete_custom_property(self, catalog_id, namespace_id, custom_property_key, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3192,6 +3362,7 @@ def delete_custom_property(self, catalog_id, namespace_id, custom_property_key, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3272,6 +3443,10 @@ def delete_data_asset(self, catalog_id, data_asset_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3283,6 +3458,7 @@ def delete_data_asset(self, catalog_id, data_asset_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3365,6 +3541,10 @@ def delete_data_asset_tag(self, catalog_id, data_asset_key, tag_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3376,6 +3556,7 @@ def delete_data_asset_tag(self, catalog_id, data_asset_key, tag_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3459,6 +3640,10 @@ def delete_entity(self, catalog_id, data_asset_key, entity_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3470,6 +3655,7 @@ def delete_entity(self, catalog_id, data_asset_key, entity_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3556,6 +3742,10 @@ def delete_entity_tag(self, catalog_id, data_asset_key, entity_key, tag_key, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3567,6 +3757,7 @@ def delete_entity_tag(self, catalog_id, data_asset_key, entity_key, tag_key, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3651,6 +3842,10 @@ def delete_folder(self, catalog_id, data_asset_key, folder_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3662,6 +3857,7 @@ def delete_folder(self, catalog_id, data_asset_key, folder_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3748,6 +3944,10 @@ def delete_folder_tag(self, catalog_id, data_asset_key, folder_key, tag_key, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3759,6 +3959,7 @@ def delete_folder_tag(self, catalog_id, data_asset_key, folder_key, tag_key, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3840,6 +4041,10 @@ def delete_glossary(self, catalog_id, glossary_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3851,6 +4056,7 @@ def delete_glossary(self, catalog_id, glossary_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3930,6 +4136,10 @@ def delete_job(self, catalog_id, job_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3941,6 +4151,7 @@ def delete_job(self, catalog_id, job_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -4020,6 +4231,10 @@ def delete_job_definition(self, catalog_id, job_definition_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4031,6 +4246,7 @@ def delete_job_definition(self, catalog_id, job_definition_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -4107,6 +4323,10 @@ def delete_metastore(self, metastore_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4118,6 +4338,7 @@ def delete_metastore(self, metastore_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -4196,6 +4417,10 @@ def delete_namespace(self, catalog_id, namespace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4207,6 +4432,7 @@ def delete_namespace(self, catalog_id, namespace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -4286,6 +4512,10 @@ def delete_pattern(self, catalog_id, pattern_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4297,6 +4527,7 @@ def delete_pattern(self, catalog_id, pattern_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -4379,6 +4610,10 @@ def delete_term(self, catalog_id, glossary_key, term_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4390,6 +4625,7 @@ def delete_term(self, catalog_id, glossary_key, term_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -4476,6 +4712,10 @@ def delete_term_relationship(self, catalog_id, glossary_key, term_key, term_rela To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4487,6 +4727,7 @@ def delete_term_relationship(self, catalog_id, glossary_key, term_key, term_rela # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -4568,6 +4809,10 @@ def detach_catalog_private_endpoint(self, detach_catalog_private_endpoint_detail To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4579,6 +4824,7 @@ def detach_catalog_private_endpoint(self, detach_catalog_private_endpoint_detail # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -4669,6 +4915,10 @@ def disassociate_custom_property(self, catalog_id, type_key, disassociate_custom To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Type` :rtype: :class:`~oci.response.Response` @@ -4680,6 +4930,7 @@ def disassociate_custom_property(self, catalog_id, type_key, disassociate_custom # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -4766,6 +5017,10 @@ def expand_tree_for_glossary(self, catalog_id, glossary_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_catalog.models.GlossaryTreeElement` :rtype: :class:`~oci.response.Response` @@ -4777,6 +5032,7 @@ def expand_tree_for_glossary(self, catalog_id, glossary_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -4864,6 +5120,10 @@ def export_glossary(self, catalog_id, glossary_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type str :rtype: :class:`~oci.response.Response` @@ -4875,6 +5135,7 @@ def export_glossary(self, catalog_id, glossary_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "is_relationship_exported", "opc_request_id", @@ -4972,6 +5233,10 @@ def get_attribute(self, catalog_id, data_asset_key, entity_key, attribute_key, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Attribute` :rtype: :class:`~oci.response.Response` @@ -4983,6 +5248,7 @@ def get_attribute(self, catalog_id, data_asset_key, entity_key, attribute_key, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "is_include_object_relationships", "fields", @@ -5091,6 +5357,10 @@ def get_attribute_tag(self, catalog_id, data_asset_key, entity_key, attribute_ke To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.AttributeTag` :rtype: :class:`~oci.response.Response` @@ -5102,6 +5372,7 @@ def get_attribute_tag(self, catalog_id, data_asset_key, entity_key, attribute_ke # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "opc_request_id" @@ -5192,6 +5463,10 @@ def get_catalog(self, catalog_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Catalog` :rtype: :class:`~oci.response.Response` @@ -5203,6 +5478,7 @@ def get_catalog(self, catalog_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5273,6 +5549,10 @@ def get_catalog_private_endpoint(self, catalog_private_endpoint_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.CatalogPrivateEndpoint` :rtype: :class:`~oci.response.Response` @@ -5284,6 +5564,7 @@ def get_catalog_private_endpoint(self, catalog_private_endpoint_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5365,6 +5646,10 @@ def get_connection(self, catalog_id, data_asset_key, connection_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Connection` :rtype: :class:`~oci.response.Response` @@ -5376,6 +5661,7 @@ def get_connection(self, catalog_id, data_asset_key, connection_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "opc_request_id" @@ -5475,6 +5761,10 @@ def get_custom_property(self, catalog_id, namespace_id, custom_property_key, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.CustomProperty` :rtype: :class:`~oci.response.Response` @@ -5486,6 +5776,7 @@ def get_custom_property(self, catalog_id, namespace_id, custom_property_key, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "opc_request_id" @@ -5582,6 +5873,10 @@ def get_data_asset(self, catalog_id, data_asset_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.DataAsset` :rtype: :class:`~oci.response.Response` @@ -5593,6 +5888,7 @@ def get_data_asset(self, catalog_id, data_asset_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "opc_request_id" @@ -5691,6 +5987,10 @@ def get_data_asset_tag(self, catalog_id, data_asset_key, tag_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.DataAssetTag` :rtype: :class:`~oci.response.Response` @@ -5702,6 +6002,7 @@ def get_data_asset_tag(self, catalog_id, data_asset_key, tag_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "opc_request_id" @@ -5804,6 +6105,10 @@ def get_entity(self, catalog_id, data_asset_key, entity_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Entity` :rtype: :class:`~oci.response.Response` @@ -5815,6 +6120,7 @@ def get_entity(self, catalog_id, data_asset_key, entity_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "is_include_object_relationships", "fields", @@ -5919,6 +6225,10 @@ def get_entity_tag(self, catalog_id, data_asset_key, entity_key, tag_key, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.EntityTag` :rtype: :class:`~oci.response.Response` @@ -5930,6 +6240,7 @@ def get_entity_tag(self, catalog_id, data_asset_key, entity_key, tag_key, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "opc_request_id" @@ -6033,6 +6344,10 @@ def get_folder(self, catalog_id, data_asset_key, folder_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Folder` :rtype: :class:`~oci.response.Response` @@ -6044,6 +6359,7 @@ def get_folder(self, catalog_id, data_asset_key, folder_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "is_include_object_relationships", "fields", @@ -6148,6 +6464,10 @@ def get_folder_tag(self, catalog_id, data_asset_key, folder_key, tag_key, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.FolderTag` :rtype: :class:`~oci.response.Response` @@ -6159,6 +6479,7 @@ def get_folder_tag(self, catalog_id, data_asset_key, folder_key, tag_key, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "opc_request_id" @@ -6256,6 +6577,10 @@ def get_glossary(self, catalog_id, glossary_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Glossary` :rtype: :class:`~oci.response.Response` @@ -6267,6 +6592,7 @@ def get_glossary(self, catalog_id, glossary_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "opc_request_id" @@ -6362,6 +6688,10 @@ def get_job(self, catalog_id, job_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Job` :rtype: :class:`~oci.response.Response` @@ -6373,6 +6703,7 @@ def get_job(self, catalog_id, job_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "opc_request_id" @@ -6468,6 +6799,10 @@ def get_job_definition(self, catalog_id, job_definition_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.JobDefinition` :rtype: :class:`~oci.response.Response` @@ -6479,6 +6814,7 @@ def get_job_definition(self, catalog_id, job_definition_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "opc_request_id" @@ -6577,6 +6913,10 @@ def get_job_execution(self, catalog_id, job_key, job_execution_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.JobExecution` :rtype: :class:`~oci.response.Response` @@ -6588,6 +6928,7 @@ def get_job_execution(self, catalog_id, job_key, job_execution_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "opc_request_id" @@ -6690,6 +7031,10 @@ def get_job_log(self, catalog_id, job_key, job_execution_key, job_log_key, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.JobLog` :rtype: :class:`~oci.response.Response` @@ -6701,6 +7046,7 @@ def get_job_log(self, catalog_id, job_key, job_execution_key, job_log_key, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "opc_request_id" @@ -6804,6 +7150,10 @@ def get_job_metrics(self, catalog_id, job_key, job_execution_key, job_metrics_ke To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.JobMetric` :rtype: :class:`~oci.response.Response` @@ -6815,6 +7165,7 @@ def get_job_metrics(self, catalog_id, job_key, job_execution_key, job_metrics_ke # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "opc_request_id" @@ -6904,6 +7255,10 @@ def get_metastore(self, metastore_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Metastore` :rtype: :class:`~oci.response.Response` @@ -6915,6 +7270,7 @@ def get_metastore(self, metastore_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6993,6 +7349,10 @@ def get_namespace(self, catalog_id, namespace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Namespace` :rtype: :class:`~oci.response.Response` @@ -7004,6 +7364,7 @@ def get_namespace(self, catalog_id, namespace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "opc_request_id" @@ -7099,6 +7460,10 @@ def get_pattern(self, catalog_id, pattern_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Pattern` :rtype: :class:`~oci.response.Response` @@ -7110,6 +7475,7 @@ def get_pattern(self, catalog_id, pattern_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "opc_request_id" @@ -7208,6 +7574,10 @@ def get_term(self, catalog_id, glossary_key, term_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Term` :rtype: :class:`~oci.response.Response` @@ -7219,6 +7589,7 @@ def get_term(self, catalog_id, glossary_key, term_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "opc_request_id" @@ -7321,6 +7692,10 @@ def get_term_relationship(self, catalog_id, glossary_key, term_key, term_relatio To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.TermRelationship` :rtype: :class:`~oci.response.Response` @@ -7332,6 +7707,7 @@ def get_term_relationship(self, catalog_id, glossary_key, term_key, term_relatio # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "opc_request_id" @@ -7429,6 +7805,10 @@ def get_type(self, catalog_id, type_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Type` :rtype: :class:`~oci.response.Response` @@ -7440,6 +7820,7 @@ def get_type(self, catalog_id, type_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "opc_request_id" @@ -7527,6 +7908,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -7538,6 +7923,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -7628,6 +8014,10 @@ def import_connection(self, catalog_id, data_asset_key, import_connection_detail To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Connection` :rtype: :class:`~oci.response.Response` @@ -7639,6 +8029,7 @@ def import_connection(self, catalog_id, data_asset_key, import_connection_detail # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -7736,6 +8127,10 @@ def import_data_asset(self, catalog_id, data_asset_key, import_data_asset_detail To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.ImportDataAssetJobResult` :rtype: :class:`~oci.response.Response` @@ -7747,6 +8142,7 @@ def import_data_asset(self, catalog_id, data_asset_key, import_data_asset_detail # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "is_missing_value_ignored", "opc_request_id", @@ -7853,6 +8249,10 @@ def import_glossary(self, catalog_id, glossary_key, import_glossary_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7864,6 +8264,7 @@ def import_glossary(self, catalog_id, glossary_key, import_glossary_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "is_relationship_imported", "opc_request_id", @@ -7979,6 +8380,10 @@ def list_aggregated_physical_entities(self, catalog_id, data_asset_key, entity_k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.EntityCollection` :rtype: :class:`~oci.response.Response` @@ -7990,6 +8395,7 @@ def list_aggregated_physical_entities(self, catalog_id, data_asset_key, entity_k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "display_name_contains", @@ -8156,6 +8562,10 @@ def list_attribute_tags(self, catalog_id, data_asset_key, entity_key, attribute_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.AttributeTagCollection` :rtype: :class:`~oci.response.Response` @@ -8167,6 +8577,7 @@ def list_attribute_tags(self, catalog_id, data_asset_key, entity_key, attribute_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "lifecycle_state", @@ -8388,6 +8799,10 @@ def list_attributes(self, catalog_id, data_asset_key, entity_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.AttributeCollection` :rtype: :class:`~oci.response.Response` @@ -8399,6 +8814,7 @@ def list_attributes(self, catalog_id, data_asset_key, entity_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "business_name", @@ -8576,6 +8992,10 @@ def list_catalog_private_endpoints(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_catalog.models.CatalogPrivateEndpointSummary` :rtype: :class:`~oci.response.Response` @@ -8587,6 +9007,7 @@ def list_catalog_private_endpoints(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -8709,6 +9130,10 @@ def list_catalogs(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_catalog.models.CatalogSummary` :rtype: :class:`~oci.response.Response` @@ -8720,6 +9145,7 @@ def list_catalogs(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -8882,6 +9308,10 @@ def list_connections(self, catalog_id, data_asset_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.ConnectionCollection` :rtype: :class:`~oci.response.Response` @@ -8893,6 +9323,7 @@ def list_connections(self, catalog_id, data_asset_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "display_name_contains", @@ -9092,6 +9523,10 @@ def list_custom_properties(self, catalog_id, namespace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.CustomPropertyCollection` :rtype: :class:`~oci.response.Response` @@ -9103,6 +9538,7 @@ def list_custom_properties(self, catalog_id, namespace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "display_name_contains", @@ -9299,6 +9735,10 @@ def list_data_asset_tags(self, catalog_id, data_asset_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.DataAssetTagCollection` :rtype: :class:`~oci.response.Response` @@ -9310,6 +9750,7 @@ def list_data_asset_tags(self, catalog_id, data_asset_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "lifecycle_state", @@ -9494,6 +9935,10 @@ def list_data_assets(self, catalog_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.DataAssetCollection` :rtype: :class:`~oci.response.Response` @@ -9505,6 +9950,7 @@ def list_data_assets(self, catalog_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "display_name_contains", @@ -9676,6 +10122,10 @@ def list_derived_logical_entities(self, catalog_id, pattern_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.EntityCollection` :rtype: :class:`~oci.response.Response` @@ -9687,6 +10137,7 @@ def list_derived_logical_entities(self, catalog_id, pattern_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name_contains", "sort_by", @@ -9891,6 +10342,10 @@ def list_entities(self, catalog_id, data_asset_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.EntityCollection` :rtype: :class:`~oci.response.Response` @@ -9902,6 +10357,7 @@ def list_entities(self, catalog_id, data_asset_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "business_name", @@ -10114,6 +10570,10 @@ def list_entity_tags(self, catalog_id, data_asset_key, entity_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.EntityTagCollection` :rtype: :class:`~oci.response.Response` @@ -10125,6 +10585,7 @@ def list_entity_tags(self, catalog_id, data_asset_key, entity_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "lifecycle_state", @@ -10303,6 +10764,10 @@ def list_folder_tags(self, catalog_id, data_asset_key, folder_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.FolderTagCollection` :rtype: :class:`~oci.response.Response` @@ -10314,6 +10779,7 @@ def list_folder_tags(self, catalog_id, data_asset_key, folder_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "lifecycle_state", @@ -10521,6 +10987,10 @@ def list_folders(self, catalog_id, data_asset_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.FolderCollection` :rtype: :class:`~oci.response.Response` @@ -10532,6 +11002,7 @@ def list_folders(self, catalog_id, data_asset_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "business_name", @@ -10733,6 +11204,10 @@ def list_glossaries(self, catalog_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.GlossaryCollection` :rtype: :class:`~oci.response.Response` @@ -10744,6 +11219,7 @@ def list_glossaries(self, catalog_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "display_name_contains", @@ -10945,6 +11421,10 @@ def list_job_definitions(self, catalog_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.JobDefinitionCollection` :rtype: :class:`~oci.response.Response` @@ -10956,6 +11436,7 @@ def list_job_definitions(self, catalog_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "display_name_contains", @@ -11197,6 +11678,10 @@ def list_job_executions(self, catalog_id, job_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.JobExecutionCollection` :rtype: :class:`~oci.response.Response` @@ -11208,6 +11693,7 @@ def list_job_executions(self, catalog_id, job_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "time_created", @@ -11414,6 +11900,10 @@ def list_job_logs(self, catalog_id, job_key, job_execution_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.JobLogCollection` :rtype: :class:`~oci.response.Response` @@ -11425,6 +11915,7 @@ def list_job_logs(self, catalog_id, job_key, job_execution_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "severity", @@ -11626,6 +12117,10 @@ def list_job_metrics(self, catalog_id, job_key, job_execution_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.JobMetricCollection` :rtype: :class:`~oci.response.Response` @@ -11637,6 +12132,7 @@ def list_job_metrics(self, catalog_id, job_key, job_execution_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "display_name_contains", @@ -11864,6 +12360,10 @@ def list_jobs(self, catalog_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.JobCollection` :rtype: :class:`~oci.response.Response` @@ -11875,6 +12375,7 @@ def list_jobs(self, catalog_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "display_name_contains", @@ -12062,6 +12563,10 @@ def list_metastores(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_catalog.models.MetastoreSummary` :rtype: :class:`~oci.response.Response` @@ -12073,6 +12578,7 @@ def list_metastores(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -12221,6 +12727,10 @@ def list_namespaces(self, catalog_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.NamespaceCollection` :rtype: :class:`~oci.response.Response` @@ -12232,6 +12742,7 @@ def list_namespaces(self, catalog_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "display_name_contains", @@ -12411,6 +12922,10 @@ def list_patterns(self, catalog_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.PatternCollection` :rtype: :class:`~oci.response.Response` @@ -12422,6 +12937,7 @@ def list_patterns(self, catalog_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "display_name_contains", @@ -12620,6 +13136,10 @@ def list_rules(self, catalog_id, data_asset_key, entity_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.RuleCollection` :rtype: :class:`~oci.response.Response` @@ -12631,6 +13151,7 @@ def list_rules(self, catalog_id, data_asset_key, entity_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "display_name_contains", @@ -12816,6 +13337,10 @@ def list_tags(self, catalog_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.TermCollection` :rtype: :class:`~oci.response.Response` @@ -12827,6 +13352,7 @@ def list_tags(self, catalog_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "display_name_contains", @@ -12988,6 +13514,10 @@ def list_term_relationships(self, catalog_id, glossary_key, term_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.TermRelationshipCollection` :rtype: :class:`~oci.response.Response` @@ -12999,6 +13529,7 @@ def list_term_relationships(self, catalog_id, glossary_key, term_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "display_name_contains", @@ -13173,6 +13704,10 @@ def list_terms(self, catalog_id, glossary_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.TermCollection` :rtype: :class:`~oci.response.Response` @@ -13184,6 +13719,7 @@ def list_terms(self, catalog_id, glossary_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "display_name_contains", @@ -13365,6 +13901,10 @@ def list_types(self, catalog_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.TypeCollection` :rtype: :class:`~oci.response.Response` @@ -13376,6 +13916,7 @@ def list_types(self, catalog_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "lifecycle_state", @@ -13521,6 +14062,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_catalog.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -13532,6 +14077,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -13646,6 +14192,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_catalog.models.WorkRequestLog` :rtype: :class:`~oci.response.Response` @@ -13657,6 +14207,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -13761,6 +14312,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_catalog.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -13772,6 +14327,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -13857,6 +14413,10 @@ def object_stats(self, catalog_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type str :rtype: :class:`~oci.response.Response` @@ -13868,6 +14428,7 @@ def object_stats(self, catalog_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "sort_by", "sort_order", @@ -13982,6 +14543,10 @@ def parse_connection(self, catalog_id, data_asset_key, parse_connection_details, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_catalog.models.ConnectionAliasSummary` :rtype: :class:`~oci.response.Response` @@ -13993,6 +14558,7 @@ def parse_connection(self, catalog_id, data_asset_key, parse_connection_details, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "connection_key", "opc_request_id", @@ -14086,6 +14652,10 @@ def process_recommendation(self, catalog_id, process_recommendation_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.ProcessRecommendationDetails` :rtype: :class:`~oci.response.Response` @@ -14097,6 +14667,7 @@ def process_recommendation(self, catalog_id, process_recommendation_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -14189,6 +14760,10 @@ def recommendations(self, catalog_id, recommendation_type, source_object_key, so To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.RecommendationCollection` :rtype: :class:`~oci.response.Response` @@ -14200,6 +14775,7 @@ def recommendations(self, catalog_id, recommendation_type, source_object_key, so # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "recommendation_status", "opc_request_id" @@ -14319,6 +14895,10 @@ def remove_data_selector_patterns(self, catalog_id, data_asset_key, data_selecto To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.DataAsset` :rtype: :class:`~oci.response.Response` @@ -14330,6 +14910,7 @@ def remove_data_selector_patterns(self, catalog_id, data_asset_key, data_selecto # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -14441,6 +15022,10 @@ def search_criteria(self, catalog_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.SearchResultCollection` :rtype: :class:`~oci.response.Response` @@ -14452,6 +15037,7 @@ def search_criteria(self, catalog_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "search_criteria_details", "display_name", @@ -14579,6 +15165,10 @@ def suggest_matches(self, catalog_id, input_text, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.SuggestResults` :rtype: :class:`~oci.response.Response` @@ -14590,6 +15180,7 @@ def suggest_matches(self, catalog_id, input_text, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "timeout", "limit", @@ -14689,6 +15280,10 @@ def synchronous_export_data_asset(self, catalog_id, data_asset_key, synchronous_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -14700,6 +15295,7 @@ def synchronous_export_data_asset(self, catalog_id, data_asset_key, synchronous_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -14801,6 +15397,10 @@ def test_connection(self, catalog_id, data_asset_key, connection_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.ValidateConnectionResult` :rtype: :class:`~oci.response.Response` @@ -14812,6 +15412,7 @@ def test_connection(self, catalog_id, data_asset_key, connection_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -14906,6 +15507,10 @@ def update_attribute(self, catalog_id, data_asset_key, entity_key, attribute_key To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Attribute` :rtype: :class:`~oci.response.Response` @@ -14917,6 +15522,7 @@ def update_attribute(self, catalog_id, data_asset_key, entity_key, attribute_key # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -15002,6 +15608,10 @@ def update_catalog(self, catalog_id, update_catalog_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Catalog` :rtype: :class:`~oci.response.Response` @@ -15013,6 +15623,7 @@ def update_catalog(self, catalog_id, update_catalog_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -15095,6 +15706,10 @@ def update_catalog_private_endpoint(self, catalog_private_endpoint_id, update_ca To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -15106,6 +15721,7 @@ def update_catalog_private_endpoint(self, catalog_private_endpoint_id, update_ca # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -15192,6 +15808,10 @@ def update_connection(self, catalog_id, data_asset_key, connection_key, update_c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Connection` :rtype: :class:`~oci.response.Response` @@ -15203,6 +15823,7 @@ def update_connection(self, catalog_id, data_asset_key, connection_key, update_c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -15293,6 +15914,10 @@ def update_custom_property(self, catalog_id, namespace_id, custom_property_key, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.CustomProperty` :rtype: :class:`~oci.response.Response` @@ -15304,6 +15929,7 @@ def update_custom_property(self, catalog_id, namespace_id, custom_property_key, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -15391,6 +16017,10 @@ def update_data_asset(self, catalog_id, data_asset_key, update_data_asset_detail To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.DataAsset` :rtype: :class:`~oci.response.Response` @@ -15402,6 +16032,7 @@ def update_data_asset(self, catalog_id, data_asset_key, update_data_asset_detail # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -15491,6 +16122,10 @@ def update_entity(self, catalog_id, data_asset_key, entity_key, update_entity_de To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Entity` :rtype: :class:`~oci.response.Response` @@ -15502,6 +16137,7 @@ def update_entity(self, catalog_id, data_asset_key, entity_key, update_entity_de # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -15592,6 +16228,10 @@ def update_folder(self, catalog_id, data_asset_key, folder_key, update_folder_de To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Folder` :rtype: :class:`~oci.response.Response` @@ -15603,6 +16243,7 @@ def update_folder(self, catalog_id, data_asset_key, folder_key, update_folder_de # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -15690,6 +16331,10 @@ def update_glossary(self, catalog_id, glossary_key, update_glossary_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Glossary` :rtype: :class:`~oci.response.Response` @@ -15701,6 +16346,7 @@ def update_glossary(self, catalog_id, glossary_key, update_glossary_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -15787,6 +16433,10 @@ def update_job(self, catalog_id, job_key, update_job_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Job` :rtype: :class:`~oci.response.Response` @@ -15798,6 +16448,7 @@ def update_job(self, catalog_id, job_key, update_job_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -15884,6 +16535,10 @@ def update_job_definition(self, catalog_id, job_definition_key, update_job_defin To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.JobDefinition` :rtype: :class:`~oci.response.Response` @@ -15895,6 +16550,7 @@ def update_job_definition(self, catalog_id, job_definition_key, update_job_defin # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -15978,6 +16634,10 @@ def update_metastore(self, metastore_id, update_metastore_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Metastore` :rtype: :class:`~oci.response.Response` @@ -15989,6 +16649,7 @@ def update_metastore(self, metastore_id, update_metastore_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -16074,6 +16735,10 @@ def update_namespace(self, catalog_id, namespace_id, update_namespace_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Namespace` :rtype: :class:`~oci.response.Response` @@ -16085,6 +16750,7 @@ def update_namespace(self, catalog_id, namespace_id, update_namespace_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -16171,6 +16837,10 @@ def update_pattern(self, catalog_id, pattern_key, update_pattern_details, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Pattern` :rtype: :class:`~oci.response.Response` @@ -16182,6 +16852,7 @@ def update_pattern(self, catalog_id, pattern_key, update_pattern_details, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -16271,6 +16942,10 @@ def update_term(self, catalog_id, glossary_key, term_key, update_term_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Term` :rtype: :class:`~oci.response.Response` @@ -16282,6 +16957,7 @@ def update_term(self, catalog_id, glossary_key, term_key, update_term_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -16375,6 +17051,10 @@ def update_term_relationship(self, catalog_id, glossary_key, term_key, term_rela To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.TermRelationship` :rtype: :class:`~oci.response.Response` @@ -16386,6 +17066,7 @@ def update_term_relationship(self, catalog_id, glossary_key, term_key, term_rela # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -16484,6 +17165,10 @@ def upload_credentials(self, catalog_id, data_asset_key, connection_key, upload_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.Connection` :rtype: :class:`~oci.response.Response` @@ -16495,6 +17180,7 @@ def upload_credentials(self, catalog_id, data_asset_key, connection_key, upload_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -16588,6 +17274,10 @@ def users(self, catalog_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type str :rtype: :class:`~oci.response.Response` @@ -16599,6 +17289,7 @@ def users(self, catalog_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "sort_by", "sort_order", @@ -16710,6 +17401,10 @@ def validate_connection(self, catalog_id, data_asset_key, validate_connection_de To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.ValidateConnectionResult` :rtype: :class:`~oci.response.Response` @@ -16721,6 +17416,7 @@ def validate_connection(self, catalog_id, data_asset_key, validate_connection_de # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -16810,6 +17506,10 @@ def validate_pattern(self, catalog_id, pattern_key, validate_pattern_details, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.ValidatePatternResult` :rtype: :class:`~oci.response.Response` @@ -16821,6 +17521,7 @@ def validate_pattern(self, catalog_id, pattern_key, validate_pattern_details, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" diff --git a/src/oci/data_catalog/data_catalog_client_composite_operations.py b/src/oci/data_catalog/data_catalog_client_composite_operations.py index 8fcd42162c..85c8fa21cd 100644 --- a/src/oci/data_catalog/data_catalog_client_composite_operations.py +++ b/src/oci/data_catalog/data_catalog_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/data_catalog/models/__init__.py b/src/oci/data_catalog/models/__init__.py index dc3464ab6c..b38000d585 100644 --- a/src/oci/data_catalog/models/__init__.py +++ b/src/oci/data_catalog/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/data_catalog/models/attach_catalog_private_endpoint_details.py b/src/oci/data_catalog/models/attach_catalog_private_endpoint_details.py index 1f8bddbd55..f68cd8e68c 100644 --- a/src/oci/data_catalog/models/attach_catalog_private_endpoint_details.py +++ b/src/oci/data_catalog/models/attach_catalog_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/attribute.py b/src/oci/data_catalog/models/attribute.py index 7e37001866..f96239e774 100644 --- a/src/oci/data_catalog/models/attribute.py +++ b/src/oci/data_catalog/models/attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/attribute_collection.py b/src/oci/data_catalog/models/attribute_collection.py index eeddcf378b..563876f355 100644 --- a/src/oci/data_catalog/models/attribute_collection.py +++ b/src/oci/data_catalog/models/attribute_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/attribute_summary.py b/src/oci/data_catalog/models/attribute_summary.py index 3e65099aa5..0b9e4895b7 100644 --- a/src/oci/data_catalog/models/attribute_summary.py +++ b/src/oci/data_catalog/models/attribute_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/attribute_tag.py b/src/oci/data_catalog/models/attribute_tag.py index 00c95810e2..645415e606 100644 --- a/src/oci/data_catalog/models/attribute_tag.py +++ b/src/oci/data_catalog/models/attribute_tag.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/attribute_tag_collection.py b/src/oci/data_catalog/models/attribute_tag_collection.py index d340fa1618..3e98767d30 100644 --- a/src/oci/data_catalog/models/attribute_tag_collection.py +++ b/src/oci/data_catalog/models/attribute_tag_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/attribute_tag_summary.py b/src/oci/data_catalog/models/attribute_tag_summary.py index 4dae4a1d40..6ab4bbe805 100644 --- a/src/oci/data_catalog/models/attribute_tag_summary.py +++ b/src/oci/data_catalog/models/attribute_tag_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/base_permissions_summary.py b/src/oci/data_catalog/models/base_permissions_summary.py index 4a51213352..2efd00a00c 100644 --- a/src/oci/data_catalog/models/base_permissions_summary.py +++ b/src/oci/data_catalog/models/base_permissions_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/base_tag.py b/src/oci/data_catalog/models/base_tag.py index 04c312728a..259ac4162e 100644 --- a/src/oci/data_catalog/models/base_tag.py +++ b/src/oci/data_catalog/models/base_tag.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/base_tag_summary.py b/src/oci/data_catalog/models/base_tag_summary.py index 2c7c81c7e9..6027321fbf 100644 --- a/src/oci/data_catalog/models/base_tag_summary.py +++ b/src/oci/data_catalog/models/base_tag_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/catalog.py b/src/oci/data_catalog/models/catalog.py index 5b1bddd00f..77b34a5595 100644 --- a/src/oci/data_catalog/models/catalog.py +++ b/src/oci/data_catalog/models/catalog.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/catalog_permissions_summary.py b/src/oci/data_catalog/models/catalog_permissions_summary.py index 353568bf69..7763d3af78 100644 --- a/src/oci/data_catalog/models/catalog_permissions_summary.py +++ b/src/oci/data_catalog/models/catalog_permissions_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/catalog_private_endpoint.py b/src/oci/data_catalog/models/catalog_private_endpoint.py index 1c858f73b3..8eb5daea3d 100644 --- a/src/oci/data_catalog/models/catalog_private_endpoint.py +++ b/src/oci/data_catalog/models/catalog_private_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/catalog_private_endpoint_summary.py b/src/oci/data_catalog/models/catalog_private_endpoint_summary.py index 16fed04d89..dea382e186 100644 --- a/src/oci/data_catalog/models/catalog_private_endpoint_summary.py +++ b/src/oci/data_catalog/models/catalog_private_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/catalog_summary.py b/src/oci/data_catalog/models/catalog_summary.py index 88d428924e..c62d60e4bb 100644 --- a/src/oci/data_catalog/models/catalog_summary.py +++ b/src/oci/data_catalog/models/catalog_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/change_catalog_compartment_details.py b/src/oci/data_catalog/models/change_catalog_compartment_details.py index 06275805d6..71224cdaea 100644 --- a/src/oci/data_catalog/models/change_catalog_compartment_details.py +++ b/src/oci/data_catalog/models/change_catalog_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/change_catalog_private_endpoint_compartment_details.py b/src/oci/data_catalog/models/change_catalog_private_endpoint_compartment_details.py index dddd3f36e0..659ff0e7f5 100644 --- a/src/oci/data_catalog/models/change_catalog_private_endpoint_compartment_details.py +++ b/src/oci/data_catalog/models/change_catalog_private_endpoint_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/change_metastore_compartment_details.py b/src/oci/data_catalog/models/change_metastore_compartment_details.py index 64c1d0dfc6..a211f74c0b 100644 --- a/src/oci/data_catalog/models/change_metastore_compartment_details.py +++ b/src/oci/data_catalog/models/change_metastore_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/connection.py b/src/oci/data_catalog/models/connection.py index 31955936ef..137c8d7c0e 100644 --- a/src/oci/data_catalog/models/connection.py +++ b/src/oci/data_catalog/models/connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/connection_alias_summary.py b/src/oci/data_catalog/models/connection_alias_summary.py index 5176eb7cd6..344ce104b2 100644 --- a/src/oci/data_catalog/models/connection_alias_summary.py +++ b/src/oci/data_catalog/models/connection_alias_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/connection_collection.py b/src/oci/data_catalog/models/connection_collection.py index 72ee80e6f1..62bb2bdd7f 100644 --- a/src/oci/data_catalog/models/connection_collection.py +++ b/src/oci/data_catalog/models/connection_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/connection_summary.py b/src/oci/data_catalog/models/connection_summary.py index 10bab15ef4..06802dbe4b 100644 --- a/src/oci/data_catalog/models/connection_summary.py +++ b/src/oci/data_catalog/models/connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/create_attribute_details.py b/src/oci/data_catalog/models/create_attribute_details.py index 2edbf5a98e..d66c910402 100644 --- a/src/oci/data_catalog/models/create_attribute_details.py +++ b/src/oci/data_catalog/models/create_attribute_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/create_catalog_details.py b/src/oci/data_catalog/models/create_catalog_details.py index dc525c1bb0..2138a80528 100644 --- a/src/oci/data_catalog/models/create_catalog_details.py +++ b/src/oci/data_catalog/models/create_catalog_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/create_catalog_private_endpoint_details.py b/src/oci/data_catalog/models/create_catalog_private_endpoint_details.py index e18604ba7c..3952ff2438 100644 --- a/src/oci/data_catalog/models/create_catalog_private_endpoint_details.py +++ b/src/oci/data_catalog/models/create_catalog_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/create_connection_details.py b/src/oci/data_catalog/models/create_connection_details.py index d910b0514c..80880d4aa3 100644 --- a/src/oci/data_catalog/models/create_connection_details.py +++ b/src/oci/data_catalog/models/create_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/create_custom_property_details.py b/src/oci/data_catalog/models/create_custom_property_details.py index 730303c736..2231171582 100644 --- a/src/oci/data_catalog/models/create_custom_property_details.py +++ b/src/oci/data_catalog/models/create_custom_property_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/create_data_asset_details.py b/src/oci/data_catalog/models/create_data_asset_details.py index 18da3fb33c..bbe14dd990 100644 --- a/src/oci/data_catalog/models/create_data_asset_details.py +++ b/src/oci/data_catalog/models/create_data_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/create_entity_details.py b/src/oci/data_catalog/models/create_entity_details.py index d8d5f6785f..27b4e5d00a 100644 --- a/src/oci/data_catalog/models/create_entity_details.py +++ b/src/oci/data_catalog/models/create_entity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/create_folder_details.py b/src/oci/data_catalog/models/create_folder_details.py index 27861d3726..7b9486eef8 100644 --- a/src/oci/data_catalog/models/create_folder_details.py +++ b/src/oci/data_catalog/models/create_folder_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/create_glossary_details.py b/src/oci/data_catalog/models/create_glossary_details.py index b15bb9fd73..d7636f0e3f 100644 --- a/src/oci/data_catalog/models/create_glossary_details.py +++ b/src/oci/data_catalog/models/create_glossary_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/create_job_definition_details.py b/src/oci/data_catalog/models/create_job_definition_details.py index c28178678b..bac4a8552c 100644 --- a/src/oci/data_catalog/models/create_job_definition_details.py +++ b/src/oci/data_catalog/models/create_job_definition_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/create_job_details.py b/src/oci/data_catalog/models/create_job_details.py index 10b1b67aa1..2d1b1393e4 100644 --- a/src/oci/data_catalog/models/create_job_details.py +++ b/src/oci/data_catalog/models/create_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/create_job_execution_details.py b/src/oci/data_catalog/models/create_job_execution_details.py index 7fe28695b0..a5478878b4 100644 --- a/src/oci/data_catalog/models/create_job_execution_details.py +++ b/src/oci/data_catalog/models/create_job_execution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/create_metastore_details.py b/src/oci/data_catalog/models/create_metastore_details.py index dad683e13b..1b1e5241aa 100644 --- a/src/oci/data_catalog/models/create_metastore_details.py +++ b/src/oci/data_catalog/models/create_metastore_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/create_namespace_details.py b/src/oci/data_catalog/models/create_namespace_details.py index 0100b757c4..29a3601099 100644 --- a/src/oci/data_catalog/models/create_namespace_details.py +++ b/src/oci/data_catalog/models/create_namespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/create_pattern_details.py b/src/oci/data_catalog/models/create_pattern_details.py index 9031db0917..ac20f7adff 100644 --- a/src/oci/data_catalog/models/create_pattern_details.py +++ b/src/oci/data_catalog/models/create_pattern_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/create_tag_details.py b/src/oci/data_catalog/models/create_tag_details.py index 11c78b499a..cbbdaebd61 100644 --- a/src/oci/data_catalog/models/create_tag_details.py +++ b/src/oci/data_catalog/models/create_tag_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/create_term_details.py b/src/oci/data_catalog/models/create_term_details.py index aab3371821..8556b2fae2 100644 --- a/src/oci/data_catalog/models/create_term_details.py +++ b/src/oci/data_catalog/models/create_term_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/create_term_relationship_details.py b/src/oci/data_catalog/models/create_term_relationship_details.py index ff4ec0b609..4bf9985b85 100644 --- a/src/oci/data_catalog/models/create_term_relationship_details.py +++ b/src/oci/data_catalog/models/create_term_relationship_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/custom_property.py b/src/oci/data_catalog/models/custom_property.py index 408c6e84a4..b70cf99b79 100644 --- a/src/oci/data_catalog/models/custom_property.py +++ b/src/oci/data_catalog/models/custom_property.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/custom_property_collection.py b/src/oci/data_catalog/models/custom_property_collection.py index d5fa538651..2049745541 100644 --- a/src/oci/data_catalog/models/custom_property_collection.py +++ b/src/oci/data_catalog/models/custom_property_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/custom_property_get_usage.py b/src/oci/data_catalog/models/custom_property_get_usage.py index bc9f231c6c..7f2d933466 100644 --- a/src/oci/data_catalog/models/custom_property_get_usage.py +++ b/src/oci/data_catalog/models/custom_property_get_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/custom_property_set_usage.py b/src/oci/data_catalog/models/custom_property_set_usage.py index 239e9b42fb..afff83249b 100644 --- a/src/oci/data_catalog/models/custom_property_set_usage.py +++ b/src/oci/data_catalog/models/custom_property_set_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/custom_property_summary.py b/src/oci/data_catalog/models/custom_property_summary.py index f154645b44..0c56232311 100644 --- a/src/oci/data_catalog/models/custom_property_summary.py +++ b/src/oci/data_catalog/models/custom_property_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/custom_property_type_usage.py b/src/oci/data_catalog/models/custom_property_type_usage.py index 2a0a237ab5..08169da10e 100644 --- a/src/oci/data_catalog/models/custom_property_type_usage.py +++ b/src/oci/data_catalog/models/custom_property_type_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/data_asset.py b/src/oci/data_catalog/models/data_asset.py index d8d39ec693..f4848402bb 100644 --- a/src/oci/data_catalog/models/data_asset.py +++ b/src/oci/data_catalog/models/data_asset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/data_asset_collection.py b/src/oci/data_catalog/models/data_asset_collection.py index f87563c6b8..9bed972145 100644 --- a/src/oci/data_catalog/models/data_asset_collection.py +++ b/src/oci/data_catalog/models/data_asset_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/data_asset_export_scope.py b/src/oci/data_catalog/models/data_asset_export_scope.py index 9cc6c19535..7b2d46ed57 100644 --- a/src/oci/data_catalog/models/data_asset_export_scope.py +++ b/src/oci/data_catalog/models/data_asset_export_scope.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/data_asset_permissions_summary.py b/src/oci/data_catalog/models/data_asset_permissions_summary.py index c4582e1d83..d01e3ed063 100644 --- a/src/oci/data_catalog/models/data_asset_permissions_summary.py +++ b/src/oci/data_catalog/models/data_asset_permissions_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/data_asset_summary.py b/src/oci/data_catalog/models/data_asset_summary.py index e1f677b329..dae0185f0e 100644 --- a/src/oci/data_catalog/models/data_asset_summary.py +++ b/src/oci/data_catalog/models/data_asset_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/data_asset_tag.py b/src/oci/data_catalog/models/data_asset_tag.py index f32451d4bc..c8183f74bb 100644 --- a/src/oci/data_catalog/models/data_asset_tag.py +++ b/src/oci/data_catalog/models/data_asset_tag.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/data_asset_tag_collection.py b/src/oci/data_catalog/models/data_asset_tag_collection.py index 57d24e48ff..5aa8ef3aaf 100644 --- a/src/oci/data_catalog/models/data_asset_tag_collection.py +++ b/src/oci/data_catalog/models/data_asset_tag_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/data_asset_tag_summary.py b/src/oci/data_catalog/models/data_asset_tag_summary.py index 4b8ae383ac..362efa05e6 100644 --- a/src/oci/data_catalog/models/data_asset_tag_summary.py +++ b/src/oci/data_catalog/models/data_asset_tag_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/data_selector_pattern_details.py b/src/oci/data_catalog/models/data_selector_pattern_details.py index 585a4b9ca7..14d255713c 100644 --- a/src/oci/data_catalog/models/data_selector_pattern_details.py +++ b/src/oci/data_catalog/models/data_selector_pattern_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/derived_logical_entities.py b/src/oci/data_catalog/models/derived_logical_entities.py index f44db6dedc..60b63e2593 100644 --- a/src/oci/data_catalog/models/derived_logical_entities.py +++ b/src/oci/data_catalog/models/derived_logical_entities.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/detach_catalog_private_endpoint_details.py b/src/oci/data_catalog/models/detach_catalog_private_endpoint_details.py index e67c33d50a..5625b29c86 100644 --- a/src/oci/data_catalog/models/detach_catalog_private_endpoint_details.py +++ b/src/oci/data_catalog/models/detach_catalog_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/entity.py b/src/oci/data_catalog/models/entity.py index ae4b47f9f9..400a493cdd 100644 --- a/src/oci/data_catalog/models/entity.py +++ b/src/oci/data_catalog/models/entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/entity_collection.py b/src/oci/data_catalog/models/entity_collection.py index 52e8bdadd4..94c1d5e4a6 100644 --- a/src/oci/data_catalog/models/entity_collection.py +++ b/src/oci/data_catalog/models/entity_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/entity_summary.py b/src/oci/data_catalog/models/entity_summary.py index 23afbcb646..de1366a359 100644 --- a/src/oci/data_catalog/models/entity_summary.py +++ b/src/oci/data_catalog/models/entity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/entity_tag.py b/src/oci/data_catalog/models/entity_tag.py index a2afe4d56a..df421ce3f2 100644 --- a/src/oci/data_catalog/models/entity_tag.py +++ b/src/oci/data_catalog/models/entity_tag.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/entity_tag_collection.py b/src/oci/data_catalog/models/entity_tag_collection.py index 6dacb644d2..d66eb2b04c 100644 --- a/src/oci/data_catalog/models/entity_tag_collection.py +++ b/src/oci/data_catalog/models/entity_tag_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/entity_tag_summary.py b/src/oci/data_catalog/models/entity_tag_summary.py index 8db51e8bfa..db48ebcd13 100644 --- a/src/oci/data_catalog/models/entity_tag_summary.py +++ b/src/oci/data_catalog/models/entity_tag_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/event_config.py b/src/oci/data_catalog/models/event_config.py index 6b1d52bc32..e18ed5984a 100644 --- a/src/oci/data_catalog/models/event_config.py +++ b/src/oci/data_catalog/models/event_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/export_data_asset_details.py b/src/oci/data_catalog/models/export_data_asset_details.py index b2f28a9dc9..fc466fdf81 100644 --- a/src/oci/data_catalog/models/export_data_asset_details.py +++ b/src/oci/data_catalog/models/export_data_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/faceted_search_aggregation.py b/src/oci/data_catalog/models/faceted_search_aggregation.py index 5e29bb0145..d554a7ac8c 100644 --- a/src/oci/data_catalog/models/faceted_search_aggregation.py +++ b/src/oci/data_catalog/models/faceted_search_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/faceted_search_custom_property.py b/src/oci/data_catalog/models/faceted_search_custom_property.py index b15bfd9a52..eb5bf0ee7d 100644 --- a/src/oci/data_catalog/models/faceted_search_custom_property.py +++ b/src/oci/data_catalog/models/faceted_search_custom_property.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/faceted_search_date_filter_request.py b/src/oci/data_catalog/models/faceted_search_date_filter_request.py index d947a7ae0a..0a7efff97c 100644 --- a/src/oci/data_catalog/models/faceted_search_date_filter_request.py +++ b/src/oci/data_catalog/models/faceted_search_date_filter_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/faceted_search_filter_request.py b/src/oci/data_catalog/models/faceted_search_filter_request.py index a74847eee5..fd58d3dad4 100644 --- a/src/oci/data_catalog/models/faceted_search_filter_request.py +++ b/src/oci/data_catalog/models/faceted_search_filter_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/faceted_search_sort_request.py b/src/oci/data_catalog/models/faceted_search_sort_request.py index 18f0fafd81..971f9ce280 100644 --- a/src/oci/data_catalog/models/faceted_search_sort_request.py +++ b/src/oci/data_catalog/models/faceted_search_sort_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/faceted_search_string_filter_request.py b/src/oci/data_catalog/models/faceted_search_string_filter_request.py index 855205a63e..6bfd620e26 100644 --- a/src/oci/data_catalog/models/faceted_search_string_filter_request.py +++ b/src/oci/data_catalog/models/faceted_search_string_filter_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/folder.py b/src/oci/data_catalog/models/folder.py index 0312bed61c..6a75918dd5 100644 --- a/src/oci/data_catalog/models/folder.py +++ b/src/oci/data_catalog/models/folder.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/folder_collection.py b/src/oci/data_catalog/models/folder_collection.py index b219b13280..87721b62c3 100644 --- a/src/oci/data_catalog/models/folder_collection.py +++ b/src/oci/data_catalog/models/folder_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/folder_summary.py b/src/oci/data_catalog/models/folder_summary.py index 1f088e7a9a..9b8747d092 100644 --- a/src/oci/data_catalog/models/folder_summary.py +++ b/src/oci/data_catalog/models/folder_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/folder_tag.py b/src/oci/data_catalog/models/folder_tag.py index 4bed1971a7..dc3039f227 100644 --- a/src/oci/data_catalog/models/folder_tag.py +++ b/src/oci/data_catalog/models/folder_tag.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/folder_tag_collection.py b/src/oci/data_catalog/models/folder_tag_collection.py index 8ed629e7cc..748679c0f4 100644 --- a/src/oci/data_catalog/models/folder_tag_collection.py +++ b/src/oci/data_catalog/models/folder_tag_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/folder_tag_summary.py b/src/oci/data_catalog/models/folder_tag_summary.py index f1f95028e2..76afefdb74 100644 --- a/src/oci/data_catalog/models/folder_tag_summary.py +++ b/src/oci/data_catalog/models/folder_tag_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/glossary.py b/src/oci/data_catalog/models/glossary.py index 992e6c9960..323606ccd7 100644 --- a/src/oci/data_catalog/models/glossary.py +++ b/src/oci/data_catalog/models/glossary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/glossary_collection.py b/src/oci/data_catalog/models/glossary_collection.py index aa57b73d57..0ff19fa88f 100644 --- a/src/oci/data_catalog/models/glossary_collection.py +++ b/src/oci/data_catalog/models/glossary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/glossary_permissions_summary.py b/src/oci/data_catalog/models/glossary_permissions_summary.py index 11cc4bb4f9..3ff05ba8ba 100644 --- a/src/oci/data_catalog/models/glossary_permissions_summary.py +++ b/src/oci/data_catalog/models/glossary_permissions_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/glossary_summary.py b/src/oci/data_catalog/models/glossary_summary.py index a1d67a0908..f6808ff591 100644 --- a/src/oci/data_catalog/models/glossary_summary.py +++ b/src/oci/data_catalog/models/glossary_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/glossary_tree_element.py b/src/oci/data_catalog/models/glossary_tree_element.py index 60ace709c8..97b32a1bb7 100644 --- a/src/oci/data_catalog/models/glossary_tree_element.py +++ b/src/oci/data_catalog/models/glossary_tree_element.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/import_connection_details.py b/src/oci/data_catalog/models/import_connection_details.py index f2401ef178..9c58f08181 100644 --- a/src/oci/data_catalog/models/import_connection_details.py +++ b/src/oci/data_catalog/models/import_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/import_data_asset_details.py b/src/oci/data_catalog/models/import_data_asset_details.py index c18f15714c..6a5a3e1fa2 100644 --- a/src/oci/data_catalog/models/import_data_asset_details.py +++ b/src/oci/data_catalog/models/import_data_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/import_data_asset_job_result.py b/src/oci/data_catalog/models/import_data_asset_job_result.py index cdfde90e95..2686bc6ba1 100644 --- a/src/oci/data_catalog/models/import_data_asset_job_result.py +++ b/src/oci/data_catalog/models/import_data_asset_job_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/import_glossary_details.py b/src/oci/data_catalog/models/import_glossary_details.py index 8788c4a878..676a559720 100644 --- a/src/oci/data_catalog/models/import_glossary_details.py +++ b/src/oci/data_catalog/models/import_glossary_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/job.py b/src/oci/data_catalog/models/job.py index 7cf559bf29..44e1dad52c 100644 --- a/src/oci/data_catalog/models/job.py +++ b/src/oci/data_catalog/models/job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/job_collection.py b/src/oci/data_catalog/models/job_collection.py index 82cc1ae482..e5d03d2261 100644 --- a/src/oci/data_catalog/models/job_collection.py +++ b/src/oci/data_catalog/models/job_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/job_definition.py b/src/oci/data_catalog/models/job_definition.py index f1f7fa9649..ee5e9d8873 100644 --- a/src/oci/data_catalog/models/job_definition.py +++ b/src/oci/data_catalog/models/job_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/job_definition_collection.py b/src/oci/data_catalog/models/job_definition_collection.py index 18e81cd656..4c1365d41a 100644 --- a/src/oci/data_catalog/models/job_definition_collection.py +++ b/src/oci/data_catalog/models/job_definition_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/job_definition_permissions_summary.py b/src/oci/data_catalog/models/job_definition_permissions_summary.py index a9ea4be9fd..138a2cc1c2 100644 --- a/src/oci/data_catalog/models/job_definition_permissions_summary.py +++ b/src/oci/data_catalog/models/job_definition_permissions_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/job_definition_scope.py b/src/oci/data_catalog/models/job_definition_scope.py index 3294cd0f21..744525f68a 100644 --- a/src/oci/data_catalog/models/job_definition_scope.py +++ b/src/oci/data_catalog/models/job_definition_scope.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/job_definition_summary.py b/src/oci/data_catalog/models/job_definition_summary.py index d4ee1db7da..1d203d4217 100644 --- a/src/oci/data_catalog/models/job_definition_summary.py +++ b/src/oci/data_catalog/models/job_definition_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/job_execution.py b/src/oci/data_catalog/models/job_execution.py index 2bc8a7fb65..a2dc5b2062 100644 --- a/src/oci/data_catalog/models/job_execution.py +++ b/src/oci/data_catalog/models/job_execution.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/job_execution_collection.py b/src/oci/data_catalog/models/job_execution_collection.py index 1bd574b2e6..c5f6925f56 100644 --- a/src/oci/data_catalog/models/job_execution_collection.py +++ b/src/oci/data_catalog/models/job_execution_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/job_execution_summary.py b/src/oci/data_catalog/models/job_execution_summary.py index 48cf08934c..24720e0705 100644 --- a/src/oci/data_catalog/models/job_execution_summary.py +++ b/src/oci/data_catalog/models/job_execution_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/job_log.py b/src/oci/data_catalog/models/job_log.py index 69ec7c9488..716a09523a 100644 --- a/src/oci/data_catalog/models/job_log.py +++ b/src/oci/data_catalog/models/job_log.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/job_log_collection.py b/src/oci/data_catalog/models/job_log_collection.py index 678b134035..0a2a19fd85 100644 --- a/src/oci/data_catalog/models/job_log_collection.py +++ b/src/oci/data_catalog/models/job_log_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/job_log_summary.py b/src/oci/data_catalog/models/job_log_summary.py index 84be6e4293..735df53200 100644 --- a/src/oci/data_catalog/models/job_log_summary.py +++ b/src/oci/data_catalog/models/job_log_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/job_metric.py b/src/oci/data_catalog/models/job_metric.py index 0c920dfe48..268c570556 100644 --- a/src/oci/data_catalog/models/job_metric.py +++ b/src/oci/data_catalog/models/job_metric.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/job_metric_collection.py b/src/oci/data_catalog/models/job_metric_collection.py index bfd73ff386..c28c6a2012 100644 --- a/src/oci/data_catalog/models/job_metric_collection.py +++ b/src/oci/data_catalog/models/job_metric_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/job_metric_summary.py b/src/oci/data_catalog/models/job_metric_summary.py index 2e52b879ce..936ef2c9da 100644 --- a/src/oci/data_catalog/models/job_metric_summary.py +++ b/src/oci/data_catalog/models/job_metric_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/job_summary.py b/src/oci/data_catalog/models/job_summary.py index 3f4525d1f0..27f4e27009 100644 --- a/src/oci/data_catalog/models/job_summary.py +++ b/src/oci/data_catalog/models/job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/metastore.py b/src/oci/data_catalog/models/metastore.py index 38e6133224..8eaf359625 100644 --- a/src/oci/data_catalog/models/metastore.py +++ b/src/oci/data_catalog/models/metastore.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/metastore_summary.py b/src/oci/data_catalog/models/metastore_summary.py index 789388973e..4bcff5e0c7 100644 --- a/src/oci/data_catalog/models/metastore_summary.py +++ b/src/oci/data_catalog/models/metastore_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/namespace.py b/src/oci/data_catalog/models/namespace.py index 22ece9e988..ca856999d6 100644 --- a/src/oci/data_catalog/models/namespace.py +++ b/src/oci/data_catalog/models/namespace.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/namespace_collection.py b/src/oci/data_catalog/models/namespace_collection.py index 6c70d11e1b..8a1be775ee 100644 --- a/src/oci/data_catalog/models/namespace_collection.py +++ b/src/oci/data_catalog/models/namespace_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/namespace_summary.py b/src/oci/data_catalog/models/namespace_summary.py index 1d3b54dc20..c3de9decd5 100644 --- a/src/oci/data_catalog/models/namespace_summary.py +++ b/src/oci/data_catalog/models/namespace_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/object_relationship.py b/src/oci/data_catalog/models/object_relationship.py index 7fc6945cfd..12b89bee71 100644 --- a/src/oci/data_catalog/models/object_relationship.py +++ b/src/oci/data_catalog/models/object_relationship.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/parse_connection_details.py b/src/oci/data_catalog/models/parse_connection_details.py index 894743388c..9921ca2aaa 100644 --- a/src/oci/data_catalog/models/parse_connection_details.py +++ b/src/oci/data_catalog/models/parse_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/pattern.py b/src/oci/data_catalog/models/pattern.py index 693cf8ffd4..7aedb4833d 100644 --- a/src/oci/data_catalog/models/pattern.py +++ b/src/oci/data_catalog/models/pattern.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/pattern_collection.py b/src/oci/data_catalog/models/pattern_collection.py index 73509a981e..dd7bfea6e2 100644 --- a/src/oci/data_catalog/models/pattern_collection.py +++ b/src/oci/data_catalog/models/pattern_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/pattern_summary.py b/src/oci/data_catalog/models/pattern_summary.py index 395a439caa..9332b2fbba 100644 --- a/src/oci/data_catalog/models/pattern_summary.py +++ b/src/oci/data_catalog/models/pattern_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/process_recommendation_details.py b/src/oci/data_catalog/models/process_recommendation_details.py index f675e64358..61d80c105a 100644 --- a/src/oci/data_catalog/models/process_recommendation_details.py +++ b/src/oci/data_catalog/models/process_recommendation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/property_definition.py b/src/oci/data_catalog/models/property_definition.py index 1215df2c1f..76ffd9c754 100644 --- a/src/oci/data_catalog/models/property_definition.py +++ b/src/oci/data_catalog/models/property_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/recommendation_collection.py b/src/oci/data_catalog/models/recommendation_collection.py index 056d960623..26135e4558 100644 --- a/src/oci/data_catalog/models/recommendation_collection.py +++ b/src/oci/data_catalog/models/recommendation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/recommendation_details.py b/src/oci/data_catalog/models/recommendation_details.py index e502a768fb..6412402dc7 100644 --- a/src/oci/data_catalog/models/recommendation_details.py +++ b/src/oci/data_catalog/models/recommendation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/rule_attribute.py b/src/oci/data_catalog/models/rule_attribute.py index 9481028f29..010e4cf90e 100644 --- a/src/oci/data_catalog/models/rule_attribute.py +++ b/src/oci/data_catalog/models/rule_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/rule_collection.py b/src/oci/data_catalog/models/rule_collection.py index b4e45f0401..85cd50323b 100644 --- a/src/oci/data_catalog/models/rule_collection.py +++ b/src/oci/data_catalog/models/rule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/rule_summary.py b/src/oci/data_catalog/models/rule_summary.py index d9e849d1f2..7b02e0594f 100644 --- a/src/oci/data_catalog/models/rule_summary.py +++ b/src/oci/data_catalog/models/rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/search_criteria.py b/src/oci/data_catalog/models/search_criteria.py index 24c873cfca..0305db23f3 100644 --- a/src/oci/data_catalog/models/search_criteria.py +++ b/src/oci/data_catalog/models/search_criteria.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/search_result.py b/src/oci/data_catalog/models/search_result.py index bf4f866119..5856887fe8 100644 --- a/src/oci/data_catalog/models/search_result.py +++ b/src/oci/data_catalog/models/search_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/search_result_collection.py b/src/oci/data_catalog/models/search_result_collection.py index c349b4790b..8d8b0e717e 100644 --- a/src/oci/data_catalog/models/search_result_collection.py +++ b/src/oci/data_catalog/models/search_result_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/search_tag_summary.py b/src/oci/data_catalog/models/search_tag_summary.py index 53b2226e5c..b3accf1152 100644 --- a/src/oci/data_catalog/models/search_tag_summary.py +++ b/src/oci/data_catalog/models/search_tag_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/search_term_summary.py b/src/oci/data_catalog/models/search_term_summary.py index eed059ad1a..351495a905 100644 --- a/src/oci/data_catalog/models/search_term_summary.py +++ b/src/oci/data_catalog/models/search_term_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/suggest_list_item.py b/src/oci/data_catalog/models/suggest_list_item.py index c051f52456..e125b6826e 100644 --- a/src/oci/data_catalog/models/suggest_list_item.py +++ b/src/oci/data_catalog/models/suggest_list_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/suggest_results.py b/src/oci/data_catalog/models/suggest_results.py index 2837bf7f76..883304384e 100644 --- a/src/oci/data_catalog/models/suggest_results.py +++ b/src/oci/data_catalog/models/suggest_results.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/term.py b/src/oci/data_catalog/models/term.py index bcc841f077..c9520768d6 100644 --- a/src/oci/data_catalog/models/term.py +++ b/src/oci/data_catalog/models/term.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/term_associated_object.py b/src/oci/data_catalog/models/term_associated_object.py index 51ba818215..09736f26cb 100644 --- a/src/oci/data_catalog/models/term_associated_object.py +++ b/src/oci/data_catalog/models/term_associated_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/term_collection.py b/src/oci/data_catalog/models/term_collection.py index cb4ce190ca..12ba74970b 100644 --- a/src/oci/data_catalog/models/term_collection.py +++ b/src/oci/data_catalog/models/term_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/term_relationship.py b/src/oci/data_catalog/models/term_relationship.py index cc051e077e..9eb519784d 100644 --- a/src/oci/data_catalog/models/term_relationship.py +++ b/src/oci/data_catalog/models/term_relationship.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/term_relationship_collection.py b/src/oci/data_catalog/models/term_relationship_collection.py index 42e2ba89b8..d5657b001c 100644 --- a/src/oci/data_catalog/models/term_relationship_collection.py +++ b/src/oci/data_catalog/models/term_relationship_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/term_relationship_summary.py b/src/oci/data_catalog/models/term_relationship_summary.py index 9f091b7474..6a9944ac82 100644 --- a/src/oci/data_catalog/models/term_relationship_summary.py +++ b/src/oci/data_catalog/models/term_relationship_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/term_summary.py b/src/oci/data_catalog/models/term_summary.py index 192b3d59a5..b8ef9e1a1a 100644 --- a/src/oci/data_catalog/models/term_summary.py +++ b/src/oci/data_catalog/models/term_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/type.py b/src/oci/data_catalog/models/type.py index 6cfa17d402..29ad4df9c6 100644 --- a/src/oci/data_catalog/models/type.py +++ b/src/oci/data_catalog/models/type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/type_collection.py b/src/oci/data_catalog/models/type_collection.py index a68bf115fa..1f32b046d4 100644 --- a/src/oci/data_catalog/models/type_collection.py +++ b/src/oci/data_catalog/models/type_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/type_custom_property_details.py b/src/oci/data_catalog/models/type_custom_property_details.py index 889dbad91d..9998b7a621 100644 --- a/src/oci/data_catalog/models/type_custom_property_details.py +++ b/src/oci/data_catalog/models/type_custom_property_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/type_summary.py b/src/oci/data_catalog/models/type_summary.py index b7517d259f..153421ddb4 100644 --- a/src/oci/data_catalog/models/type_summary.py +++ b/src/oci/data_catalog/models/type_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/update_attribute_details.py b/src/oci/data_catalog/models/update_attribute_details.py index 280689ff85..caeb4a6ea3 100644 --- a/src/oci/data_catalog/models/update_attribute_details.py +++ b/src/oci/data_catalog/models/update_attribute_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/update_catalog_details.py b/src/oci/data_catalog/models/update_catalog_details.py index 819e60a411..a4ad51ac36 100644 --- a/src/oci/data_catalog/models/update_catalog_details.py +++ b/src/oci/data_catalog/models/update_catalog_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/update_catalog_private_endpoint_details.py b/src/oci/data_catalog/models/update_catalog_private_endpoint_details.py index 926137bef8..c8a5980d0b 100644 --- a/src/oci/data_catalog/models/update_catalog_private_endpoint_details.py +++ b/src/oci/data_catalog/models/update_catalog_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/update_connection_details.py b/src/oci/data_catalog/models/update_connection_details.py index 57faccf323..e381030b00 100644 --- a/src/oci/data_catalog/models/update_connection_details.py +++ b/src/oci/data_catalog/models/update_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/update_custom_property_details.py b/src/oci/data_catalog/models/update_custom_property_details.py index a32d515cb7..e6df92f0a8 100644 --- a/src/oci/data_catalog/models/update_custom_property_details.py +++ b/src/oci/data_catalog/models/update_custom_property_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/update_data_asset_details.py b/src/oci/data_catalog/models/update_data_asset_details.py index b34f02edf6..28d9cf6b35 100644 --- a/src/oci/data_catalog/models/update_data_asset_details.py +++ b/src/oci/data_catalog/models/update_data_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/update_entity_details.py b/src/oci/data_catalog/models/update_entity_details.py index 5c4fad21d9..2f31d0f171 100644 --- a/src/oci/data_catalog/models/update_entity_details.py +++ b/src/oci/data_catalog/models/update_entity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/update_folder_details.py b/src/oci/data_catalog/models/update_folder_details.py index 4185939ba7..c8b5532b4b 100644 --- a/src/oci/data_catalog/models/update_folder_details.py +++ b/src/oci/data_catalog/models/update_folder_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/update_glossary_details.py b/src/oci/data_catalog/models/update_glossary_details.py index eeac902c8c..bf20de6d48 100644 --- a/src/oci/data_catalog/models/update_glossary_details.py +++ b/src/oci/data_catalog/models/update_glossary_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/update_job_definition_details.py b/src/oci/data_catalog/models/update_job_definition_details.py index 0e31e2c82c..956170e02d 100644 --- a/src/oci/data_catalog/models/update_job_definition_details.py +++ b/src/oci/data_catalog/models/update_job_definition_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/update_job_details.py b/src/oci/data_catalog/models/update_job_details.py index 5c5c5db734..93602b236d 100644 --- a/src/oci/data_catalog/models/update_job_details.py +++ b/src/oci/data_catalog/models/update_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/update_metastore_details.py b/src/oci/data_catalog/models/update_metastore_details.py index 7ae6d3fc49..c5b6130dc8 100644 --- a/src/oci/data_catalog/models/update_metastore_details.py +++ b/src/oci/data_catalog/models/update_metastore_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/update_namespace_details.py b/src/oci/data_catalog/models/update_namespace_details.py index ccae19e7cc..afd161305a 100644 --- a/src/oci/data_catalog/models/update_namespace_details.py +++ b/src/oci/data_catalog/models/update_namespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/update_pattern_details.py b/src/oci/data_catalog/models/update_pattern_details.py index a624203f68..b9addbbabf 100644 --- a/src/oci/data_catalog/models/update_pattern_details.py +++ b/src/oci/data_catalog/models/update_pattern_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/update_term_details.py b/src/oci/data_catalog/models/update_term_details.py index d76dec3c89..fed9ea5758 100644 --- a/src/oci/data_catalog/models/update_term_details.py +++ b/src/oci/data_catalog/models/update_term_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/update_term_relationship_details.py b/src/oci/data_catalog/models/update_term_relationship_details.py index 556d3b06c9..2aac63d308 100644 --- a/src/oci/data_catalog/models/update_term_relationship_details.py +++ b/src/oci/data_catalog/models/update_term_relationship_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/upload_credentials_details.py b/src/oci/data_catalog/models/upload_credentials_details.py index 46a719191a..b8f57d043a 100644 --- a/src/oci/data_catalog/models/upload_credentials_details.py +++ b/src/oci/data_catalog/models/upload_credentials_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/validate_connection_details.py b/src/oci/data_catalog/models/validate_connection_details.py index 415bd1846d..430c829984 100644 --- a/src/oci/data_catalog/models/validate_connection_details.py +++ b/src/oci/data_catalog/models/validate_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/validate_connection_result.py b/src/oci/data_catalog/models/validate_connection_result.py index 87ec009b92..be923679b9 100644 --- a/src/oci/data_catalog/models/validate_connection_result.py +++ b/src/oci/data_catalog/models/validate_connection_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/validate_pattern_details.py b/src/oci/data_catalog/models/validate_pattern_details.py index c3af3a3ff4..f042ed8562 100644 --- a/src/oci/data_catalog/models/validate_pattern_details.py +++ b/src/oci/data_catalog/models/validate_pattern_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/validate_pattern_result.py b/src/oci/data_catalog/models/validate_pattern_result.py index 9d9e5ba596..d294357590 100644 --- a/src/oci/data_catalog/models/validate_pattern_result.py +++ b/src/oci/data_catalog/models/validate_pattern_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/work_request.py b/src/oci/data_catalog/models/work_request.py index c3235146f6..5f1b5a0da7 100644 --- a/src/oci/data_catalog/models/work_request.py +++ b/src/oci/data_catalog/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/work_request_error.py b/src/oci/data_catalog/models/work_request_error.py index b58d429155..b2c337ea71 100644 --- a/src/oci/data_catalog/models/work_request_error.py +++ b/src/oci/data_catalog/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/work_request_log.py b/src/oci/data_catalog/models/work_request_log.py index 6e3d6f0174..8b523ef3a8 100644 --- a/src/oci/data_catalog/models/work_request_log.py +++ b/src/oci/data_catalog/models/work_request_log.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_catalog/models/work_request_resource.py b/src/oci/data_catalog/models/work_request_resource.py index b1afbe262b..5f9e225514 100644 --- a/src/oci/data_catalog/models/work_request_resource.py +++ b/src/oci/data_catalog/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/__init__.py b/src/oci/data_flow/__init__.py index 95b273eccf..6927abbd18 100644 --- a/src/oci/data_flow/__init__.py +++ b/src/oci/data_flow/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/data_flow/data_flow_client.py b/src/oci/data_flow/data_flow_client.py index 17f52a1e1c..c032c192b1 100644 --- a/src/oci/data_flow/data_flow_client.py +++ b/src/oci/data_flow/data_flow_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("data_flow", config, signer, data_flow_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -133,6 +139,10 @@ def change_application_compartment(self, application_id, change_application_comp To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -144,6 +154,7 @@ def change_application_compartment(self, application_id, change_application_comp # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -226,6 +237,10 @@ def change_private_endpoint_compartment(self, private_endpoint_id, change_privat To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -237,6 +252,7 @@ def change_private_endpoint_compartment(self, private_endpoint_id, change_privat # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -325,6 +341,10 @@ def change_run_compartment(self, run_id, change_run_compartment_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -336,6 +356,7 @@ def change_run_compartment(self, run_id, change_run_compartment_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -416,6 +437,10 @@ def create_application(self, create_application_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_flow.models.Application` :rtype: :class:`~oci.response.Response` @@ -427,6 +452,7 @@ def create_application(self, create_application_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -495,6 +521,10 @@ def create_private_endpoint(self, create_private_endpoint_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_flow.models.PrivateEndpoint` :rtype: :class:`~oci.response.Response` @@ -506,6 +536,7 @@ def create_private_endpoint(self, create_private_endpoint_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -574,6 +605,10 @@ def create_run(self, create_run_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_flow.models.Run` :rtype: :class:`~oci.response.Response` @@ -585,6 +620,7 @@ def create_run(self, create_run_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -652,6 +688,10 @@ def delete_application(self, application_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -663,6 +703,7 @@ def delete_application(self, application_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -737,6 +778,10 @@ def delete_private_endpoint(self, private_endpoint_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -748,6 +793,7 @@ def delete_private_endpoint(self, private_endpoint_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -823,6 +869,10 @@ def delete_run(self, run_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -834,6 +884,7 @@ def delete_run(self, run_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -903,6 +954,10 @@ def get_application(self, application_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_flow.models.Application` :rtype: :class:`~oci.response.Response` @@ -914,6 +969,7 @@ def get_application(self, application_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -983,6 +1039,10 @@ def get_private_endpoint(self, private_endpoint_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_flow.models.PrivateEndpoint` :rtype: :class:`~oci.response.Response` @@ -994,6 +1054,7 @@ def get_private_endpoint(self, private_endpoint_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1063,6 +1124,10 @@ def get_run(self, run_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_flow.models.Run` :rtype: :class:`~oci.response.Response` @@ -1074,6 +1139,7 @@ def get_run(self, run_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1146,6 +1212,10 @@ def get_run_log(self, run_id, name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -1157,6 +1227,7 @@ def get_run_log(self, run_id, name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1227,6 +1298,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_flow.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -1238,6 +1313,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1336,6 +1412,10 @@ def list_applications(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_flow.models.ApplicationSummary` :rtype: :class:`~oci.response.Response` @@ -1347,6 +1427,7 @@ def list_applications(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -1472,6 +1553,10 @@ def list_private_endpoints(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_flow.models.PrivateEndpointCollection` :rtype: :class:`~oci.response.Response` @@ -1483,6 +1568,7 @@ def list_private_endpoints(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -1591,6 +1677,10 @@ def list_run_logs(self, run_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_flow.models.RunLogSummary` :rtype: :class:`~oci.response.Response` @@ -1602,6 +1692,7 @@ def list_run_logs(self, run_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -1718,6 +1809,10 @@ def list_runs(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_flow.models.RunSummary` :rtype: :class:`~oci.response.Response` @@ -1729,6 +1824,7 @@ def list_runs(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "application_id", @@ -1841,6 +1937,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_flow.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -1852,6 +1952,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "opc_request_id", @@ -1938,6 +2039,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_flow.models.WorkRequestLogCollection` :rtype: :class:`~oci.response.Response` @@ -1949,6 +2054,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "opc_request_id", @@ -2035,6 +2141,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_flow.models.WorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -2046,6 +2156,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "opc_request_id", @@ -2122,6 +2233,10 @@ def update_application(self, update_application_details, application_id, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_flow.models.Application` :rtype: :class:`~oci.response.Response` @@ -2133,6 +2248,7 @@ def update_application(self, update_application_details, application_id, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -2216,6 +2332,10 @@ def update_private_endpoint(self, update_private_endpoint_details, private_endpo To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2227,6 +2347,7 @@ def update_private_endpoint(self, update_private_endpoint_details, private_endpo # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -2306,6 +2427,10 @@ def update_run(self, update_run_details, run_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_flow.models.Run` :rtype: :class:`~oci.response.Response` @@ -2317,6 +2442,7 @@ def update_run(self, update_run_details, run_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" diff --git a/src/oci/data_flow/data_flow_client_composite_operations.py b/src/oci/data_flow/data_flow_client_composite_operations.py index 57b8d2758e..254b924276 100644 --- a/src/oci/data_flow/data_flow_client_composite_operations.py +++ b/src/oci/data_flow/data_flow_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/data_flow/models/__init__.py b/src/oci/data_flow/models/__init__.py index eead8a0615..6d76379365 100644 --- a/src/oci/data_flow/models/__init__.py +++ b/src/oci/data_flow/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/data_flow/models/application.py b/src/oci/data_flow/models/application.py index 1ce61e0e6f..026c87786f 100644 --- a/src/oci/data_flow/models/application.py +++ b/src/oci/data_flow/models/application.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/application_parameter.py b/src/oci/data_flow/models/application_parameter.py index d6226ec07a..975af26b6b 100644 --- a/src/oci/data_flow/models/application_parameter.py +++ b/src/oci/data_flow/models/application_parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/application_summary.py b/src/oci/data_flow/models/application_summary.py index 41b66e3c6e..7a292faab7 100644 --- a/src/oci/data_flow/models/application_summary.py +++ b/src/oci/data_flow/models/application_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/change_application_compartment_details.py b/src/oci/data_flow/models/change_application_compartment_details.py index 88072f7030..76b5f73469 100644 --- a/src/oci/data_flow/models/change_application_compartment_details.py +++ b/src/oci/data_flow/models/change_application_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/change_private_endpoint_compartment_details.py b/src/oci/data_flow/models/change_private_endpoint_compartment_details.py index a01387d097..bba5b30995 100644 --- a/src/oci/data_flow/models/change_private_endpoint_compartment_details.py +++ b/src/oci/data_flow/models/change_private_endpoint_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/change_run_compartment_details.py b/src/oci/data_flow/models/change_run_compartment_details.py index 73e9f5711c..cc0ad9f26e 100644 --- a/src/oci/data_flow/models/change_run_compartment_details.py +++ b/src/oci/data_flow/models/change_run_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/create_application_details.py b/src/oci/data_flow/models/create_application_details.py index 2f7a10722f..9bd897fa7d 100644 --- a/src/oci/data_flow/models/create_application_details.py +++ b/src/oci/data_flow/models/create_application_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/create_private_endpoint_details.py b/src/oci/data_flow/models/create_private_endpoint_details.py index 44adf83d46..d1f3bb8b8b 100644 --- a/src/oci/data_flow/models/create_private_endpoint_details.py +++ b/src/oci/data_flow/models/create_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/create_run_details.py b/src/oci/data_flow/models/create_run_details.py index 660891e74f..a2f406222e 100644 --- a/src/oci/data_flow/models/create_run_details.py +++ b/src/oci/data_flow/models/create_run_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/private_endpoint.py b/src/oci/data_flow/models/private_endpoint.py index 7c497bc5e5..92731ab0ec 100644 --- a/src/oci/data_flow/models/private_endpoint.py +++ b/src/oci/data_flow/models/private_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/private_endpoint_collection.py b/src/oci/data_flow/models/private_endpoint_collection.py index 4ea6979d1d..06c38a1f68 100644 --- a/src/oci/data_flow/models/private_endpoint_collection.py +++ b/src/oci/data_flow/models/private_endpoint_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/private_endpoint_summary.py b/src/oci/data_flow/models/private_endpoint_summary.py index 5967588209..cd8b110421 100644 --- a/src/oci/data_flow/models/private_endpoint_summary.py +++ b/src/oci/data_flow/models/private_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/run.py b/src/oci/data_flow/models/run.py index ef4ef6aed1..312e369054 100644 --- a/src/oci/data_flow/models/run.py +++ b/src/oci/data_flow/models/run.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/run_log_summary.py b/src/oci/data_flow/models/run_log_summary.py index 8364541adc..607da65f0a 100644 --- a/src/oci/data_flow/models/run_log_summary.py +++ b/src/oci/data_flow/models/run_log_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/run_summary.py b/src/oci/data_flow/models/run_summary.py index 623242e625..74c1bbf96c 100644 --- a/src/oci/data_flow/models/run_summary.py +++ b/src/oci/data_flow/models/run_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/update_application_details.py b/src/oci/data_flow/models/update_application_details.py index a75875f876..116ff223f5 100644 --- a/src/oci/data_flow/models/update_application_details.py +++ b/src/oci/data_flow/models/update_application_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/update_private_endpoint_details.py b/src/oci/data_flow/models/update_private_endpoint_details.py index 8e66ad0870..c3c1679ba0 100644 --- a/src/oci/data_flow/models/update_private_endpoint_details.py +++ b/src/oci/data_flow/models/update_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/update_run_details.py b/src/oci/data_flow/models/update_run_details.py index ff71d238a2..b8ec507bef 100644 --- a/src/oci/data_flow/models/update_run_details.py +++ b/src/oci/data_flow/models/update_run_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/work_request.py b/src/oci/data_flow/models/work_request.py index 01d5253e10..262335b1f9 100644 --- a/src/oci/data_flow/models/work_request.py +++ b/src/oci/data_flow/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/work_request_collection.py b/src/oci/data_flow/models/work_request_collection.py index 060fe0f822..b19e3de62b 100644 --- a/src/oci/data_flow/models/work_request_collection.py +++ b/src/oci/data_flow/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/work_request_error.py b/src/oci/data_flow/models/work_request_error.py index aab6e1719b..40a16a286d 100644 --- a/src/oci/data_flow/models/work_request_error.py +++ b/src/oci/data_flow/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/work_request_error_collection.py b/src/oci/data_flow/models/work_request_error_collection.py index a2ac2526c9..2322ebd2f9 100644 --- a/src/oci/data_flow/models/work_request_error_collection.py +++ b/src/oci/data_flow/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/work_request_log.py b/src/oci/data_flow/models/work_request_log.py index 9bb4f95d26..1fb48d8a67 100644 --- a/src/oci/data_flow/models/work_request_log.py +++ b/src/oci/data_flow/models/work_request_log.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/work_request_log_collection.py b/src/oci/data_flow/models/work_request_log_collection.py index b6f026c358..bf7ca6b6ec 100644 --- a/src/oci/data_flow/models/work_request_log_collection.py +++ b/src/oci/data_flow/models/work_request_log_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/work_request_resource.py b/src/oci/data_flow/models/work_request_resource.py index b4cc1074d3..ddf169e8bb 100644 --- a/src/oci/data_flow/models/work_request_resource.py +++ b/src/oci/data_flow/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_flow/models/work_request_summary.py b/src/oci/data_flow/models/work_request_summary.py index 1915e7e9f0..e8aeb2a0d0 100644 --- a/src/oci/data_flow/models/work_request_summary.py +++ b/src/oci/data_flow/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/__init__.py b/src/oci/data_integration/__init__.py index b03441f409..10c78b00a1 100644 --- a/src/oci/data_integration/__init__.py +++ b/src/oci/data_integration/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/data_integration/data_integration_client.py b/src/oci/data_integration/data_integration_client.py index 25591526bd..89576be24e 100644 --- a/src/oci/data_integration/data_integration_client.py +++ b/src/oci/data_integration/data_integration_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("data_integration", config, signer, data_integration_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -130,6 +136,10 @@ def change_compartment(self, workspace_id, change_compartment_details, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -141,6 +151,7 @@ def change_compartment(self, workspace_id, change_compartment_details, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -222,6 +233,10 @@ def create_application(self, workspace_id, create_application_details, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Application` :rtype: :class:`~oci.response.Response` @@ -233,6 +248,7 @@ def create_application(self, workspace_id, create_application_details, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -314,6 +330,10 @@ def create_connection(self, workspace_id, create_connection_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Connection` :rtype: :class:`~oci.response.Response` @@ -325,6 +345,7 @@ def create_connection(self, workspace_id, create_connection_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -406,6 +427,10 @@ def create_connection_validation(self, workspace_id, create_connection_validatio To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.ConnectionValidation` :rtype: :class:`~oci.response.Response` @@ -417,6 +442,7 @@ def create_connection_validation(self, workspace_id, create_connection_validatio # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -498,6 +524,10 @@ def create_data_asset(self, workspace_id, create_data_asset_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.DataAsset` :rtype: :class:`~oci.response.Response` @@ -509,6 +539,7 @@ def create_data_asset(self, workspace_id, create_data_asset_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -590,6 +621,10 @@ def create_data_flow(self, workspace_id, create_data_flow_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.DataFlow` :rtype: :class:`~oci.response.Response` @@ -601,6 +636,7 @@ def create_data_flow(self, workspace_id, create_data_flow_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -682,6 +718,10 @@ def create_data_flow_validation(self, workspace_id, create_data_flow_validation_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.DataFlowValidation` :rtype: :class:`~oci.response.Response` @@ -693,6 +733,7 @@ def create_data_flow_validation(self, workspace_id, create_data_flow_validation_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -785,6 +826,10 @@ def create_entity_shape(self, workspace_id, connection_key, schema_resource_name To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.EntityShape` :rtype: :class:`~oci.response.Response` @@ -796,6 +841,7 @@ def create_entity_shape(self, workspace_id, connection_key, schema_resource_name # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -884,6 +930,10 @@ def create_external_publication(self, workspace_id, task_key, create_external_pu To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.ExternalPublication` :rtype: :class:`~oci.response.Response` @@ -895,6 +945,7 @@ def create_external_publication(self, workspace_id, task_key, create_external_pu # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -980,6 +1031,10 @@ def create_external_publication_validation(self, workspace_id, task_key, create_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.ExternalPublicationValidation` :rtype: :class:`~oci.response.Response` @@ -991,6 +1046,7 @@ def create_external_publication_validation(self, workspace_id, task_key, create_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1074,6 +1130,10 @@ def create_folder(self, workspace_id, create_folder_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Folder` :rtype: :class:`~oci.response.Response` @@ -1085,6 +1145,7 @@ def create_folder(self, workspace_id, create_folder_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1167,6 +1228,10 @@ def create_function_library(self, workspace_id, create_function_library_details, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.FunctionLibrary` :rtype: :class:`~oci.response.Response` @@ -1178,6 +1243,7 @@ def create_function_library(self, workspace_id, create_function_library_details, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1262,6 +1328,10 @@ def create_patch(self, workspace_id, application_key, create_patch_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Patch` :rtype: :class:`~oci.response.Response` @@ -1273,6 +1343,7 @@ def create_patch(self, workspace_id, application_key, create_patch_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1355,6 +1426,10 @@ def create_pipeline(self, workspace_id, create_pipeline_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Pipeline` :rtype: :class:`~oci.response.Response` @@ -1366,6 +1441,7 @@ def create_pipeline(self, workspace_id, create_pipeline_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1447,6 +1523,10 @@ def create_pipeline_validation(self, workspace_id, create_pipeline_validation_de To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.PipelineValidation` :rtype: :class:`~oci.response.Response` @@ -1458,6 +1538,7 @@ def create_pipeline_validation(self, workspace_id, create_pipeline_validation_de # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1539,6 +1620,10 @@ def create_project(self, workspace_id, create_project_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Project` :rtype: :class:`~oci.response.Response` @@ -1550,6 +1635,7 @@ def create_project(self, workspace_id, create_project_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1634,6 +1720,10 @@ def create_schedule(self, workspace_id, application_key, create_schedule_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Schedule` :rtype: :class:`~oci.response.Response` @@ -1645,6 +1735,7 @@ def create_schedule(self, workspace_id, application_key, create_schedule_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1727,6 +1818,10 @@ def create_task(self, workspace_id, create_task_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Task` :rtype: :class:`~oci.response.Response` @@ -1738,6 +1833,7 @@ def create_task(self, workspace_id, create_task_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1822,6 +1918,10 @@ def create_task_run(self, workspace_id, application_key, create_task_run_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.TaskRun` :rtype: :class:`~oci.response.Response` @@ -1833,6 +1933,7 @@ def create_task_run(self, workspace_id, application_key, create_task_run_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1918,6 +2019,10 @@ def create_task_schedule(self, workspace_id, application_key, create_task_schedu To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.TaskSchedule` :rtype: :class:`~oci.response.Response` @@ -1929,6 +2034,7 @@ def create_task_schedule(self, workspace_id, application_key, create_task_schedu # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2011,6 +2117,10 @@ def create_task_validation(self, workspace_id, create_task_validation_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.TaskValidation` :rtype: :class:`~oci.response.Response` @@ -2022,6 +2132,7 @@ def create_task_validation(self, workspace_id, create_task_validation_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2103,6 +2214,10 @@ def create_user_defined_function(self, workspace_id, create_user_defined_functio To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.UserDefinedFunction` :rtype: :class:`~oci.response.Response` @@ -2114,6 +2229,7 @@ def create_user_defined_function(self, workspace_id, create_user_defined_functio # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -2195,6 +2311,10 @@ def create_user_defined_function_validation(self, workspace_id, create_user_defi To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.UserDefinedFunctionValidation` :rtype: :class:`~oci.response.Response` @@ -2206,6 +2326,7 @@ def create_user_defined_function_validation(self, workspace_id, create_user_defi # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2284,6 +2405,10 @@ def create_workspace(self, create_workspace_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2295,6 +2420,7 @@ def create_workspace(self, create_workspace_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -2364,6 +2490,10 @@ def delete_application(self, workspace_id, application_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2375,6 +2505,7 @@ def delete_application(self, workspace_id, application_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2454,6 +2585,10 @@ def delete_connection(self, workspace_id, connection_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2465,6 +2600,7 @@ def delete_connection(self, workspace_id, connection_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2544,6 +2680,10 @@ def delete_connection_validation(self, workspace_id, connection_validation_key, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2555,6 +2695,7 @@ def delete_connection_validation(self, workspace_id, connection_validation_key, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2634,6 +2775,10 @@ def delete_data_asset(self, workspace_id, data_asset_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2645,6 +2790,7 @@ def delete_data_asset(self, workspace_id, data_asset_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2724,6 +2870,10 @@ def delete_data_flow(self, workspace_id, data_flow_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2735,6 +2885,7 @@ def delete_data_flow(self, workspace_id, data_flow_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2814,6 +2965,10 @@ def delete_data_flow_validation(self, workspace_id, data_flow_validation_key, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2825,6 +2980,7 @@ def delete_data_flow_validation(self, workspace_id, data_flow_validation_key, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2907,6 +3063,10 @@ def delete_external_publication(self, workspace_id, task_key, external_publicati To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2918,6 +3078,7 @@ def delete_external_publication(self, workspace_id, task_key, external_publicati # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3001,6 +3162,10 @@ def delete_external_publication_validation(self, workspace_id, task_key, externa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3012,6 +3177,7 @@ def delete_external_publication_validation(self, workspace_id, task_key, externa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3092,6 +3258,10 @@ def delete_folder(self, workspace_id, folder_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3103,6 +3273,7 @@ def delete_folder(self, workspace_id, folder_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3182,6 +3353,10 @@ def delete_function_library(self, workspace_id, function_library_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3193,6 +3368,7 @@ def delete_function_library(self, workspace_id, function_library_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3275,6 +3451,10 @@ def delete_patch(self, workspace_id, application_key, patch_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3286,6 +3466,7 @@ def delete_patch(self, workspace_id, application_key, patch_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3366,6 +3547,10 @@ def delete_pipeline(self, workspace_id, pipeline_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3377,6 +3562,7 @@ def delete_pipeline(self, workspace_id, pipeline_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3456,6 +3642,10 @@ def delete_pipeline_validation(self, workspace_id, pipeline_validation_key, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3467,6 +3657,7 @@ def delete_pipeline_validation(self, workspace_id, pipeline_validation_key, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3546,6 +3737,10 @@ def delete_project(self, workspace_id, project_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3557,6 +3752,7 @@ def delete_project(self, workspace_id, project_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3639,6 +3835,10 @@ def delete_schedule(self, workspace_id, application_key, schedule_key, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3650,6 +3850,7 @@ def delete_schedule(self, workspace_id, application_key, schedule_key, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3730,6 +3931,10 @@ def delete_task(self, workspace_id, task_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3741,6 +3946,7 @@ def delete_task(self, workspace_id, task_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3823,6 +4029,10 @@ def delete_task_run(self, workspace_id, application_key, task_run_key, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3834,6 +4044,7 @@ def delete_task_run(self, workspace_id, application_key, task_run_key, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3917,6 +4128,10 @@ def delete_task_schedule(self, workspace_id, application_key, task_schedule_key, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3928,6 +4143,7 @@ def delete_task_schedule(self, workspace_id, application_key, task_schedule_key, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -4008,6 +4224,10 @@ def delete_task_validation(self, workspace_id, task_validation_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4019,6 +4239,7 @@ def delete_task_validation(self, workspace_id, task_validation_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -4098,6 +4319,10 @@ def delete_user_defined_function(self, workspace_id, user_defined_function_key, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4109,6 +4334,7 @@ def delete_user_defined_function(self, workspace_id, user_defined_function_key, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -4188,6 +4414,10 @@ def delete_user_defined_function_validation(self, workspace_id, user_defined_fun To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4199,6 +4429,7 @@ def delete_user_defined_function_validation(self, workspace_id, user_defined_fun # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -4281,6 +4512,10 @@ def delete_workspace(self, workspace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4292,6 +4527,7 @@ def delete_workspace(self, workspace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "quiesce_timeout", "is_force_operation", @@ -4375,6 +4611,10 @@ def get_application(self, workspace_id, application_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Application` :rtype: :class:`~oci.response.Response` @@ -4386,6 +4626,7 @@ def get_application(self, workspace_id, application_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -4460,6 +4701,10 @@ def get_connection(self, workspace_id, connection_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Connection` :rtype: :class:`~oci.response.Response` @@ -4471,6 +4716,7 @@ def get_connection(self, workspace_id, connection_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -4545,6 +4791,10 @@ def get_connection_validation(self, workspace_id, connection_validation_key, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.ConnectionValidation` :rtype: :class:`~oci.response.Response` @@ -4556,6 +4806,7 @@ def get_connection_validation(self, workspace_id, connection_validation_key, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -4631,6 +4882,10 @@ def get_count_statistic(self, workspace_id, count_statistic_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.CountStatistic` :rtype: :class:`~oci.response.Response` @@ -4642,6 +4897,7 @@ def get_count_statistic(self, workspace_id, count_statistic_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -4716,6 +4972,10 @@ def get_data_asset(self, workspace_id, data_asset_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.DataAsset` :rtype: :class:`~oci.response.Response` @@ -4727,6 +4987,7 @@ def get_data_asset(self, workspace_id, data_asset_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -4807,6 +5068,10 @@ def get_data_entity(self, workspace_id, connection_key, schema_resource_name, da To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.DataEntity` :rtype: :class:`~oci.response.Response` @@ -4818,6 +5083,7 @@ def get_data_entity(self, workspace_id, connection_key, schema_resource_name, da # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -4897,6 +5163,10 @@ def get_data_flow(self, workspace_id, data_flow_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.DataFlow` :rtype: :class:`~oci.response.Response` @@ -4908,6 +5178,7 @@ def get_data_flow(self, workspace_id, data_flow_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "expand_references" @@ -4990,6 +5261,10 @@ def get_data_flow_validation(self, workspace_id, data_flow_validation_key, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.DataFlowValidation` :rtype: :class:`~oci.response.Response` @@ -5001,6 +5276,7 @@ def get_data_flow_validation(self, workspace_id, data_flow_validation_key, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5078,6 +5354,10 @@ def get_dependent_object(self, workspace_id, application_key, dependent_object_k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.DependentObject` :rtype: :class:`~oci.response.Response` @@ -5089,6 +5369,7 @@ def get_dependent_object(self, workspace_id, application_key, dependent_object_k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5167,6 +5448,10 @@ def get_external_publication(self, workspace_id, task_key, external_publications To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.ExternalPublication` :rtype: :class:`~oci.response.Response` @@ -5178,6 +5463,7 @@ def get_external_publication(self, workspace_id, task_key, external_publications # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5256,6 +5542,10 @@ def get_external_publication_validation(self, workspace_id, task_key, external_p To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.ExternalPublicationValidation` :rtype: :class:`~oci.response.Response` @@ -5267,6 +5557,7 @@ def get_external_publication_validation(self, workspace_id, task_key, external_p # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5347,6 +5638,10 @@ def get_folder(self, workspace_id, folder_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Folder` :rtype: :class:`~oci.response.Response` @@ -5358,6 +5653,7 @@ def get_folder(self, workspace_id, folder_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "projection" @@ -5453,6 +5749,10 @@ def get_function_library(self, workspace_id, function_library_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.FunctionLibrary` :rtype: :class:`~oci.response.Response` @@ -5464,6 +5764,7 @@ def get_function_library(self, workspace_id, function_library_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "projection" @@ -5557,6 +5858,10 @@ def get_patch(self, workspace_id, application_key, patch_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Patch` :rtype: :class:`~oci.response.Response` @@ -5568,6 +5873,7 @@ def get_patch(self, workspace_id, application_key, patch_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5646,6 +5952,10 @@ def get_pipeline(self, workspace_id, pipeline_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Pipeline` :rtype: :class:`~oci.response.Response` @@ -5657,6 +5967,7 @@ def get_pipeline(self, workspace_id, pipeline_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "expand_references" @@ -5739,6 +6050,10 @@ def get_pipeline_validation(self, workspace_id, pipeline_validation_key, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.PipelineValidation` :rtype: :class:`~oci.response.Response` @@ -5750,6 +6065,7 @@ def get_pipeline_validation(self, workspace_id, pipeline_validation_key, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5829,6 +6145,10 @@ def get_project(self, workspace_id, project_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Project` :rtype: :class:`~oci.response.Response` @@ -5840,6 +6160,7 @@ def get_project(self, workspace_id, project_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "projection" @@ -5936,6 +6257,10 @@ def get_published_object(self, workspace_id, application_key, published_object_k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.PublishedObject` :rtype: :class:`~oci.response.Response` @@ -5947,6 +6272,7 @@ def get_published_object(self, workspace_id, application_key, published_object_k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "expand_references" @@ -6033,6 +6359,10 @@ def get_reference(self, workspace_id, application_key, reference_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Reference` :rtype: :class:`~oci.response.Response` @@ -6044,6 +6374,7 @@ def get_reference(self, workspace_id, application_key, reference_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6122,6 +6453,10 @@ def get_schedule(self, workspace_id, application_key, schedule_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Schedule` :rtype: :class:`~oci.response.Response` @@ -6133,6 +6468,7 @@ def get_schedule(self, workspace_id, application_key, schedule_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6211,6 +6547,10 @@ def get_schema(self, workspace_id, connection_key, schema_resource_name, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Schema` :rtype: :class:`~oci.response.Response` @@ -6222,6 +6562,7 @@ def get_schema(self, workspace_id, connection_key, schema_resource_name, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6300,6 +6641,10 @@ def get_task(self, workspace_id, task_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Task` :rtype: :class:`~oci.response.Response` @@ -6311,6 +6656,7 @@ def get_task(self, workspace_id, task_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "expand_references" @@ -6396,6 +6742,10 @@ def get_task_run(self, workspace_id, application_key, task_run_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.TaskRun` :rtype: :class:`~oci.response.Response` @@ -6407,6 +6757,7 @@ def get_task_run(self, workspace_id, application_key, task_run_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6485,6 +6836,10 @@ def get_task_schedule(self, workspace_id, application_key, task_schedule_key, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.TaskSchedule` :rtype: :class:`~oci.response.Response` @@ -6496,6 +6851,7 @@ def get_task_schedule(self, workspace_id, application_key, task_schedule_key, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6571,6 +6927,10 @@ def get_task_validation(self, workspace_id, task_validation_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.TaskValidation` :rtype: :class:`~oci.response.Response` @@ -6582,6 +6942,7 @@ def get_task_validation(self, workspace_id, task_validation_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6656,6 +7017,10 @@ def get_user_defined_function(self, workspace_id, user_defined_function_key, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.UserDefinedFunction` :rtype: :class:`~oci.response.Response` @@ -6667,6 +7032,7 @@ def get_user_defined_function(self, workspace_id, user_defined_function_key, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6741,6 +7107,10 @@ def get_user_defined_function_validation(self, workspace_id, user_defined_functi To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.UserDefinedFunctionValidation` :rtype: :class:`~oci.response.Response` @@ -6752,6 +7122,7 @@ def get_user_defined_function_validation(self, workspace_id, user_defined_functi # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6823,6 +7194,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -6834,6 +7209,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6904,6 +7280,10 @@ def get_workspace(self, workspace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Workspace` :rtype: :class:`~oci.response.Response` @@ -6915,6 +7295,7 @@ def get_workspace(self, workspace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -7017,6 +7398,10 @@ def list_applications(self, workspace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.ApplicationSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -7028,6 +7413,7 @@ def list_applications(self, workspace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "name_contains", @@ -7166,6 +7552,10 @@ def list_connection_validations(self, workspace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.ConnectionValidationSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -7177,6 +7567,7 @@ def list_connection_validations(self, workspace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "key", "name", @@ -7315,6 +7706,10 @@ def list_connections(self, workspace_id, data_asset_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.ConnectionSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -7326,6 +7721,7 @@ def list_connections(self, workspace_id, data_asset_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "page", @@ -7460,6 +7856,10 @@ def list_data_assets(self, workspace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.DataAssetSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -7471,6 +7871,7 @@ def list_data_assets(self, workspace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -7616,6 +8017,10 @@ def list_data_entities(self, workspace_id, connection_key, schema_resource_name, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.DataEntitySummaryCollection` :rtype: :class:`~oci.response.Response` @@ -7627,6 +8032,7 @@ def list_data_entities(self, workspace_id, connection_key, schema_resource_name, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "page", @@ -7769,6 +8175,10 @@ def list_data_flow_validations(self, workspace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.DataFlowValidationSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -7780,6 +8190,7 @@ def list_data_flow_validations(self, workspace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "key", "name", @@ -7918,6 +8329,10 @@ def list_data_flows(self, workspace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.DataFlowSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -7929,6 +8344,7 @@ def list_data_flows(self, workspace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "folder_id", @@ -8080,6 +8496,10 @@ def list_dependent_objects(self, workspace_id, application_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.DependentObjectSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -8091,6 +8511,7 @@ def list_dependent_objects(self, workspace_id, application_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "name", @@ -8234,6 +8655,10 @@ def list_external_publication_validations(self, workspace_id, task_key, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.ExternalPublicationValidationSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -8245,6 +8670,7 @@ def list_external_publication_validations(self, workspace_id, task_key, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "fields", @@ -8379,6 +8805,10 @@ def list_external_publications(self, workspace_id, task_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.ExternalPublicationSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -8390,6 +8820,7 @@ def list_external_publications(self, workspace_id, task_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "name", @@ -8528,6 +8959,10 @@ def list_folders(self, workspace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.FolderSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -8539,6 +8974,7 @@ def list_folders(self, workspace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "aggregator_key", @@ -8679,6 +9115,10 @@ def list_function_libraries(self, workspace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.FunctionLibrarySummaryCollection` :rtype: :class:`~oci.response.Response` @@ -8690,6 +9130,7 @@ def list_function_libraries(self, workspace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "aggregator_key", @@ -8828,6 +9269,10 @@ def list_patch_changes(self, workspace_id, application_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.PatchChangeSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -8839,6 +9284,7 @@ def list_patch_changes(self, workspace_id, application_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "since_patch", @@ -8976,6 +9422,10 @@ def list_patches(self, workspace_id, application_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.PatchSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -8987,6 +9437,7 @@ def list_patches(self, workspace_id, application_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "identifier", @@ -9124,6 +9575,10 @@ def list_pipeline_validations(self, workspace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.PipelineValidationSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -9135,6 +9590,7 @@ def list_pipeline_validations(self, workspace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "key", "name", @@ -9273,6 +9729,10 @@ def list_pipelines(self, workspace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.PipelineSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -9284,6 +9744,7 @@ def list_pipelines(self, workspace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "aggregator_key", @@ -9422,6 +9883,10 @@ def list_projects(self, workspace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.ProjectSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -9433,6 +9898,7 @@ def list_projects(self, workspace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "fields", @@ -9587,6 +10053,10 @@ def list_published_objects(self, workspace_id, application_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.PublishedObjectSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -9598,6 +10068,7 @@ def list_published_objects(self, workspace_id, application_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "fields", "name", @@ -9737,6 +10208,10 @@ def list_references(self, workspace_id, application_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.ReferenceSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -9748,6 +10223,7 @@ def list_references(self, workspace_id, application_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -9884,6 +10360,10 @@ def list_schedules(self, workspace_id, application_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.ScheduleSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -9895,6 +10375,7 @@ def list_schedules(self, workspace_id, application_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "key", "name", @@ -10037,6 +10518,10 @@ def list_schemas(self, workspace_id, connection_key, schema_resource_name, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.SchemaSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -10048,6 +10533,7 @@ def list_schemas(self, workspace_id, connection_key, schema_resource_name, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -10180,6 +10666,10 @@ def list_task_run_logs(self, workspace_id, application_key, task_run_key, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_integration.models.TaskRunLogSummary` :rtype: :class:`~oci.response.Response` @@ -10191,6 +10681,7 @@ def list_task_run_logs(self, workspace_id, application_key, task_run_key, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -10335,6 +10826,10 @@ def list_task_runs(self, workspace_id, application_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.TaskRunSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -10346,6 +10841,7 @@ def list_task_runs(self, workspace_id, application_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "key", @@ -10497,6 +10993,10 @@ def list_task_schedules(self, workspace_id, application_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.TaskScheduleSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -10508,6 +11008,7 @@ def list_task_schedules(self, workspace_id, application_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "key", "name", @@ -10649,6 +11150,10 @@ def list_task_validations(self, workspace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.TaskValidationSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -10660,6 +11165,7 @@ def list_task_validations(self, workspace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "key", "name", @@ -10804,6 +11310,10 @@ def list_tasks(self, workspace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.TaskSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -10815,6 +11325,7 @@ def list_tasks(self, workspace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "folder_id", @@ -10957,6 +11468,10 @@ def list_user_defined_function_validations(self, workspace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.UserDefinedFunctionValidationSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -10968,6 +11483,7 @@ def list_user_defined_function_validations(self, workspace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "key", "name", @@ -11106,6 +11622,10 @@ def list_user_defined_functions(self, workspace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.UserDefinedFunctionSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -11117,6 +11637,7 @@ def list_user_defined_functions(self, workspace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "function_library_key", @@ -11243,6 +11764,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_integration.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -11254,6 +11779,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -11372,6 +11898,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_integration.models.WorkRequestLogEntry` :rtype: :class:`~oci.response.Response` @@ -11383,6 +11913,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -11509,6 +12040,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_integration.models.WorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -11520,6 +12055,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "workspace_id", @@ -11646,6 +12182,10 @@ def list_workspaces(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_integration.models.WorkspaceSummary` :rtype: :class:`~oci.response.Response` @@ -11657,6 +12197,7 @@ def list_workspaces(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "limit", @@ -11763,6 +12304,10 @@ def start_workspace(self, workspace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -11774,6 +12319,7 @@ def start_workspace(self, workspace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -11861,6 +12407,10 @@ def stop_workspace(self, workspace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -11872,6 +12422,7 @@ def stop_workspace(self, workspace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "quiesce_timeout", "is_force_operation", @@ -11966,6 +12517,10 @@ def update_application(self, workspace_id, application_key, update_application_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Application` :rtype: :class:`~oci.response.Response` @@ -11977,6 +12532,7 @@ def update_application(self, workspace_id, application_key, update_application_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -12063,6 +12619,10 @@ def update_connection(self, workspace_id, connection_key, update_connection_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Connection` :rtype: :class:`~oci.response.Response` @@ -12074,6 +12634,7 @@ def update_connection(self, workspace_id, connection_key, update_connection_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -12160,6 +12721,10 @@ def update_data_asset(self, workspace_id, data_asset_key, update_data_asset_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.DataAsset` :rtype: :class:`~oci.response.Response` @@ -12171,6 +12736,7 @@ def update_data_asset(self, workspace_id, data_asset_key, update_data_asset_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -12257,6 +12823,10 @@ def update_data_flow(self, workspace_id, data_flow_key, update_data_flow_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.DataFlow` :rtype: :class:`~oci.response.Response` @@ -12268,6 +12838,7 @@ def update_data_flow(self, workspace_id, data_flow_key, update_data_flow_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -12357,6 +12928,10 @@ def update_external_publication(self, workspace_id, task_key, external_publicati To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.ExternalPublication` :rtype: :class:`~oci.response.Response` @@ -12368,6 +12943,7 @@ def update_external_publication(self, workspace_id, task_key, external_publicati # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -12455,6 +13031,10 @@ def update_folder(self, workspace_id, folder_key, update_folder_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Folder` :rtype: :class:`~oci.response.Response` @@ -12466,6 +13046,7 @@ def update_folder(self, workspace_id, folder_key, update_folder_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -12552,6 +13133,10 @@ def update_function_library(self, workspace_id, function_library_key, update_fun To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.FunctionLibrary` :rtype: :class:`~oci.response.Response` @@ -12563,6 +13148,7 @@ def update_function_library(self, workspace_id, function_library_key, update_fun # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -12649,6 +13235,10 @@ def update_pipeline(self, workspace_id, pipeline_key, update_pipeline_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Pipeline` :rtype: :class:`~oci.response.Response` @@ -12660,6 +13250,7 @@ def update_pipeline(self, workspace_id, pipeline_key, update_pipeline_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -12746,6 +13337,10 @@ def update_project(self, workspace_id, project_key, update_project_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Project` :rtype: :class:`~oci.response.Response` @@ -12757,6 +13352,7 @@ def update_project(self, workspace_id, project_key, update_project_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -12849,6 +13445,10 @@ def update_reference(self, workspace_id, application_key, reference_key, update_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Reference` :rtype: :class:`~oci.response.Response` @@ -12860,6 +13460,7 @@ def update_reference(self, workspace_id, application_key, reference_key, update_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -12953,6 +13554,10 @@ def update_schedule(self, workspace_id, application_key, schedule_key, update_sc To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Schedule` :rtype: :class:`~oci.response.Response` @@ -12964,6 +13569,7 @@ def update_schedule(self, workspace_id, application_key, schedule_key, update_sc # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -13051,6 +13657,10 @@ def update_task(self, workspace_id, task_key, update_task_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Task` :rtype: :class:`~oci.response.Response` @@ -13062,6 +13672,7 @@ def update_task(self, workspace_id, task_key, update_task_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -13151,6 +13762,10 @@ def update_task_run(self, workspace_id, application_key, task_run_key, update_ta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.TaskRunDetails` :rtype: :class:`~oci.response.Response` @@ -13162,6 +13777,7 @@ def update_task_run(self, workspace_id, application_key, task_run_key, update_ta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -13252,6 +13868,10 @@ def update_task_schedule(self, workspace_id, application_key, task_schedule_key, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.TaskSchedule` :rtype: :class:`~oci.response.Response` @@ -13263,6 +13883,7 @@ def update_task_schedule(self, workspace_id, application_key, task_schedule_key, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -13350,6 +13971,10 @@ def update_user_defined_function(self, workspace_id, user_defined_function_key, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.UserDefinedFunction` :rtype: :class:`~oci.response.Response` @@ -13361,6 +13986,7 @@ def update_user_defined_function(self, workspace_id, user_defined_function_key, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -13444,6 +14070,10 @@ def update_workspace(self, workspace_id, update_workspace_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_integration.models.Workspace` :rtype: :class:`~oci.response.Response` @@ -13455,6 +14085,7 @@ def update_workspace(self, workspace_id, update_workspace_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/data_integration/data_integration_client_composite_operations.py b/src/oci/data_integration/data_integration_client_composite_operations.py index 772df7a959..695b9aa774 100644 --- a/src/oci/data_integration/data_integration_client_composite_operations.py +++ b/src/oci/data_integration/data_integration_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/data_integration/models/__init__.py b/src/oci/data_integration/models/__init__.py index 119ed1bac3..28198ec0d0 100644 --- a/src/oci/data_integration/models/__init__.py +++ b/src/oci/data_integration/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/data_integration/models/abstract_data_operation_config.py b/src/oci/data_integration/models/abstract_data_operation_config.py index 4163f34e66..ee3b5f0726 100644 --- a/src/oci/data_integration/models/abstract_data_operation_config.py +++ b/src/oci/data_integration/models/abstract_data_operation_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/abstract_field.py b/src/oci/data_integration/models/abstract_field.py index cef7ec0ebd..5e0c6f6930 100644 --- a/src/oci/data_integration/models/abstract_field.py +++ b/src/oci/data_integration/models/abstract_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .typed_object import TypedObject diff --git a/src/oci/data_integration/models/abstract_format_attribute.py b/src/oci/data_integration/models/abstract_format_attribute.py index 97c0a0c31e..7666b36263 100644 --- a/src/oci/data_integration/models/abstract_format_attribute.py +++ b/src/oci/data_integration/models/abstract_format_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/abstract_frequency_details.py b/src/oci/data_integration/models/abstract_frequency_details.py index 2813d0ea47..d4aea7e476 100644 --- a/src/oci/data_integration/models/abstract_frequency_details.py +++ b/src/oci/data_integration/models/abstract_frequency_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/abstract_read_attribute.py b/src/oci/data_integration/models/abstract_read_attribute.py index 6f32aa9b1b..56d354829c 100644 --- a/src/oci/data_integration/models/abstract_read_attribute.py +++ b/src/oci/data_integration/models/abstract_read_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/abstract_write_attribute.py b/src/oci/data_integration/models/abstract_write_attribute.py index 5ffce94ee6..37e76511cf 100644 --- a/src/oci/data_integration/models/abstract_write_attribute.py +++ b/src/oci/data_integration/models/abstract_write_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/aggregator.py b/src/oci/data_integration/models/aggregator.py index ec738960a1..6bf564691b 100644 --- a/src/oci/data_integration/models/aggregator.py +++ b/src/oci/data_integration/models/aggregator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .operator import Operator diff --git a/src/oci/data_integration/models/aggregator_summary.py b/src/oci/data_integration/models/aggregator_summary.py index f935533978..6f66f31f9d 100644 --- a/src/oci/data_integration/models/aggregator_summary.py +++ b/src/oci/data_integration/models/aggregator_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/application.py b/src/oci/data_integration/models/application.py index 1a339596cc..444e336187 100644 --- a/src/oci/data_integration/models/application.py +++ b/src/oci/data_integration/models/application.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/application_details.py b/src/oci/data_integration/models/application_details.py index 619f81817b..d763b50d5d 100644 --- a/src/oci/data_integration/models/application_details.py +++ b/src/oci/data_integration/models/application_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/application_summary.py b/src/oci/data_integration/models/application_summary.py index 89e5b72bb1..e559b77437 100644 --- a/src/oci/data_integration/models/application_summary.py +++ b/src/oci/data_integration/models/application_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/application_summary_collection.py b/src/oci/data_integration/models/application_summary_collection.py index 4b49578400..874255b11a 100644 --- a/src/oci/data_integration/models/application_summary_collection.py +++ b/src/oci/data_integration/models/application_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/auth_details.py b/src/oci/data_integration/models/auth_details.py index d04f80f424..31651975f4 100644 --- a/src/oci/data_integration/models/auth_details.py +++ b/src/oci/data_integration/models/auth_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/avro_format_attribute.py b/src/oci/data_integration/models/avro_format_attribute.py index d3b791a837..248538ac0a 100644 --- a/src/oci/data_integration/models/avro_format_attribute.py +++ b/src/oci/data_integration/models/avro_format_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_format_attribute import AbstractFormatAttribute diff --git a/src/oci/data_integration/models/base_type.py b/src/oci/data_integration/models/base_type.py index ba3a5e248b..396dd9bfa2 100644 --- a/src/oci/data_integration/models/base_type.py +++ b/src/oci/data_integration/models/base_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/bicc_read_attributes.py b/src/oci/data_integration/models/bicc_read_attributes.py index 1922741b9c..d5c414c307 100644 --- a/src/oci/data_integration/models/bicc_read_attributes.py +++ b/src/oci/data_integration/models/bicc_read_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_read_attribute import AbstractReadAttribute diff --git a/src/oci/data_integration/models/cancel_rest_call_config.py b/src/oci/data_integration/models/cancel_rest_call_config.py index 663c451b42..fed74245a9 100644 --- a/src/oci/data_integration/models/cancel_rest_call_config.py +++ b/src/oci/data_integration/models/cancel_rest_call_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/change_compartment_details.py b/src/oci/data_integration/models/change_compartment_details.py index 20de924331..e5f07916a9 100644 --- a/src/oci/data_integration/models/change_compartment_details.py +++ b/src/oci/data_integration/models/change_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/child_reference.py b/src/oci/data_integration/models/child_reference.py index 4c9dd196b5..0b73a98496 100644 --- a/src/oci/data_integration/models/child_reference.py +++ b/src/oci/data_integration/models/child_reference.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/child_reference_detail.py b/src/oci/data_integration/models/child_reference_detail.py index 855a1a478f..d9528d2cc0 100644 --- a/src/oci/data_integration/models/child_reference_detail.py +++ b/src/oci/data_integration/models/child_reference_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/composite_field_map.py b/src/oci/data_integration/models/composite_field_map.py index 5e205ccc4d..7d86a92107 100644 --- a/src/oci/data_integration/models/composite_field_map.py +++ b/src/oci/data_integration/models/composite_field_map.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .field_map import FieldMap diff --git a/src/oci/data_integration/models/composite_type.py b/src/oci/data_integration/models/composite_type.py index d15412f31a..a9330b6e27 100644 --- a/src/oci/data_integration/models/composite_type.py +++ b/src/oci/data_integration/models/composite_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .base_type import BaseType diff --git a/src/oci/data_integration/models/compression.py b/src/oci/data_integration/models/compression.py index 4b84602ce0..6b6d7818e9 100644 --- a/src/oci/data_integration/models/compression.py +++ b/src/oci/data_integration/models/compression.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/conditional_input_link.py b/src/oci/data_integration/models/conditional_input_link.py index b360cb5d7e..fe6da901cc 100644 --- a/src/oci/data_integration/models/conditional_input_link.py +++ b/src/oci/data_integration/models/conditional_input_link.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .flow_port_link import FlowPortLink diff --git a/src/oci/data_integration/models/config_definition.py b/src/oci/data_integration/models/config_definition.py index 74a1c9b95a..b1a76dfe12 100644 --- a/src/oci/data_integration/models/config_definition.py +++ b/src/oci/data_integration/models/config_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/config_parameter_definition.py b/src/oci/data_integration/models/config_parameter_definition.py index 6761d13ae3..86c0731534 100644 --- a/src/oci/data_integration/models/config_parameter_definition.py +++ b/src/oci/data_integration/models/config_parameter_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/config_parameter_value.py b/src/oci/data_integration/models/config_parameter_value.py index 93039f67ce..3fa93e0b94 100644 --- a/src/oci/data_integration/models/config_parameter_value.py +++ b/src/oci/data_integration/models/config_parameter_value.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/config_provider.py b/src/oci/data_integration/models/config_provider.py index 19e86e1fd9..8d947b387c 100644 --- a/src/oci/data_integration/models/config_provider.py +++ b/src/oci/data_integration/models/config_provider.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/config_values.py b/src/oci/data_integration/models/config_values.py index f65d63586f..93b4cc6362 100644 --- a/src/oci/data_integration/models/config_values.py +++ b/src/oci/data_integration/models/config_values.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/configuration_details.py b/src/oci/data_integration/models/configuration_details.py index b92fd52755..86e9243f5b 100644 --- a/src/oci/data_integration/models/configuration_details.py +++ b/src/oci/data_integration/models/configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/configured_type.py b/src/oci/data_integration/models/configured_type.py index f648d07c0d..3281eefcf5 100644 --- a/src/oci/data_integration/models/configured_type.py +++ b/src/oci/data_integration/models/configured_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .base_type import BaseType diff --git a/src/oci/data_integration/models/connection.py b/src/oci/data_integration/models/connection.py index 2e84d16eab..83c976d876 100644 --- a/src/oci/data_integration/models/connection.py +++ b/src/oci/data_integration/models/connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/connection_details.py b/src/oci/data_integration/models/connection_details.py index 816c730811..eb4076ed93 100644 --- a/src/oci/data_integration/models/connection_details.py +++ b/src/oci/data_integration/models/connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/connection_from_adwc.py b/src/oci/data_integration/models/connection_from_adwc.py index 8e56c66779..91c7650ab5 100644 --- a/src/oci/data_integration/models/connection_from_adwc.py +++ b/src/oci/data_integration/models/connection_from_adwc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection import Connection diff --git a/src/oci/data_integration/models/connection_from_adwc_details.py b/src/oci/data_integration/models/connection_from_adwc_details.py index dbeb183f78..ef216d47a0 100644 --- a/src/oci/data_integration/models/connection_from_adwc_details.py +++ b/src/oci/data_integration/models/connection_from_adwc_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_details import ConnectionDetails diff --git a/src/oci/data_integration/models/connection_from_amazon_s3.py b/src/oci/data_integration/models/connection_from_amazon_s3.py index d44b31c5b9..248353facf 100644 --- a/src/oci/data_integration/models/connection_from_amazon_s3.py +++ b/src/oci/data_integration/models/connection_from_amazon_s3.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection import Connection diff --git a/src/oci/data_integration/models/connection_from_amazon_s3_details.py b/src/oci/data_integration/models/connection_from_amazon_s3_details.py index 98162cf3e0..e1b8180bf3 100644 --- a/src/oci/data_integration/models/connection_from_amazon_s3_details.py +++ b/src/oci/data_integration/models/connection_from_amazon_s3_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_details import ConnectionDetails diff --git a/src/oci/data_integration/models/connection_from_atp.py b/src/oci/data_integration/models/connection_from_atp.py index df8ce765db..f1536db39a 100644 --- a/src/oci/data_integration/models/connection_from_atp.py +++ b/src/oci/data_integration/models/connection_from_atp.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection import Connection diff --git a/src/oci/data_integration/models/connection_from_atp_details.py b/src/oci/data_integration/models/connection_from_atp_details.py index 168094c62d..3f54bc072d 100644 --- a/src/oci/data_integration/models/connection_from_atp_details.py +++ b/src/oci/data_integration/models/connection_from_atp_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_details import ConnectionDetails diff --git a/src/oci/data_integration/models/connection_from_bicc.py b/src/oci/data_integration/models/connection_from_bicc.py index e911d564cf..25e9cce2d5 100644 --- a/src/oci/data_integration/models/connection_from_bicc.py +++ b/src/oci/data_integration/models/connection_from_bicc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection import Connection diff --git a/src/oci/data_integration/models/connection_from_bicc_details.py b/src/oci/data_integration/models/connection_from_bicc_details.py index 0b0cc778ae..40e3fc9b50 100644 --- a/src/oci/data_integration/models/connection_from_bicc_details.py +++ b/src/oci/data_integration/models/connection_from_bicc_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_details import ConnectionDetails diff --git a/src/oci/data_integration/models/connection_from_jdbc.py b/src/oci/data_integration/models/connection_from_jdbc.py index b1fb9a3835..4e0d5c9eb5 100644 --- a/src/oci/data_integration/models/connection_from_jdbc.py +++ b/src/oci/data_integration/models/connection_from_jdbc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection import Connection diff --git a/src/oci/data_integration/models/connection_from_jdbc_details.py b/src/oci/data_integration/models/connection_from_jdbc_details.py index 9119f9ee93..388333e765 100644 --- a/src/oci/data_integration/models/connection_from_jdbc_details.py +++ b/src/oci/data_integration/models/connection_from_jdbc_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_details import ConnectionDetails diff --git a/src/oci/data_integration/models/connection_from_my_sql.py b/src/oci/data_integration/models/connection_from_my_sql.py index d0e463d0e9..d9b425b905 100644 --- a/src/oci/data_integration/models/connection_from_my_sql.py +++ b/src/oci/data_integration/models/connection_from_my_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection import Connection diff --git a/src/oci/data_integration/models/connection_from_my_sql_details.py b/src/oci/data_integration/models/connection_from_my_sql_details.py index 8231e2095a..45fd30ddf3 100644 --- a/src/oci/data_integration/models/connection_from_my_sql_details.py +++ b/src/oci/data_integration/models/connection_from_my_sql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_details import ConnectionDetails diff --git a/src/oci/data_integration/models/connection_from_object_storage.py b/src/oci/data_integration/models/connection_from_object_storage.py index 4482a05287..ac90fa6b7b 100644 --- a/src/oci/data_integration/models/connection_from_object_storage.py +++ b/src/oci/data_integration/models/connection_from_object_storage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection import Connection diff --git a/src/oci/data_integration/models/connection_from_object_storage_details.py b/src/oci/data_integration/models/connection_from_object_storage_details.py index a6e100a3ed..4fe68421a1 100644 --- a/src/oci/data_integration/models/connection_from_object_storage_details.py +++ b/src/oci/data_integration/models/connection_from_object_storage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_details import ConnectionDetails diff --git a/src/oci/data_integration/models/connection_from_oracle.py b/src/oci/data_integration/models/connection_from_oracle.py index d5d06d3394..96cd98ade7 100644 --- a/src/oci/data_integration/models/connection_from_oracle.py +++ b/src/oci/data_integration/models/connection_from_oracle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection import Connection diff --git a/src/oci/data_integration/models/connection_from_oracle_details.py b/src/oci/data_integration/models/connection_from_oracle_details.py index 7521b2492c..f9623820d0 100644 --- a/src/oci/data_integration/models/connection_from_oracle_details.py +++ b/src/oci/data_integration/models/connection_from_oracle_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_details import ConnectionDetails diff --git a/src/oci/data_integration/models/connection_property.py b/src/oci/data_integration/models/connection_property.py index 292e5a93a6..2ebd5af95b 100644 --- a/src/oci/data_integration/models/connection_property.py +++ b/src/oci/data_integration/models/connection_property.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/connection_summary.py b/src/oci/data_integration/models/connection_summary.py index 9f717a5de6..48d6371a64 100644 --- a/src/oci/data_integration/models/connection_summary.py +++ b/src/oci/data_integration/models/connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/connection_summary_collection.py b/src/oci/data_integration/models/connection_summary_collection.py index 7efeb6e783..e6e4a2d8af 100644 --- a/src/oci/data_integration/models/connection_summary_collection.py +++ b/src/oci/data_integration/models/connection_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/connection_summary_from_adwc.py b/src/oci/data_integration/models/connection_summary_from_adwc.py index 1056fd88f6..02599cdb1d 100644 --- a/src/oci/data_integration/models/connection_summary_from_adwc.py +++ b/src/oci/data_integration/models/connection_summary_from_adwc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_summary import ConnectionSummary diff --git a/src/oci/data_integration/models/connection_summary_from_amazon_s3.py b/src/oci/data_integration/models/connection_summary_from_amazon_s3.py index a93da353e5..4c5f1bf059 100644 --- a/src/oci/data_integration/models/connection_summary_from_amazon_s3.py +++ b/src/oci/data_integration/models/connection_summary_from_amazon_s3.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_summary import ConnectionSummary diff --git a/src/oci/data_integration/models/connection_summary_from_atp.py b/src/oci/data_integration/models/connection_summary_from_atp.py index 737c88f90e..2703058fc2 100644 --- a/src/oci/data_integration/models/connection_summary_from_atp.py +++ b/src/oci/data_integration/models/connection_summary_from_atp.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_summary import ConnectionSummary diff --git a/src/oci/data_integration/models/connection_summary_from_bicc.py b/src/oci/data_integration/models/connection_summary_from_bicc.py index 8383c37300..5fc4bce18a 100644 --- a/src/oci/data_integration/models/connection_summary_from_bicc.py +++ b/src/oci/data_integration/models/connection_summary_from_bicc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_summary import ConnectionSummary diff --git a/src/oci/data_integration/models/connection_summary_from_jdbc.py b/src/oci/data_integration/models/connection_summary_from_jdbc.py index e7fbe04030..6d9dec6f73 100644 --- a/src/oci/data_integration/models/connection_summary_from_jdbc.py +++ b/src/oci/data_integration/models/connection_summary_from_jdbc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_summary import ConnectionSummary diff --git a/src/oci/data_integration/models/connection_summary_from_my_sql.py b/src/oci/data_integration/models/connection_summary_from_my_sql.py index 8d966d4f46..2b684c9a2e 100644 --- a/src/oci/data_integration/models/connection_summary_from_my_sql.py +++ b/src/oci/data_integration/models/connection_summary_from_my_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_summary import ConnectionSummary diff --git a/src/oci/data_integration/models/connection_summary_from_object_storage.py b/src/oci/data_integration/models/connection_summary_from_object_storage.py index 43fce5d3e0..0e8efc5164 100644 --- a/src/oci/data_integration/models/connection_summary_from_object_storage.py +++ b/src/oci/data_integration/models/connection_summary_from_object_storage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_summary import ConnectionSummary diff --git a/src/oci/data_integration/models/connection_summary_from_oracle.py b/src/oci/data_integration/models/connection_summary_from_oracle.py index be6b0fe3f3..15b552a32b 100644 --- a/src/oci/data_integration/models/connection_summary_from_oracle.py +++ b/src/oci/data_integration/models/connection_summary_from_oracle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_summary import ConnectionSummary diff --git a/src/oci/data_integration/models/connection_validation.py b/src/oci/data_integration/models/connection_validation.py index 4a0b27d2aa..ad8d51b972 100644 --- a/src/oci/data_integration/models/connection_validation.py +++ b/src/oci/data_integration/models/connection_validation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/connection_validation_summary.py b/src/oci/data_integration/models/connection_validation_summary.py index 26a1dc5314..299e43813d 100644 --- a/src/oci/data_integration/models/connection_validation_summary.py +++ b/src/oci/data_integration/models/connection_validation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/connection_validation_summary_collection.py b/src/oci/data_integration/models/connection_validation_summary_collection.py index 63c24bdac6..101b641db3 100644 --- a/src/oci/data_integration/models/connection_validation_summary_collection.py +++ b/src/oci/data_integration/models/connection_validation_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/connector_attribute.py b/src/oci/data_integration/models/connector_attribute.py index c24e1e0245..e9a9f70165 100644 --- a/src/oci/data_integration/models/connector_attribute.py +++ b/src/oci/data_integration/models/connector_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/count_statistic.py b/src/oci/data_integration/models/count_statistic.py index 975ad6c428..f597e7f9f2 100644 --- a/src/oci/data_integration/models/count_statistic.py +++ b/src/oci/data_integration/models/count_statistic.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/count_statistic_summary.py b/src/oci/data_integration/models/count_statistic_summary.py index 8c36b7c8e1..c2c57662a4 100644 --- a/src/oci/data_integration/models/count_statistic_summary.py +++ b/src/oci/data_integration/models/count_statistic_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_application_details.py b/src/oci/data_integration/models/create_application_details.py index 8dea9c8b1a..0da0e8367d 100644 --- a/src/oci/data_integration/models/create_application_details.py +++ b/src/oci/data_integration/models/create_application_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_config_provider.py b/src/oci/data_integration/models/create_config_provider.py index 4d53821ead..23bbd59be3 100644 --- a/src/oci/data_integration/models/create_config_provider.py +++ b/src/oci/data_integration/models/create_config_provider.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_connection_details.py b/src/oci/data_integration/models/create_connection_details.py index 1ad85e7db7..28efbda3c5 100644 --- a/src/oci/data_integration/models/create_connection_details.py +++ b/src/oci/data_integration/models/create_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_connection_from_adwc.py b/src/oci/data_integration/models/create_connection_from_adwc.py index 33a6c24184..1003986c33 100644 --- a/src/oci/data_integration/models/create_connection_from_adwc.py +++ b/src/oci/data_integration/models/create_connection_from_adwc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_connection_details import CreateConnectionDetails diff --git a/src/oci/data_integration/models/create_connection_from_amazon_s3.py b/src/oci/data_integration/models/create_connection_from_amazon_s3.py index ea988c4994..21dfc00be6 100644 --- a/src/oci/data_integration/models/create_connection_from_amazon_s3.py +++ b/src/oci/data_integration/models/create_connection_from_amazon_s3.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_connection_details import CreateConnectionDetails diff --git a/src/oci/data_integration/models/create_connection_from_atp.py b/src/oci/data_integration/models/create_connection_from_atp.py index df37d18d18..9c837afe23 100644 --- a/src/oci/data_integration/models/create_connection_from_atp.py +++ b/src/oci/data_integration/models/create_connection_from_atp.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_connection_details import CreateConnectionDetails diff --git a/src/oci/data_integration/models/create_connection_from_bicc.py b/src/oci/data_integration/models/create_connection_from_bicc.py index 0961c5668e..3916e597c6 100644 --- a/src/oci/data_integration/models/create_connection_from_bicc.py +++ b/src/oci/data_integration/models/create_connection_from_bicc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_connection_details import CreateConnectionDetails diff --git a/src/oci/data_integration/models/create_connection_from_jdbc.py b/src/oci/data_integration/models/create_connection_from_jdbc.py index cd4f31d4c7..22fca41f24 100644 --- a/src/oci/data_integration/models/create_connection_from_jdbc.py +++ b/src/oci/data_integration/models/create_connection_from_jdbc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_connection_details import CreateConnectionDetails diff --git a/src/oci/data_integration/models/create_connection_from_my_sql.py b/src/oci/data_integration/models/create_connection_from_my_sql.py index 0f407897ab..eb9a6a5ca9 100644 --- a/src/oci/data_integration/models/create_connection_from_my_sql.py +++ b/src/oci/data_integration/models/create_connection_from_my_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_connection_details import CreateConnectionDetails diff --git a/src/oci/data_integration/models/create_connection_from_object_storage.py b/src/oci/data_integration/models/create_connection_from_object_storage.py index b94af5868c..b14a52c43b 100644 --- a/src/oci/data_integration/models/create_connection_from_object_storage.py +++ b/src/oci/data_integration/models/create_connection_from_object_storage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_connection_details import CreateConnectionDetails diff --git a/src/oci/data_integration/models/create_connection_from_oracle.py b/src/oci/data_integration/models/create_connection_from_oracle.py index b3d8180c0c..182a16fdaf 100644 --- a/src/oci/data_integration/models/create_connection_from_oracle.py +++ b/src/oci/data_integration/models/create_connection_from_oracle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_connection_details import CreateConnectionDetails diff --git a/src/oci/data_integration/models/create_connection_validation_details.py b/src/oci/data_integration/models/create_connection_validation_details.py index 634cb6f3c8..97f2a18513 100644 --- a/src/oci/data_integration/models/create_connection_validation_details.py +++ b/src/oci/data_integration/models/create_connection_validation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_data_asset_details.py b/src/oci/data_integration/models/create_data_asset_details.py index 75edd0a589..3df06e12a8 100644 --- a/src/oci/data_integration/models/create_data_asset_details.py +++ b/src/oci/data_integration/models/create_data_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_data_asset_from_adwc.py b/src/oci/data_integration/models/create_data_asset_from_adwc.py index 36fa16eb11..46dfa3bb8b 100644 --- a/src/oci/data_integration/models/create_data_asset_from_adwc.py +++ b/src/oci/data_integration/models/create_data_asset_from_adwc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_data_asset_details import CreateDataAssetDetails diff --git a/src/oci/data_integration/models/create_data_asset_from_amazon_s3.py b/src/oci/data_integration/models/create_data_asset_from_amazon_s3.py index 30c8edbaed..2010dfe3db 100644 --- a/src/oci/data_integration/models/create_data_asset_from_amazon_s3.py +++ b/src/oci/data_integration/models/create_data_asset_from_amazon_s3.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_data_asset_details import CreateDataAssetDetails diff --git a/src/oci/data_integration/models/create_data_asset_from_atp.py b/src/oci/data_integration/models/create_data_asset_from_atp.py index f46ea2c289..9b3931a066 100644 --- a/src/oci/data_integration/models/create_data_asset_from_atp.py +++ b/src/oci/data_integration/models/create_data_asset_from_atp.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_data_asset_details import CreateDataAssetDetails diff --git a/src/oci/data_integration/models/create_data_asset_from_fusion_app.py b/src/oci/data_integration/models/create_data_asset_from_fusion_app.py index bbd994ef2d..e5748845ba 100644 --- a/src/oci/data_integration/models/create_data_asset_from_fusion_app.py +++ b/src/oci/data_integration/models/create_data_asset_from_fusion_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_data_asset_details import CreateDataAssetDetails diff --git a/src/oci/data_integration/models/create_data_asset_from_jdbc.py b/src/oci/data_integration/models/create_data_asset_from_jdbc.py index 9df5ec2c97..b84ea258de 100644 --- a/src/oci/data_integration/models/create_data_asset_from_jdbc.py +++ b/src/oci/data_integration/models/create_data_asset_from_jdbc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_data_asset_details import CreateDataAssetDetails diff --git a/src/oci/data_integration/models/create_data_asset_from_my_sql.py b/src/oci/data_integration/models/create_data_asset_from_my_sql.py index ce44920afe..a0883d9f08 100644 --- a/src/oci/data_integration/models/create_data_asset_from_my_sql.py +++ b/src/oci/data_integration/models/create_data_asset_from_my_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_data_asset_details import CreateDataAssetDetails diff --git a/src/oci/data_integration/models/create_data_asset_from_object_storage.py b/src/oci/data_integration/models/create_data_asset_from_object_storage.py index c371f88159..94ff6ab1ce 100644 --- a/src/oci/data_integration/models/create_data_asset_from_object_storage.py +++ b/src/oci/data_integration/models/create_data_asset_from_object_storage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_data_asset_details import CreateDataAssetDetails diff --git a/src/oci/data_integration/models/create_data_asset_from_oracle.py b/src/oci/data_integration/models/create_data_asset_from_oracle.py index 89480d8888..207812a97f 100644 --- a/src/oci/data_integration/models/create_data_asset_from_oracle.py +++ b/src/oci/data_integration/models/create_data_asset_from_oracle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_data_asset_details import CreateDataAssetDetails diff --git a/src/oci/data_integration/models/create_data_flow_details.py b/src/oci/data_integration/models/create_data_flow_details.py index 36e5502a65..7d27d7ddeb 100644 --- a/src/oci/data_integration/models/create_data_flow_details.py +++ b/src/oci/data_integration/models/create_data_flow_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_data_flow_validation_details.py b/src/oci/data_integration/models/create_data_flow_validation_details.py index ec2c7ef88f..8b821704a4 100644 --- a/src/oci/data_integration/models/create_data_flow_validation_details.py +++ b/src/oci/data_integration/models/create_data_flow_validation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_entity_shape_details.py b/src/oci/data_integration/models/create_entity_shape_details.py index 5281c3ba78..5aaf378a18 100644 --- a/src/oci/data_integration/models/create_entity_shape_details.py +++ b/src/oci/data_integration/models/create_entity_shape_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_entity_shape_from_file.py b/src/oci/data_integration/models/create_entity_shape_from_file.py index dca1c54afa..c9fd85f1c9 100644 --- a/src/oci/data_integration/models/create_entity_shape_from_file.py +++ b/src/oci/data_integration/models/create_entity_shape_from_file.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_entity_shape_details import CreateEntityShapeDetails diff --git a/src/oci/data_integration/models/create_entity_shape_from_sql.py b/src/oci/data_integration/models/create_entity_shape_from_sql.py index d4ecc942a9..fc28ffa5ba 100644 --- a/src/oci/data_integration/models/create_entity_shape_from_sql.py +++ b/src/oci/data_integration/models/create_entity_shape_from_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_entity_shape_details import CreateEntityShapeDetails diff --git a/src/oci/data_integration/models/create_external_publication_details.py b/src/oci/data_integration/models/create_external_publication_details.py index e7094a5ad0..59bc3130d9 100644 --- a/src/oci/data_integration/models/create_external_publication_details.py +++ b/src/oci/data_integration/models/create_external_publication_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_external_publication_validation_details.py b/src/oci/data_integration/models/create_external_publication_validation_details.py index 89c04af38c..04e8490dc1 100644 --- a/src/oci/data_integration/models/create_external_publication_validation_details.py +++ b/src/oci/data_integration/models/create_external_publication_validation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_folder_details.py b/src/oci/data_integration/models/create_folder_details.py index 7501911a8d..cd339e212b 100644 --- a/src/oci/data_integration/models/create_folder_details.py +++ b/src/oci/data_integration/models/create_folder_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_function_library_details.py b/src/oci/data_integration/models/create_function_library_details.py index 7b4ec5cb2f..1aa9fcc5bb 100644 --- a/src/oci/data_integration/models/create_function_library_details.py +++ b/src/oci/data_integration/models/create_function_library_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_patch_details.py b/src/oci/data_integration/models/create_patch_details.py index f01a92ef4d..8e45e9bae0 100644 --- a/src/oci/data_integration/models/create_patch_details.py +++ b/src/oci/data_integration/models/create_patch_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_pipeline_details.py b/src/oci/data_integration/models/create_pipeline_details.py index 53f5d94125..b22f7510ff 100644 --- a/src/oci/data_integration/models/create_pipeline_details.py +++ b/src/oci/data_integration/models/create_pipeline_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_pipeline_validation_details.py b/src/oci/data_integration/models/create_pipeline_validation_details.py index 1510e31bda..433d956e76 100644 --- a/src/oci/data_integration/models/create_pipeline_validation_details.py +++ b/src/oci/data_integration/models/create_pipeline_validation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_project_details.py b/src/oci/data_integration/models/create_project_details.py index 8cc0137464..b0c358251d 100644 --- a/src/oci/data_integration/models/create_project_details.py +++ b/src/oci/data_integration/models/create_project_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_schedule_details.py b/src/oci/data_integration/models/create_schedule_details.py index d4625c5530..e019ebda06 100644 --- a/src/oci/data_integration/models/create_schedule_details.py +++ b/src/oci/data_integration/models/create_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_source_application_info.py b/src/oci/data_integration/models/create_source_application_info.py index 62360efc77..645ac7aace 100644 --- a/src/oci/data_integration/models/create_source_application_info.py +++ b/src/oci/data_integration/models/create_source_application_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_task_details.py b/src/oci/data_integration/models/create_task_details.py index f7ae8c0419..7071ad6f0c 100644 --- a/src/oci/data_integration/models/create_task_details.py +++ b/src/oci/data_integration/models/create_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_task_from_data_loader_task.py b/src/oci/data_integration/models/create_task_from_data_loader_task.py index 888d5a1183..5cb7b16acd 100644 --- a/src/oci/data_integration/models/create_task_from_data_loader_task.py +++ b/src/oci/data_integration/models/create_task_from_data_loader_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_task_details import CreateTaskDetails diff --git a/src/oci/data_integration/models/create_task_from_integration_task.py b/src/oci/data_integration/models/create_task_from_integration_task.py index a404f176e0..e5c5385147 100644 --- a/src/oci/data_integration/models/create_task_from_integration_task.py +++ b/src/oci/data_integration/models/create_task_from_integration_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_task_details import CreateTaskDetails diff --git a/src/oci/data_integration/models/create_task_from_oci_dataflow_task.py b/src/oci/data_integration/models/create_task_from_oci_dataflow_task.py index 844b2c5649..436b708e45 100644 --- a/src/oci/data_integration/models/create_task_from_oci_dataflow_task.py +++ b/src/oci/data_integration/models/create_task_from_oci_dataflow_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_task_details import CreateTaskDetails diff --git a/src/oci/data_integration/models/create_task_from_pipeline_task.py b/src/oci/data_integration/models/create_task_from_pipeline_task.py index 12824044b0..0fe72a07cc 100644 --- a/src/oci/data_integration/models/create_task_from_pipeline_task.py +++ b/src/oci/data_integration/models/create_task_from_pipeline_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_task_details import CreateTaskDetails diff --git a/src/oci/data_integration/models/create_task_from_rest_task.py b/src/oci/data_integration/models/create_task_from_rest_task.py index e8f16acfb1..6dba6a19ba 100644 --- a/src/oci/data_integration/models/create_task_from_rest_task.py +++ b/src/oci/data_integration/models/create_task_from_rest_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_task_details import CreateTaskDetails diff --git a/src/oci/data_integration/models/create_task_from_sql_task.py b/src/oci/data_integration/models/create_task_from_sql_task.py index 123864b8be..07dece5740 100644 --- a/src/oci/data_integration/models/create_task_from_sql_task.py +++ b/src/oci/data_integration/models/create_task_from_sql_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_task_details import CreateTaskDetails diff --git a/src/oci/data_integration/models/create_task_run_details.py b/src/oci/data_integration/models/create_task_run_details.py index ad2de4ec41..849bfd2b9b 100644 --- a/src/oci/data_integration/models/create_task_run_details.py +++ b/src/oci/data_integration/models/create_task_run_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_task_schedule_details.py b/src/oci/data_integration/models/create_task_schedule_details.py index a797d6bede..c12d55c4aa 100644 --- a/src/oci/data_integration/models/create_task_schedule_details.py +++ b/src/oci/data_integration/models/create_task_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_task_validation_details.py b/src/oci/data_integration/models/create_task_validation_details.py index 651e5845eb..951b4ada20 100644 --- a/src/oci/data_integration/models/create_task_validation_details.py +++ b/src/oci/data_integration/models/create_task_validation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_task_validation_from_data_loader_task.py b/src/oci/data_integration/models/create_task_validation_from_data_loader_task.py index a24aa2cca4..5a879b1014 100644 --- a/src/oci/data_integration/models/create_task_validation_from_data_loader_task.py +++ b/src/oci/data_integration/models/create_task_validation_from_data_loader_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_task_validation_details import CreateTaskValidationDetails diff --git a/src/oci/data_integration/models/create_task_validation_from_integration_task.py b/src/oci/data_integration/models/create_task_validation_from_integration_task.py index a469e5f2f2..90d6b45df9 100644 --- a/src/oci/data_integration/models/create_task_validation_from_integration_task.py +++ b/src/oci/data_integration/models/create_task_validation_from_integration_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_task_validation_details import CreateTaskValidationDetails diff --git a/src/oci/data_integration/models/create_task_validation_from_pipeline_task.py b/src/oci/data_integration/models/create_task_validation_from_pipeline_task.py index 0658cc789d..301356c62c 100644 --- a/src/oci/data_integration/models/create_task_validation_from_pipeline_task.py +++ b/src/oci/data_integration/models/create_task_validation_from_pipeline_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_task_validation_details import CreateTaskValidationDetails diff --git a/src/oci/data_integration/models/create_user_defined_function_details.py b/src/oci/data_integration/models/create_user_defined_function_details.py index e9341f5ae3..16d17c0f48 100644 --- a/src/oci/data_integration/models/create_user_defined_function_details.py +++ b/src/oci/data_integration/models/create_user_defined_function_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_user_defined_function_validation_details.py b/src/oci/data_integration/models/create_user_defined_function_validation_details.py index 68f4211b39..ff4148ddf5 100644 --- a/src/oci/data_integration/models/create_user_defined_function_validation_details.py +++ b/src/oci/data_integration/models/create_user_defined_function_validation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/create_workspace_details.py b/src/oci/data_integration/models/create_workspace_details.py index 2332aebfe6..f14c8d83fd 100644 --- a/src/oci/data_integration/models/create_workspace_details.py +++ b/src/oci/data_integration/models/create_workspace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/csv_format_attribute.py b/src/oci/data_integration/models/csv_format_attribute.py index 86bf327d09..12d4c01697 100644 --- a/src/oci/data_integration/models/csv_format_attribute.py +++ b/src/oci/data_integration/models/csv_format_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_format_attribute import AbstractFormatAttribute diff --git a/src/oci/data_integration/models/custom_frequency_details.py b/src/oci/data_integration/models/custom_frequency_details.py index 8da87f1642..7447027c9d 100644 --- a/src/oci/data_integration/models/custom_frequency_details.py +++ b/src/oci/data_integration/models/custom_frequency_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_frequency_details import AbstractFrequencyDetails diff --git a/src/oci/data_integration/models/daily_frequency_details.py b/src/oci/data_integration/models/daily_frequency_details.py index 2e5fcaa206..45ff6f8fbb 100644 --- a/src/oci/data_integration/models/daily_frequency_details.py +++ b/src/oci/data_integration/models/daily_frequency_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_frequency_details import AbstractFrequencyDetails diff --git a/src/oci/data_integration/models/data_asset.py b/src/oci/data_integration/models/data_asset.py index 4cca25395c..0ab503f95e 100644 --- a/src/oci/data_integration/models/data_asset.py +++ b/src/oci/data_integration/models/data_asset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/data_asset_from_adwc_details.py b/src/oci/data_integration/models/data_asset_from_adwc_details.py index 15f01f816b..f38ec9444b 100644 --- a/src/oci/data_integration/models/data_asset_from_adwc_details.py +++ b/src/oci/data_integration/models/data_asset_from_adwc_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_asset import DataAsset diff --git a/src/oci/data_integration/models/data_asset_from_amazon_s3.py b/src/oci/data_integration/models/data_asset_from_amazon_s3.py index 46d38a50fa..17f0de0a7a 100644 --- a/src/oci/data_integration/models/data_asset_from_amazon_s3.py +++ b/src/oci/data_integration/models/data_asset_from_amazon_s3.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_asset import DataAsset diff --git a/src/oci/data_integration/models/data_asset_from_atp_details.py b/src/oci/data_integration/models/data_asset_from_atp_details.py index 625a6acd5f..2ac6b24018 100644 --- a/src/oci/data_integration/models/data_asset_from_atp_details.py +++ b/src/oci/data_integration/models/data_asset_from_atp_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_asset import DataAsset diff --git a/src/oci/data_integration/models/data_asset_from_fusion_app.py b/src/oci/data_integration/models/data_asset_from_fusion_app.py index 5f3f26bbbc..ec08630249 100644 --- a/src/oci/data_integration/models/data_asset_from_fusion_app.py +++ b/src/oci/data_integration/models/data_asset_from_fusion_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_asset import DataAsset diff --git a/src/oci/data_integration/models/data_asset_from_jdbc.py b/src/oci/data_integration/models/data_asset_from_jdbc.py index 2bb8ef120e..9ac69033cb 100644 --- a/src/oci/data_integration/models/data_asset_from_jdbc.py +++ b/src/oci/data_integration/models/data_asset_from_jdbc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_asset import DataAsset diff --git a/src/oci/data_integration/models/data_asset_from_my_sql.py b/src/oci/data_integration/models/data_asset_from_my_sql.py index 0d928352f3..4f6c8579cd 100644 --- a/src/oci/data_integration/models/data_asset_from_my_sql.py +++ b/src/oci/data_integration/models/data_asset_from_my_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_asset import DataAsset diff --git a/src/oci/data_integration/models/data_asset_from_object_storage_details.py b/src/oci/data_integration/models/data_asset_from_object_storage_details.py index 90405a88f3..ebb56e4df9 100644 --- a/src/oci/data_integration/models/data_asset_from_object_storage_details.py +++ b/src/oci/data_integration/models/data_asset_from_object_storage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_asset import DataAsset diff --git a/src/oci/data_integration/models/data_asset_from_oracle_details.py b/src/oci/data_integration/models/data_asset_from_oracle_details.py index d9c41c3d65..30aa2981f6 100644 --- a/src/oci/data_integration/models/data_asset_from_oracle_details.py +++ b/src/oci/data_integration/models/data_asset_from_oracle_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_asset import DataAsset diff --git a/src/oci/data_integration/models/data_asset_summary.py b/src/oci/data_integration/models/data_asset_summary.py index 47543c3928..d84d8baa80 100644 --- a/src/oci/data_integration/models/data_asset_summary.py +++ b/src/oci/data_integration/models/data_asset_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/data_asset_summary_collection.py b/src/oci/data_integration/models/data_asset_summary_collection.py index e4e9d0c291..e355ec4e40 100644 --- a/src/oci/data_integration/models/data_asset_summary_collection.py +++ b/src/oci/data_integration/models/data_asset_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/data_asset_summary_from_adwc.py b/src/oci/data_integration/models/data_asset_summary_from_adwc.py index 0c331553c8..770e1cb88d 100644 --- a/src/oci/data_integration/models/data_asset_summary_from_adwc.py +++ b/src/oci/data_integration/models/data_asset_summary_from_adwc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_asset_summary import DataAssetSummary diff --git a/src/oci/data_integration/models/data_asset_summary_from_amazon_s3.py b/src/oci/data_integration/models/data_asset_summary_from_amazon_s3.py index 36730ccd3a..40448ce35b 100644 --- a/src/oci/data_integration/models/data_asset_summary_from_amazon_s3.py +++ b/src/oci/data_integration/models/data_asset_summary_from_amazon_s3.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_asset_summary import DataAssetSummary diff --git a/src/oci/data_integration/models/data_asset_summary_from_atp.py b/src/oci/data_integration/models/data_asset_summary_from_atp.py index 2a1098bade..0ca8d24f43 100644 --- a/src/oci/data_integration/models/data_asset_summary_from_atp.py +++ b/src/oci/data_integration/models/data_asset_summary_from_atp.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_asset_summary import DataAssetSummary diff --git a/src/oci/data_integration/models/data_asset_summary_from_fusion_app.py b/src/oci/data_integration/models/data_asset_summary_from_fusion_app.py index efd0987997..9534725ccc 100644 --- a/src/oci/data_integration/models/data_asset_summary_from_fusion_app.py +++ b/src/oci/data_integration/models/data_asset_summary_from_fusion_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_asset_summary import DataAssetSummary diff --git a/src/oci/data_integration/models/data_asset_summary_from_jdbc.py b/src/oci/data_integration/models/data_asset_summary_from_jdbc.py index 901ad4190a..c74a63183e 100644 --- a/src/oci/data_integration/models/data_asset_summary_from_jdbc.py +++ b/src/oci/data_integration/models/data_asset_summary_from_jdbc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_asset_summary import DataAssetSummary diff --git a/src/oci/data_integration/models/data_asset_summary_from_my_sql.py b/src/oci/data_integration/models/data_asset_summary_from_my_sql.py index 7d496b833e..894a4940cb 100644 --- a/src/oci/data_integration/models/data_asset_summary_from_my_sql.py +++ b/src/oci/data_integration/models/data_asset_summary_from_my_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_asset_summary import DataAssetSummary diff --git a/src/oci/data_integration/models/data_asset_summary_from_object_storage.py b/src/oci/data_integration/models/data_asset_summary_from_object_storage.py index 167797f95f..3e32853288 100644 --- a/src/oci/data_integration/models/data_asset_summary_from_object_storage.py +++ b/src/oci/data_integration/models/data_asset_summary_from_object_storage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_asset_summary import DataAssetSummary diff --git a/src/oci/data_integration/models/data_asset_summary_from_oracle.py b/src/oci/data_integration/models/data_asset_summary_from_oracle.py index 7dd19777d8..dfa5a86184 100644 --- a/src/oci/data_integration/models/data_asset_summary_from_oracle.py +++ b/src/oci/data_integration/models/data_asset_summary_from_oracle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_asset_summary import DataAssetSummary diff --git a/src/oci/data_integration/models/data_entity.py b/src/oci/data_integration/models/data_entity.py index 03f2fc94cb..b563d0c3d8 100644 --- a/src/oci/data_integration/models/data_entity.py +++ b/src/oci/data_integration/models/data_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/data_entity_details.py b/src/oci/data_integration/models/data_entity_details.py index 0b5cb33bfb..f91d70f83d 100644 --- a/src/oci/data_integration/models/data_entity_details.py +++ b/src/oci/data_integration/models/data_entity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/data_entity_from_data_store.py b/src/oci/data_integration/models/data_entity_from_data_store.py index 24b884ba6e..21726b5988 100644 --- a/src/oci/data_integration/models/data_entity_from_data_store.py +++ b/src/oci/data_integration/models/data_entity_from_data_store.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_entity import DataEntity diff --git a/src/oci/data_integration/models/data_entity_from_data_store_entity_details.py b/src/oci/data_integration/models/data_entity_from_data_store_entity_details.py index 86f0fdc7d0..604c466581 100644 --- a/src/oci/data_integration/models/data_entity_from_data_store_entity_details.py +++ b/src/oci/data_integration/models/data_entity_from_data_store_entity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_entity_details import DataEntityDetails diff --git a/src/oci/data_integration/models/data_entity_from_file.py b/src/oci/data_integration/models/data_entity_from_file.py index 7371cdde1c..8af3464714 100644 --- a/src/oci/data_integration/models/data_entity_from_file.py +++ b/src/oci/data_integration/models/data_entity_from_file.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_entity import DataEntity diff --git a/src/oci/data_integration/models/data_entity_from_file_entity_details.py b/src/oci/data_integration/models/data_entity_from_file_entity_details.py index d376047123..fa52caa1fa 100644 --- a/src/oci/data_integration/models/data_entity_from_file_entity_details.py +++ b/src/oci/data_integration/models/data_entity_from_file_entity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_entity_details import DataEntityDetails diff --git a/src/oci/data_integration/models/data_entity_from_sql.py b/src/oci/data_integration/models/data_entity_from_sql.py index ea0b117a1d..dd716e269b 100644 --- a/src/oci/data_integration/models/data_entity_from_sql.py +++ b/src/oci/data_integration/models/data_entity_from_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_entity import DataEntity diff --git a/src/oci/data_integration/models/data_entity_from_sql_entity_details.py b/src/oci/data_integration/models/data_entity_from_sql_entity_details.py index 88c6a48592..a435171927 100644 --- a/src/oci/data_integration/models/data_entity_from_sql_entity_details.py +++ b/src/oci/data_integration/models/data_entity_from_sql_entity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_entity_details import DataEntityDetails diff --git a/src/oci/data_integration/models/data_entity_from_table.py b/src/oci/data_integration/models/data_entity_from_table.py index 056fc5fdaf..13f725b639 100644 --- a/src/oci/data_integration/models/data_entity_from_table.py +++ b/src/oci/data_integration/models/data_entity_from_table.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_entity import DataEntity diff --git a/src/oci/data_integration/models/data_entity_from_table_entity_details.py b/src/oci/data_integration/models/data_entity_from_table_entity_details.py index 8cddb423ab..e89c18e551 100644 --- a/src/oci/data_integration/models/data_entity_from_table_entity_details.py +++ b/src/oci/data_integration/models/data_entity_from_table_entity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_entity_details import DataEntityDetails diff --git a/src/oci/data_integration/models/data_entity_from_view.py b/src/oci/data_integration/models/data_entity_from_view.py index 40a8e9d77b..24a3133924 100644 --- a/src/oci/data_integration/models/data_entity_from_view.py +++ b/src/oci/data_integration/models/data_entity_from_view.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_entity import DataEntity diff --git a/src/oci/data_integration/models/data_entity_from_view_entity_details.py b/src/oci/data_integration/models/data_entity_from_view_entity_details.py index 1b8193409a..509a9eb3d0 100644 --- a/src/oci/data_integration/models/data_entity_from_view_entity_details.py +++ b/src/oci/data_integration/models/data_entity_from_view_entity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_entity_details import DataEntityDetails diff --git a/src/oci/data_integration/models/data_entity_summary.py b/src/oci/data_integration/models/data_entity_summary.py index dc2af111eb..c1cc5ee8bb 100644 --- a/src/oci/data_integration/models/data_entity_summary.py +++ b/src/oci/data_integration/models/data_entity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/data_entity_summary_collection.py b/src/oci/data_integration/models/data_entity_summary_collection.py index dc4cf41a4b..327c068459 100644 --- a/src/oci/data_integration/models/data_entity_summary_collection.py +++ b/src/oci/data_integration/models/data_entity_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/data_entity_summary_from_data_store.py b/src/oci/data_integration/models/data_entity_summary_from_data_store.py index 71e5bb1ede..6348938d77 100644 --- a/src/oci/data_integration/models/data_entity_summary_from_data_store.py +++ b/src/oci/data_integration/models/data_entity_summary_from_data_store.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_entity_summary import DataEntitySummary diff --git a/src/oci/data_integration/models/data_entity_summary_from_file.py b/src/oci/data_integration/models/data_entity_summary_from_file.py index d4c7aadbf0..8b5e6197e4 100644 --- a/src/oci/data_integration/models/data_entity_summary_from_file.py +++ b/src/oci/data_integration/models/data_entity_summary_from_file.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_entity_summary import DataEntitySummary diff --git a/src/oci/data_integration/models/data_entity_summary_from_sql.py b/src/oci/data_integration/models/data_entity_summary_from_sql.py index 83f4f9b416..102986f789 100644 --- a/src/oci/data_integration/models/data_entity_summary_from_sql.py +++ b/src/oci/data_integration/models/data_entity_summary_from_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_entity_summary import DataEntitySummary diff --git a/src/oci/data_integration/models/data_entity_summary_from_table.py b/src/oci/data_integration/models/data_entity_summary_from_table.py index ed312de316..0136f848c9 100644 --- a/src/oci/data_integration/models/data_entity_summary_from_table.py +++ b/src/oci/data_integration/models/data_entity_summary_from_table.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_entity_summary import DataEntitySummary diff --git a/src/oci/data_integration/models/data_entity_summary_from_view.py b/src/oci/data_integration/models/data_entity_summary_from_view.py index ffe25113b4..156d97b254 100644 --- a/src/oci/data_integration/models/data_entity_summary_from_view.py +++ b/src/oci/data_integration/models/data_entity_summary_from_view.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .data_entity_summary import DataEntitySummary diff --git a/src/oci/data_integration/models/data_flow.py b/src/oci/data_integration/models/data_flow.py index 23836bcd6f..70bfc866cc 100644 --- a/src/oci/data_integration/models/data_flow.py +++ b/src/oci/data_integration/models/data_flow.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/data_flow_details.py b/src/oci/data_integration/models/data_flow_details.py index c3d3f312ab..3763e3b1b9 100644 --- a/src/oci/data_integration/models/data_flow_details.py +++ b/src/oci/data_integration/models/data_flow_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/data_flow_summary.py b/src/oci/data_integration/models/data_flow_summary.py index 98d45a845d..ef3dd60680 100644 --- a/src/oci/data_integration/models/data_flow_summary.py +++ b/src/oci/data_integration/models/data_flow_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/data_flow_summary_collection.py b/src/oci/data_integration/models/data_flow_summary_collection.py index 37c4046b81..9d0785a178 100644 --- a/src/oci/data_integration/models/data_flow_summary_collection.py +++ b/src/oci/data_integration/models/data_flow_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/data_flow_validation.py b/src/oci/data_integration/models/data_flow_validation.py index 1b6933a605..a7ce309098 100644 --- a/src/oci/data_integration/models/data_flow_validation.py +++ b/src/oci/data_integration/models/data_flow_validation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/data_flow_validation_summary.py b/src/oci/data_integration/models/data_flow_validation_summary.py index 941bd7ff2b..f57ec18ea2 100644 --- a/src/oci/data_integration/models/data_flow_validation_summary.py +++ b/src/oci/data_integration/models/data_flow_validation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/data_flow_validation_summary_collection.py b/src/oci/data_integration/models/data_flow_validation_summary_collection.py index 21bf4e8a4d..01795f6e63 100644 --- a/src/oci/data_integration/models/data_flow_validation_summary_collection.py +++ b/src/oci/data_integration/models/data_flow_validation_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/data_format.py b/src/oci/data_integration/models/data_format.py index 928f79b5e2..efb123f3a5 100644 --- a/src/oci/data_integration/models/data_format.py +++ b/src/oci/data_integration/models/data_format.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/data_type.py b/src/oci/data_integration/models/data_type.py index 4c81388f53..084274f95a 100644 --- a/src/oci/data_integration/models/data_type.py +++ b/src/oci/data_integration/models/data_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .base_type import BaseType diff --git a/src/oci/data_integration/models/dataflow_application.py b/src/oci/data_integration/models/dataflow_application.py index f11a8ea102..5eeca264c8 100644 --- a/src/oci/data_integration/models/dataflow_application.py +++ b/src/oci/data_integration/models/dataflow_application.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/dependent_object.py b/src/oci/data_integration/models/dependent_object.py index cc1e9acfed..acdf7169e4 100644 --- a/src/oci/data_integration/models/dependent_object.py +++ b/src/oci/data_integration/models/dependent_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/dependent_object_summary.py b/src/oci/data_integration/models/dependent_object_summary.py index 301d1d1951..8576a6b73a 100644 --- a/src/oci/data_integration/models/dependent_object_summary.py +++ b/src/oci/data_integration/models/dependent_object_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/dependent_object_summary_collection.py b/src/oci/data_integration/models/dependent_object_summary_collection.py index dfbd72abd4..a01c0ee654 100644 --- a/src/oci/data_integration/models/dependent_object_summary_collection.py +++ b/src/oci/data_integration/models/dependent_object_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/derived_field.py b/src/oci/data_integration/models/derived_field.py index f5af96458d..8434027975 100644 --- a/src/oci/data_integration/models/derived_field.py +++ b/src/oci/data_integration/models/derived_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .typed_object import TypedObject diff --git a/src/oci/data_integration/models/derived_type.py b/src/oci/data_integration/models/derived_type.py index 5a0980cdd3..5dae94cb43 100644 --- a/src/oci/data_integration/models/derived_type.py +++ b/src/oci/data_integration/models/derived_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .base_type import BaseType diff --git a/src/oci/data_integration/models/direct_field_map.py b/src/oci/data_integration/models/direct_field_map.py index 429ecd3310..032c4f9f16 100644 --- a/src/oci/data_integration/models/direct_field_map.py +++ b/src/oci/data_integration/models/direct_field_map.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .field_map import FieldMap diff --git a/src/oci/data_integration/models/direct_named_field_map.py b/src/oci/data_integration/models/direct_named_field_map.py index da4122e004..11e2b6e788 100644 --- a/src/oci/data_integration/models/direct_named_field_map.py +++ b/src/oci/data_integration/models/direct_named_field_map.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .field_map import FieldMap diff --git a/src/oci/data_integration/models/distinct.py b/src/oci/data_integration/models/distinct.py index 067e89c9e0..b84ff1ab0b 100644 --- a/src/oci/data_integration/models/distinct.py +++ b/src/oci/data_integration/models/distinct.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .operator import Operator diff --git a/src/oci/data_integration/models/dynamic_input_field.py b/src/oci/data_integration/models/dynamic_input_field.py index 09b6f5fb6f..29db2dd62b 100644 --- a/src/oci/data_integration/models/dynamic_input_field.py +++ b/src/oci/data_integration/models/dynamic_input_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .typed_object import TypedObject diff --git a/src/oci/data_integration/models/dynamic_proxy_field.py b/src/oci/data_integration/models/dynamic_proxy_field.py index 938251c607..fb5fa18008 100644 --- a/src/oci/data_integration/models/dynamic_proxy_field.py +++ b/src/oci/data_integration/models/dynamic_proxy_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .typed_object import TypedObject diff --git a/src/oci/data_integration/models/dynamic_type.py b/src/oci/data_integration/models/dynamic_type.py index 41ca7453b6..ca138081ad 100644 --- a/src/oci/data_integration/models/dynamic_type.py +++ b/src/oci/data_integration/models/dynamic_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .base_type import BaseType diff --git a/src/oci/data_integration/models/dynamic_type_handler.py b/src/oci/data_integration/models/dynamic_type_handler.py index ea8d6e0248..06dcdf666f 100644 --- a/src/oci/data_integration/models/dynamic_type_handler.py +++ b/src/oci/data_integration/models/dynamic_type_handler.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/end_operator.py b/src/oci/data_integration/models/end_operator.py index 46716aa015..1947fb71c2 100644 --- a/src/oci/data_integration/models/end_operator.py +++ b/src/oci/data_integration/models/end_operator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .operator import Operator diff --git a/src/oci/data_integration/models/enriched_entity.py b/src/oci/data_integration/models/enriched_entity.py index 468c450c87..7810f0181e 100644 --- a/src/oci/data_integration/models/enriched_entity.py +++ b/src/oci/data_integration/models/enriched_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/entity_shape.py b/src/oci/data_integration/models/entity_shape.py index f6f67e0c79..a809e65a5a 100644 --- a/src/oci/data_integration/models/entity_shape.py +++ b/src/oci/data_integration/models/entity_shape.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/entity_shape_from_file.py b/src/oci/data_integration/models/entity_shape_from_file.py index 62ff9fbb5e..bae43477ba 100644 --- a/src/oci/data_integration/models/entity_shape_from_file.py +++ b/src/oci/data_integration/models/entity_shape_from_file.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .entity_shape import EntityShape diff --git a/src/oci/data_integration/models/entity_shape_from_sql.py b/src/oci/data_integration/models/entity_shape_from_sql.py index 4fa6d4b207..e400a20117 100644 --- a/src/oci/data_integration/models/entity_shape_from_sql.py +++ b/src/oci/data_integration/models/entity_shape_from_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .entity_shape import EntityShape diff --git a/src/oci/data_integration/models/error_details.py b/src/oci/data_integration/models/error_details.py index 69f7491387..827cab8ec2 100644 --- a/src/oci/data_integration/models/error_details.py +++ b/src/oci/data_integration/models/error_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/execute_rest_call_config.py b/src/oci/data_integration/models/execute_rest_call_config.py index f82553d0aa..0e5dd518f3 100644 --- a/src/oci/data_integration/models/execute_rest_call_config.py +++ b/src/oci/data_integration/models/execute_rest_call_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/expression.py b/src/oci/data_integration/models/expression.py index 15c9a4a3ad..e42539b146 100644 --- a/src/oci/data_integration/models/expression.py +++ b/src/oci/data_integration/models/expression.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/expression_operator.py b/src/oci/data_integration/models/expression_operator.py index d13a54e092..4e24cfe79c 100644 --- a/src/oci/data_integration/models/expression_operator.py +++ b/src/oci/data_integration/models/expression_operator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .operator import Operator diff --git a/src/oci/data_integration/models/external_publication.py b/src/oci/data_integration/models/external_publication.py index 5bca159a8a..17f2538542 100644 --- a/src/oci/data_integration/models/external_publication.py +++ b/src/oci/data_integration/models/external_publication.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/external_publication_summary.py b/src/oci/data_integration/models/external_publication_summary.py index a19b92c685..8e677bc465 100644 --- a/src/oci/data_integration/models/external_publication_summary.py +++ b/src/oci/data_integration/models/external_publication_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/external_publication_summary_collection.py b/src/oci/data_integration/models/external_publication_summary_collection.py index b9f6e33130..37c0b3988a 100644 --- a/src/oci/data_integration/models/external_publication_summary_collection.py +++ b/src/oci/data_integration/models/external_publication_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/external_publication_validation.py b/src/oci/data_integration/models/external_publication_validation.py index b171bd2408..e8a39c069b 100644 --- a/src/oci/data_integration/models/external_publication_validation.py +++ b/src/oci/data_integration/models/external_publication_validation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/external_publication_validation_summary.py b/src/oci/data_integration/models/external_publication_validation_summary.py index 52e42e8ef6..33156105a3 100644 --- a/src/oci/data_integration/models/external_publication_validation_summary.py +++ b/src/oci/data_integration/models/external_publication_validation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/external_publication_validation_summary_collection.py b/src/oci/data_integration/models/external_publication_validation_summary_collection.py index d3b5dd8824..2421c1d8d8 100644 --- a/src/oci/data_integration/models/external_publication_validation_summary_collection.py +++ b/src/oci/data_integration/models/external_publication_validation_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/external_storage.py b/src/oci/data_integration/models/external_storage.py index 0eadba9f78..bef6abb8bd 100644 --- a/src/oci/data_integration/models/external_storage.py +++ b/src/oci/data_integration/models/external_storage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connector_attribute import ConnectorAttribute diff --git a/src/oci/data_integration/models/field_map.py b/src/oci/data_integration/models/field_map.py index 211eb7dfd1..33c046dd7d 100644 --- a/src/oci/data_integration/models/field_map.py +++ b/src/oci/data_integration/models/field_map.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/filter.py b/src/oci/data_integration/models/filter.py index 6017c9b521..0343ea7f1c 100644 --- a/src/oci/data_integration/models/filter.py +++ b/src/oci/data_integration/models/filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .operator import Operator diff --git a/src/oci/data_integration/models/filter_push.py b/src/oci/data_integration/models/filter_push.py index b5fdd920c2..bacb5e27d3 100644 --- a/src/oci/data_integration/models/filter_push.py +++ b/src/oci/data_integration/models/filter_push.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .push_down_operation import PushDownOperation diff --git a/src/oci/data_integration/models/flow_node.py b/src/oci/data_integration/models/flow_node.py index f13690b6fd..11cf28c111 100644 --- a/src/oci/data_integration/models/flow_node.py +++ b/src/oci/data_integration/models/flow_node.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/flow_port.py b/src/oci/data_integration/models/flow_port.py index 31fe0b20de..ac95c114e2 100644 --- a/src/oci/data_integration/models/flow_port.py +++ b/src/oci/data_integration/models/flow_port.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .typed_object import TypedObject diff --git a/src/oci/data_integration/models/flow_port_link.py b/src/oci/data_integration/models/flow_port_link.py index fba9d59547..76bdd59b92 100644 --- a/src/oci/data_integration/models/flow_port_link.py +++ b/src/oci/data_integration/models/flow_port_link.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/folder.py b/src/oci/data_integration/models/folder.py index fab0a1bd87..3366d16e54 100644 --- a/src/oci/data_integration/models/folder.py +++ b/src/oci/data_integration/models/folder.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/folder_details.py b/src/oci/data_integration/models/folder_details.py index 342009f266..120952ec34 100644 --- a/src/oci/data_integration/models/folder_details.py +++ b/src/oci/data_integration/models/folder_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/folder_summary.py b/src/oci/data_integration/models/folder_summary.py index cc4b71e180..eae70bf01c 100644 --- a/src/oci/data_integration/models/folder_summary.py +++ b/src/oci/data_integration/models/folder_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/folder_summary_collection.py b/src/oci/data_integration/models/folder_summary_collection.py index b1ea9f6d01..e5aca979b0 100644 --- a/src/oci/data_integration/models/folder_summary_collection.py +++ b/src/oci/data_integration/models/folder_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/foreign_key.py b/src/oci/data_integration/models/foreign_key.py index a3115bd854..847c05e425 100644 --- a/src/oci/data_integration/models/foreign_key.py +++ b/src/oci/data_integration/models/foreign_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .key import Key diff --git a/src/oci/data_integration/models/function_library.py b/src/oci/data_integration/models/function_library.py index e48609f30a..38e5a50eef 100644 --- a/src/oci/data_integration/models/function_library.py +++ b/src/oci/data_integration/models/function_library.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/function_library_details.py b/src/oci/data_integration/models/function_library_details.py index a01a71cb0e..4f7f823898 100644 --- a/src/oci/data_integration/models/function_library_details.py +++ b/src/oci/data_integration/models/function_library_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/function_library_summary.py b/src/oci/data_integration/models/function_library_summary.py index 4e21f1b462..48f3001662 100644 --- a/src/oci/data_integration/models/function_library_summary.py +++ b/src/oci/data_integration/models/function_library_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/function_library_summary_collection.py b/src/oci/data_integration/models/function_library_summary_collection.py index 5c50bbcaec..bfe6925716 100644 --- a/src/oci/data_integration/models/function_library_summary_collection.py +++ b/src/oci/data_integration/models/function_library_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/function_signature.py b/src/oci/data_integration/models/function_signature.py index f1411fb7fd..d0b4a4c87d 100644 --- a/src/oci/data_integration/models/function_signature.py +++ b/src/oci/data_integration/models/function_signature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/hourly_frequency_details.py b/src/oci/data_integration/models/hourly_frequency_details.py index 99a273997b..a82c5561d6 100644 --- a/src/oci/data_integration/models/hourly_frequency_details.py +++ b/src/oci/data_integration/models/hourly_frequency_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_frequency_details import AbstractFrequencyDetails diff --git a/src/oci/data_integration/models/input_field.py b/src/oci/data_integration/models/input_field.py index 1a6dd2ec6b..d890677f10 100644 --- a/src/oci/data_integration/models/input_field.py +++ b/src/oci/data_integration/models/input_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .typed_object import TypedObject diff --git a/src/oci/data_integration/models/input_link.py b/src/oci/data_integration/models/input_link.py index 5b3395fbdf..1ed923c0c2 100644 --- a/src/oci/data_integration/models/input_link.py +++ b/src/oci/data_integration/models/input_link.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .flow_port_link import FlowPortLink diff --git a/src/oci/data_integration/models/input_port.py b/src/oci/data_integration/models/input_port.py index 1a1de8fd2b..f85e29601c 100644 --- a/src/oci/data_integration/models/input_port.py +++ b/src/oci/data_integration/models/input_port.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .typed_object import TypedObject diff --git a/src/oci/data_integration/models/intersect.py b/src/oci/data_integration/models/intersect.py index 86e26a0af9..799f1c4d93 100644 --- a/src/oci/data_integration/models/intersect.py +++ b/src/oci/data_integration/models/intersect.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .operator import Operator diff --git a/src/oci/data_integration/models/java_type.py b/src/oci/data_integration/models/java_type.py index b13ed9fd53..0c6885c19c 100644 --- a/src/oci/data_integration/models/java_type.py +++ b/src/oci/data_integration/models/java_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .base_type import BaseType diff --git a/src/oci/data_integration/models/join.py b/src/oci/data_integration/models/join.py index c873801844..25fa7a600c 100644 --- a/src/oci/data_integration/models/join.py +++ b/src/oci/data_integration/models/join.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .push_down_operation import PushDownOperation diff --git a/src/oci/data_integration/models/joiner.py b/src/oci/data_integration/models/joiner.py index 0f5b036210..5c56d62617 100644 --- a/src/oci/data_integration/models/joiner.py +++ b/src/oci/data_integration/models/joiner.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .operator import Operator diff --git a/src/oci/data_integration/models/json_format_attribute.py b/src/oci/data_integration/models/json_format_attribute.py index c8aa0dcef8..d710d0454e 100644 --- a/src/oci/data_integration/models/json_format_attribute.py +++ b/src/oci/data_integration/models/json_format_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_format_attribute import AbstractFormatAttribute diff --git a/src/oci/data_integration/models/key.py b/src/oci/data_integration/models/key.py index f20b0773ac..358d6967bf 100644 --- a/src/oci/data_integration/models/key.py +++ b/src/oci/data_integration/models/key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/key_attribute.py b/src/oci/data_integration/models/key_attribute.py index a867f4d63b..f544a78cac 100644 --- a/src/oci/data_integration/models/key_attribute.py +++ b/src/oci/data_integration/models/key_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/key_range.py b/src/oci/data_integration/models/key_range.py index 7332bdc5a4..fd83d5776e 100644 --- a/src/oci/data_integration/models/key_range.py +++ b/src/oci/data_integration/models/key_range.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/key_range_partition_config.py b/src/oci/data_integration/models/key_range_partition_config.py index 9fc77d07ac..20befd6ad2 100644 --- a/src/oci/data_integration/models/key_range_partition_config.py +++ b/src/oci/data_integration/models/key_range_partition_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .partition_config import PartitionConfig diff --git a/src/oci/data_integration/models/last_run_details.py b/src/oci/data_integration/models/last_run_details.py index 6cf3487fbf..1487e7e3ec 100644 --- a/src/oci/data_integration/models/last_run_details.py +++ b/src/oci/data_integration/models/last_run_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/lookup.py b/src/oci/data_integration/models/lookup.py index f558edbc15..6be7a899fa 100644 --- a/src/oci/data_integration/models/lookup.py +++ b/src/oci/data_integration/models/lookup.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .operator import Operator diff --git a/src/oci/data_integration/models/macro_field.py b/src/oci/data_integration/models/macro_field.py index 8350959d58..3ed801ecbc 100644 --- a/src/oci/data_integration/models/macro_field.py +++ b/src/oci/data_integration/models/macro_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .typed_object import TypedObject diff --git a/src/oci/data_integration/models/merge_operator.py b/src/oci/data_integration/models/merge_operator.py index b47ec05b56..11cc43bdcd 100644 --- a/src/oci/data_integration/models/merge_operator.py +++ b/src/oci/data_integration/models/merge_operator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .operator import Operator diff --git a/src/oci/data_integration/models/message.py b/src/oci/data_integration/models/message.py index 6384e26b91..bb79b212c8 100644 --- a/src/oci/data_integration/models/message.py +++ b/src/oci/data_integration/models/message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/minus.py b/src/oci/data_integration/models/minus.py index 715cdb5dcd..0eb1e72a56 100644 --- a/src/oci/data_integration/models/minus.py +++ b/src/oci/data_integration/models/minus.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .operator import Operator diff --git a/src/oci/data_integration/models/monthly_frequency_details.py b/src/oci/data_integration/models/monthly_frequency_details.py index 61abedfa2c..f0d41417ac 100644 --- a/src/oci/data_integration/models/monthly_frequency_details.py +++ b/src/oci/data_integration/models/monthly_frequency_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_frequency_details import AbstractFrequencyDetails diff --git a/src/oci/data_integration/models/monthly_rule_frequency_details.py b/src/oci/data_integration/models/monthly_rule_frequency_details.py index 5b49b43fff..a87cfc7f24 100644 --- a/src/oci/data_integration/models/monthly_rule_frequency_details.py +++ b/src/oci/data_integration/models/monthly_rule_frequency_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_frequency_details import AbstractFrequencyDetails diff --git a/src/oci/data_integration/models/name_list_rule.py b/src/oci/data_integration/models/name_list_rule.py index 986c1a4878..e8c9d7d197 100644 --- a/src/oci/data_integration/models/name_list_rule.py +++ b/src/oci/data_integration/models/name_list_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .projection_rule import ProjectionRule diff --git a/src/oci/data_integration/models/name_pattern_rule.py b/src/oci/data_integration/models/name_pattern_rule.py index fbfc6187d9..8c4bafc5f4 100644 --- a/src/oci/data_integration/models/name_pattern_rule.py +++ b/src/oci/data_integration/models/name_pattern_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .projection_rule import ProjectionRule diff --git a/src/oci/data_integration/models/native_shape_field.py b/src/oci/data_integration/models/native_shape_field.py index cb8db7147f..7fc9ac2079 100644 --- a/src/oci/data_integration/models/native_shape_field.py +++ b/src/oci/data_integration/models/native_shape_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/object_metadata.py b/src/oci/data_integration/models/object_metadata.py index 0e8455b1fc..caf8630356 100644 --- a/src/oci/data_integration/models/object_metadata.py +++ b/src/oci/data_integration/models/object_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/object_storage_write_attribute.py b/src/oci/data_integration/models/object_storage_write_attribute.py index b248ee58da..f8cf736b41 100644 --- a/src/oci/data_integration/models/object_storage_write_attribute.py +++ b/src/oci/data_integration/models/object_storage_write_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_write_attribute import AbstractWriteAttribute diff --git a/src/oci/data_integration/models/object_storage_write_attributes.py b/src/oci/data_integration/models/object_storage_write_attributes.py index 6127a920a9..3e7cff63f1 100644 --- a/src/oci/data_integration/models/object_storage_write_attributes.py +++ b/src/oci/data_integration/models/object_storage_write_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_write_attribute import AbstractWriteAttribute diff --git a/src/oci/data_integration/models/oci_vault_secret_config.py b/src/oci/data_integration/models/oci_vault_secret_config.py index 833789ae09..3dd715f07b 100644 --- a/src/oci/data_integration/models/oci_vault_secret_config.py +++ b/src/oci/data_integration/models/oci_vault_secret_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .secret_config import SecretConfig diff --git a/src/oci/data_integration/models/operator.py b/src/oci/data_integration/models/operator.py index 1e4d304dfb..cc3717eaa4 100644 --- a/src/oci/data_integration/models/operator.py +++ b/src/oci/data_integration/models/operator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/oracle_adwc_write_attribute.py b/src/oci/data_integration/models/oracle_adwc_write_attribute.py index f8e2c798c5..ba66f740b2 100644 --- a/src/oci/data_integration/models/oracle_adwc_write_attribute.py +++ b/src/oci/data_integration/models/oracle_adwc_write_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_write_attribute import AbstractWriteAttribute diff --git a/src/oci/data_integration/models/oracle_adwc_write_attributes.py b/src/oci/data_integration/models/oracle_adwc_write_attributes.py index 53cc58e5fc..22ab79549d 100644 --- a/src/oci/data_integration/models/oracle_adwc_write_attributes.py +++ b/src/oci/data_integration/models/oracle_adwc_write_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_write_attribute import AbstractWriteAttribute diff --git a/src/oci/data_integration/models/oracle_atp_write_attribute.py b/src/oci/data_integration/models/oracle_atp_write_attribute.py index 5739acb206..0374fffee3 100644 --- a/src/oci/data_integration/models/oracle_atp_write_attribute.py +++ b/src/oci/data_integration/models/oracle_atp_write_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_write_attribute import AbstractWriteAttribute diff --git a/src/oci/data_integration/models/oracle_atp_write_attributes.py b/src/oci/data_integration/models/oracle_atp_write_attributes.py index 8ff5b15e8e..f19423f088 100644 --- a/src/oci/data_integration/models/oracle_atp_write_attributes.py +++ b/src/oci/data_integration/models/oracle_atp_write_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_write_attribute import AbstractWriteAttribute diff --git a/src/oci/data_integration/models/oracle_read_attribute.py b/src/oci/data_integration/models/oracle_read_attribute.py index eb2e11b489..1e5b7855e1 100644 --- a/src/oci/data_integration/models/oracle_read_attribute.py +++ b/src/oci/data_integration/models/oracle_read_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_read_attribute import AbstractReadAttribute diff --git a/src/oci/data_integration/models/oracle_read_attributes.py b/src/oci/data_integration/models/oracle_read_attributes.py index f4889074da..e06ed66718 100644 --- a/src/oci/data_integration/models/oracle_read_attributes.py +++ b/src/oci/data_integration/models/oracle_read_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_read_attribute import AbstractReadAttribute diff --git a/src/oci/data_integration/models/oracle_write_attribute.py b/src/oci/data_integration/models/oracle_write_attribute.py index a4a485ba22..0326f488ef 100644 --- a/src/oci/data_integration/models/oracle_write_attribute.py +++ b/src/oci/data_integration/models/oracle_write_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_write_attribute import AbstractWriteAttribute diff --git a/src/oci/data_integration/models/oracle_write_attributes.py b/src/oci/data_integration/models/oracle_write_attributes.py index 97877b5c40..bc9d4148b3 100644 --- a/src/oci/data_integration/models/oracle_write_attributes.py +++ b/src/oci/data_integration/models/oracle_write_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_write_attribute import AbstractWriteAttribute diff --git a/src/oci/data_integration/models/output_field.py b/src/oci/data_integration/models/output_field.py index c8f60597d4..388850f201 100644 --- a/src/oci/data_integration/models/output_field.py +++ b/src/oci/data_integration/models/output_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .typed_object import TypedObject diff --git a/src/oci/data_integration/models/output_link.py b/src/oci/data_integration/models/output_link.py index 32e4d90a1f..5d6fe136c7 100644 --- a/src/oci/data_integration/models/output_link.py +++ b/src/oci/data_integration/models/output_link.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .flow_port_link import FlowPortLink diff --git a/src/oci/data_integration/models/output_port.py b/src/oci/data_integration/models/output_port.py index 1b04efd485..d0d331e076 100644 --- a/src/oci/data_integration/models/output_port.py +++ b/src/oci/data_integration/models/output_port.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .typed_object import TypedObject diff --git a/src/oci/data_integration/models/parameter.py b/src/oci/data_integration/models/parameter.py index 4ecdaa9988..779046755a 100644 --- a/src/oci/data_integration/models/parameter.py +++ b/src/oci/data_integration/models/parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .typed_object import TypedObject diff --git a/src/oci/data_integration/models/parameter_value.py b/src/oci/data_integration/models/parameter_value.py index 07c4796c1c..49324afecb 100644 --- a/src/oci/data_integration/models/parameter_value.py +++ b/src/oci/data_integration/models/parameter_value.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/parent_reference.py b/src/oci/data_integration/models/parent_reference.py index 18f892b37f..a7ece28444 100644 --- a/src/oci/data_integration/models/parent_reference.py +++ b/src/oci/data_integration/models/parent_reference.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/parquet_format_attribute.py b/src/oci/data_integration/models/parquet_format_attribute.py index ccf30cb90e..4584b130ff 100644 --- a/src/oci/data_integration/models/parquet_format_attribute.py +++ b/src/oci/data_integration/models/parquet_format_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_format_attribute import AbstractFormatAttribute diff --git a/src/oci/data_integration/models/partition_config.py b/src/oci/data_integration/models/partition_config.py index 9a5f1206ef..a8a2157aca 100644 --- a/src/oci/data_integration/models/partition_config.py +++ b/src/oci/data_integration/models/partition_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/patch.py b/src/oci/data_integration/models/patch.py index 980ffed722..1da348cb39 100644 --- a/src/oci/data_integration/models/patch.py +++ b/src/oci/data_integration/models/patch.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/patch_change_summary.py b/src/oci/data_integration/models/patch_change_summary.py index fe08916c36..5b4d254dd3 100644 --- a/src/oci/data_integration/models/patch_change_summary.py +++ b/src/oci/data_integration/models/patch_change_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/patch_change_summary_collection.py b/src/oci/data_integration/models/patch_change_summary_collection.py index c92d5d5559..46fc5fd495 100644 --- a/src/oci/data_integration/models/patch_change_summary_collection.py +++ b/src/oci/data_integration/models/patch_change_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/patch_object_metadata.py b/src/oci/data_integration/models/patch_object_metadata.py index 242b781cb5..5c19cf2353 100644 --- a/src/oci/data_integration/models/patch_object_metadata.py +++ b/src/oci/data_integration/models/patch_object_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/patch_summary.py b/src/oci/data_integration/models/patch_summary.py index 757df3dedb..c9a55efcd7 100644 --- a/src/oci/data_integration/models/patch_summary.py +++ b/src/oci/data_integration/models/patch_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/patch_summary_collection.py b/src/oci/data_integration/models/patch_summary_collection.py index 34db7bd987..f7e657f475 100644 --- a/src/oci/data_integration/models/patch_summary_collection.py +++ b/src/oci/data_integration/models/patch_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/pipeline.py b/src/oci/data_integration/models/pipeline.py index 81d0dfab5e..bcdc67aaf7 100644 --- a/src/oci/data_integration/models/pipeline.py +++ b/src/oci/data_integration/models/pipeline.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/pipeline_summary.py b/src/oci/data_integration/models/pipeline_summary.py index ff06e6cbd8..eb3f7de1c0 100644 --- a/src/oci/data_integration/models/pipeline_summary.py +++ b/src/oci/data_integration/models/pipeline_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/pipeline_summary_collection.py b/src/oci/data_integration/models/pipeline_summary_collection.py index 0cee619e20..d91fc14c02 100644 --- a/src/oci/data_integration/models/pipeline_summary_collection.py +++ b/src/oci/data_integration/models/pipeline_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/pipeline_validation.py b/src/oci/data_integration/models/pipeline_validation.py index ed9a1b593d..f800ba07b5 100644 --- a/src/oci/data_integration/models/pipeline_validation.py +++ b/src/oci/data_integration/models/pipeline_validation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/pipeline_validation_summary.py b/src/oci/data_integration/models/pipeline_validation_summary.py index 2281d5d8e5..6b8a63cdea 100644 --- a/src/oci/data_integration/models/pipeline_validation_summary.py +++ b/src/oci/data_integration/models/pipeline_validation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/pipeline_validation_summary_collection.py b/src/oci/data_integration/models/pipeline_validation_summary_collection.py index ce2a765313..0863fb5b5c 100644 --- a/src/oci/data_integration/models/pipeline_validation_summary_collection.py +++ b/src/oci/data_integration/models/pipeline_validation_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/primary_key.py b/src/oci/data_integration/models/primary_key.py index 38d576e185..6e88a6e660 100644 --- a/src/oci/data_integration/models/primary_key.py +++ b/src/oci/data_integration/models/primary_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .unique_key import UniqueKey diff --git a/src/oci/data_integration/models/project.py b/src/oci/data_integration/models/project.py index eab17fde80..abf49beb7e 100644 --- a/src/oci/data_integration/models/project.py +++ b/src/oci/data_integration/models/project.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/project_details.py b/src/oci/data_integration/models/project_details.py index c86aea6a02..64d954303b 100644 --- a/src/oci/data_integration/models/project_details.py +++ b/src/oci/data_integration/models/project_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/project_summary.py b/src/oci/data_integration/models/project_summary.py index ee60b4ec40..382abe6453 100644 --- a/src/oci/data_integration/models/project_summary.py +++ b/src/oci/data_integration/models/project_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/project_summary_collection.py b/src/oci/data_integration/models/project_summary_collection.py index 53df306cd5..2d30eeefd7 100644 --- a/src/oci/data_integration/models/project_summary_collection.py +++ b/src/oci/data_integration/models/project_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/projection.py b/src/oci/data_integration/models/projection.py index 55356d0ad1..e1aa5fe8e2 100644 --- a/src/oci/data_integration/models/projection.py +++ b/src/oci/data_integration/models/projection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .operator import Operator diff --git a/src/oci/data_integration/models/projection_rule.py b/src/oci/data_integration/models/projection_rule.py index 53c4a83378..3c1e85cbb2 100644 --- a/src/oci/data_integration/models/projection_rule.py +++ b/src/oci/data_integration/models/projection_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/proxy_field.py b/src/oci/data_integration/models/proxy_field.py index fd72243ff6..41f127fcdd 100644 --- a/src/oci/data_integration/models/proxy_field.py +++ b/src/oci/data_integration/models/proxy_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .typed_object import TypedObject diff --git a/src/oci/data_integration/models/published_object.py b/src/oci/data_integration/models/published_object.py index cc4ebeb4ed..b267765f36 100644 --- a/src/oci/data_integration/models/published_object.py +++ b/src/oci/data_integration/models/published_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/published_object_from_data_loader_task.py b/src/oci/data_integration/models/published_object_from_data_loader_task.py index 0d04fb5a7d..8464604235 100644 --- a/src/oci/data_integration/models/published_object_from_data_loader_task.py +++ b/src/oci/data_integration/models/published_object_from_data_loader_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .published_object import PublishedObject diff --git a/src/oci/data_integration/models/published_object_from_integration_task.py b/src/oci/data_integration/models/published_object_from_integration_task.py index ca2e021f5f..1c251ead70 100644 --- a/src/oci/data_integration/models/published_object_from_integration_task.py +++ b/src/oci/data_integration/models/published_object_from_integration_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .published_object import PublishedObject diff --git a/src/oci/data_integration/models/published_object_from_pipeline_task.py b/src/oci/data_integration/models/published_object_from_pipeline_task.py index 629206054b..fa7904c741 100644 --- a/src/oci/data_integration/models/published_object_from_pipeline_task.py +++ b/src/oci/data_integration/models/published_object_from_pipeline_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .published_object import PublishedObject diff --git a/src/oci/data_integration/models/published_object_from_pipeline_task_summary.py b/src/oci/data_integration/models/published_object_from_pipeline_task_summary.py index d34054f9f1..4e608ede16 100644 --- a/src/oci/data_integration/models/published_object_from_pipeline_task_summary.py +++ b/src/oci/data_integration/models/published_object_from_pipeline_task_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .published_object_summary import PublishedObjectSummary diff --git a/src/oci/data_integration/models/published_object_summary.py b/src/oci/data_integration/models/published_object_summary.py index 6764df250c..fb87e4bbda 100644 --- a/src/oci/data_integration/models/published_object_summary.py +++ b/src/oci/data_integration/models/published_object_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/published_object_summary_collection.py b/src/oci/data_integration/models/published_object_summary_collection.py index 852dbf6c3b..63b63497f0 100644 --- a/src/oci/data_integration/models/published_object_summary_collection.py +++ b/src/oci/data_integration/models/published_object_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/published_object_summary_from_data_loader_task.py b/src/oci/data_integration/models/published_object_summary_from_data_loader_task.py index f1c55806c2..0769c7eb0e 100644 --- a/src/oci/data_integration/models/published_object_summary_from_data_loader_task.py +++ b/src/oci/data_integration/models/published_object_summary_from_data_loader_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .published_object_summary import PublishedObjectSummary diff --git a/src/oci/data_integration/models/published_object_summary_from_integration_task.py b/src/oci/data_integration/models/published_object_summary_from_integration_task.py index b04047b7bf..525cd6555f 100644 --- a/src/oci/data_integration/models/published_object_summary_from_integration_task.py +++ b/src/oci/data_integration/models/published_object_summary_from_integration_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .published_object_summary import PublishedObjectSummary diff --git a/src/oci/data_integration/models/push_down_operation.py b/src/oci/data_integration/models/push_down_operation.py index b5ad093e4c..bb9d197c63 100644 --- a/src/oci/data_integration/models/push_down_operation.py +++ b/src/oci/data_integration/models/push_down_operation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/query.py b/src/oci/data_integration/models/query.py index e5f76e0a34..a5a257b548 100644 --- a/src/oci/data_integration/models/query.py +++ b/src/oci/data_integration/models/query.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .push_down_operation import PushDownOperation diff --git a/src/oci/data_integration/models/read_operation_config.py b/src/oci/data_integration/models/read_operation_config.py index 86270cb74c..bf75817b6f 100644 --- a/src/oci/data_integration/models/read_operation_config.py +++ b/src/oci/data_integration/models/read_operation_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_data_operation_config import AbstractDataOperationConfig diff --git a/src/oci/data_integration/models/reference.py b/src/oci/data_integration/models/reference.py index 5b7bc4cf57..52bcc895e1 100644 --- a/src/oci/data_integration/models/reference.py +++ b/src/oci/data_integration/models/reference.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/reference_summary.py b/src/oci/data_integration/models/reference_summary.py index 2ffd4439ee..b23e2e00fd 100644 --- a/src/oci/data_integration/models/reference_summary.py +++ b/src/oci/data_integration/models/reference_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/reference_summary_collection.py b/src/oci/data_integration/models/reference_summary_collection.py index 57ea9dc069..fb262593bb 100644 --- a/src/oci/data_integration/models/reference_summary_collection.py +++ b/src/oci/data_integration/models/reference_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/reference_used_by.py b/src/oci/data_integration/models/reference_used_by.py index 33bb2d5514..962d6ea321 100644 --- a/src/oci/data_integration/models/reference_used_by.py +++ b/src/oci/data_integration/models/reference_used_by.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/registry_metadata.py b/src/oci/data_integration/models/registry_metadata.py index 8f914ca0a8..785f618756 100644 --- a/src/oci/data_integration/models/registry_metadata.py +++ b/src/oci/data_integration/models/registry_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/rename_rule.py b/src/oci/data_integration/models/rename_rule.py index bb854c38ed..3f7b9fff86 100644 --- a/src/oci/data_integration/models/rename_rule.py +++ b/src/oci/data_integration/models/rename_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .projection_rule import ProjectionRule diff --git a/src/oci/data_integration/models/resource_configuration.py b/src/oci/data_integration/models/resource_configuration.py index fdba904b66..8521a9a47f 100644 --- a/src/oci/data_integration/models/resource_configuration.py +++ b/src/oci/data_integration/models/resource_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/rest_call_config.py b/src/oci/data_integration/models/rest_call_config.py index 74398ba42b..94417a8d5e 100644 --- a/src/oci/data_integration/models/rest_call_config.py +++ b/src/oci/data_integration/models/rest_call_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/root_object.py b/src/oci/data_integration/models/root_object.py index c4367678b9..64f63209c2 100644 --- a/src/oci/data_integration/models/root_object.py +++ b/src/oci/data_integration/models/root_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/rule_based_field_map.py b/src/oci/data_integration/models/rule_based_field_map.py index 4a62808d60..bb7a474621 100644 --- a/src/oci/data_integration/models/rule_based_field_map.py +++ b/src/oci/data_integration/models/rule_based_field_map.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .field_map import FieldMap diff --git a/src/oci/data_integration/models/rule_type_config.py b/src/oci/data_integration/models/rule_type_config.py index 9948a06dbb..2e3d2c2d88 100644 --- a/src/oci/data_integration/models/rule_type_config.py +++ b/src/oci/data_integration/models/rule_type_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .dynamic_type_handler import DynamicTypeHandler diff --git a/src/oci/data_integration/models/schedule.py b/src/oci/data_integration/models/schedule.py index c1a6b2cc90..13908ea463 100644 --- a/src/oci/data_integration/models/schedule.py +++ b/src/oci/data_integration/models/schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/schedule_summary.py b/src/oci/data_integration/models/schedule_summary.py index f746c206a1..32e90bf552 100644 --- a/src/oci/data_integration/models/schedule_summary.py +++ b/src/oci/data_integration/models/schedule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/schedule_summary_collection.py b/src/oci/data_integration/models/schedule_summary_collection.py index d30d423139..f6e5652487 100644 --- a/src/oci/data_integration/models/schedule_summary_collection.py +++ b/src/oci/data_integration/models/schedule_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/schema.py b/src/oci/data_integration/models/schema.py index 9498e9870c..462b230f2e 100644 --- a/src/oci/data_integration/models/schema.py +++ b/src/oci/data_integration/models/schema.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/schema_drift_config.py b/src/oci/data_integration/models/schema_drift_config.py index 838458a663..8cf3f370db 100644 --- a/src/oci/data_integration/models/schema_drift_config.py +++ b/src/oci/data_integration/models/schema_drift_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/schema_summary.py b/src/oci/data_integration/models/schema_summary.py index fce5eb7ec4..d17dd16eaf 100644 --- a/src/oci/data_integration/models/schema_summary.py +++ b/src/oci/data_integration/models/schema_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/schema_summary_collection.py b/src/oci/data_integration/models/schema_summary_collection.py index 75830de544..51c6f8ca48 100644 --- a/src/oci/data_integration/models/schema_summary_collection.py +++ b/src/oci/data_integration/models/schema_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/script.py b/src/oci/data_integration/models/script.py index 5c0d4a22a0..eb78ea474f 100644 --- a/src/oci/data_integration/models/script.py +++ b/src/oci/data_integration/models/script.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/secret_config.py b/src/oci/data_integration/models/secret_config.py index 77e2f27792..76802cfc26 100644 --- a/src/oci/data_integration/models/secret_config.py +++ b/src/oci/data_integration/models/secret_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/select.py b/src/oci/data_integration/models/select.py index 8ff8914c27..b850fb2d3d 100644 --- a/src/oci/data_integration/models/select.py +++ b/src/oci/data_integration/models/select.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .push_down_operation import PushDownOperation diff --git a/src/oci/data_integration/models/sensitive_attribute.py b/src/oci/data_integration/models/sensitive_attribute.py index 927d39f34b..26e1e9d286 100644 --- a/src/oci/data_integration/models/sensitive_attribute.py +++ b/src/oci/data_integration/models/sensitive_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/shape.py b/src/oci/data_integration/models/shape.py index 5348a83479..06185cbecd 100644 --- a/src/oci/data_integration/models/shape.py +++ b/src/oci/data_integration/models/shape.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .typed_object import TypedObject diff --git a/src/oci/data_integration/models/shape_field.py b/src/oci/data_integration/models/shape_field.py index 12bea65ff4..e7378092ee 100644 --- a/src/oci/data_integration/models/shape_field.py +++ b/src/oci/data_integration/models/shape_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .typed_object import TypedObject diff --git a/src/oci/data_integration/models/sort.py b/src/oci/data_integration/models/sort.py index bd3d463385..e966a0ad71 100644 --- a/src/oci/data_integration/models/sort.py +++ b/src/oci/data_integration/models/sort.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .push_down_operation import PushDownOperation diff --git a/src/oci/data_integration/models/sort_clause.py b/src/oci/data_integration/models/sort_clause.py index 27bfea52fa..cfb5a00dd7 100644 --- a/src/oci/data_integration/models/sort_clause.py +++ b/src/oci/data_integration/models/sort_clause.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/sort_key.py b/src/oci/data_integration/models/sort_key.py index dacc9cfebe..3c6ae8a21c 100644 --- a/src/oci/data_integration/models/sort_key.py +++ b/src/oci/data_integration/models/sort_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/sort_key_rule.py b/src/oci/data_integration/models/sort_key_rule.py index d4203de78e..8a8521d2a5 100644 --- a/src/oci/data_integration/models/sort_key_rule.py +++ b/src/oci/data_integration/models/sort_key_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/sort_oper.py b/src/oci/data_integration/models/sort_oper.py index bb3cdda95b..b917a2d632 100644 --- a/src/oci/data_integration/models/sort_oper.py +++ b/src/oci/data_integration/models/sort_oper.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .operator import Operator diff --git a/src/oci/data_integration/models/source.py b/src/oci/data_integration/models/source.py index 72f7f65176..2c971025ff 100644 --- a/src/oci/data_integration/models/source.py +++ b/src/oci/data_integration/models/source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .operator import Operator diff --git a/src/oci/data_integration/models/source_application_info.py b/src/oci/data_integration/models/source_application_info.py index f8d16237c6..1084261b41 100644 --- a/src/oci/data_integration/models/source_application_info.py +++ b/src/oci/data_integration/models/source_application_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/start_operator.py b/src/oci/data_integration/models/start_operator.py index db38e27a5a..3bfb5759a9 100644 --- a/src/oci/data_integration/models/start_operator.py +++ b/src/oci/data_integration/models/start_operator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .operator import Operator diff --git a/src/oci/data_integration/models/structured_type.py b/src/oci/data_integration/models/structured_type.py index c3616c61ad..0702f22430 100644 --- a/src/oci/data_integration/models/structured_type.py +++ b/src/oci/data_integration/models/structured_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/target.py b/src/oci/data_integration/models/target.py index 315d608a80..c5c8e31c0e 100644 --- a/src/oci/data_integration/models/target.py +++ b/src/oci/data_integration/models/target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .operator import Operator diff --git a/src/oci/data_integration/models/task.py b/src/oci/data_integration/models/task.py index fd24808e63..81e4323c59 100644 --- a/src/oci/data_integration/models/task.py +++ b/src/oci/data_integration/models/task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/task_from_data_loader_task_details.py b/src/oci/data_integration/models/task_from_data_loader_task_details.py index f5a41d970c..73801409ef 100644 --- a/src/oci/data_integration/models/task_from_data_loader_task_details.py +++ b/src/oci/data_integration/models/task_from_data_loader_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .task import Task diff --git a/src/oci/data_integration/models/task_from_integration_task_details.py b/src/oci/data_integration/models/task_from_integration_task_details.py index 4e315f020a..03f3d85927 100644 --- a/src/oci/data_integration/models/task_from_integration_task_details.py +++ b/src/oci/data_integration/models/task_from_integration_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .task import Task diff --git a/src/oci/data_integration/models/task_from_oci_dataflow_task_details.py b/src/oci/data_integration/models/task_from_oci_dataflow_task_details.py index 8b0f690a75..79dc83643d 100644 --- a/src/oci/data_integration/models/task_from_oci_dataflow_task_details.py +++ b/src/oci/data_integration/models/task_from_oci_dataflow_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .task import Task diff --git a/src/oci/data_integration/models/task_from_pipeline_task_details.py b/src/oci/data_integration/models/task_from_pipeline_task_details.py index da757b710b..252066edd2 100644 --- a/src/oci/data_integration/models/task_from_pipeline_task_details.py +++ b/src/oci/data_integration/models/task_from_pipeline_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .task import Task diff --git a/src/oci/data_integration/models/task_from_rest_task_details.py b/src/oci/data_integration/models/task_from_rest_task_details.py index e1524f6f52..ab1cf04552 100644 --- a/src/oci/data_integration/models/task_from_rest_task_details.py +++ b/src/oci/data_integration/models/task_from_rest_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .task import Task diff --git a/src/oci/data_integration/models/task_from_sql_task_details.py b/src/oci/data_integration/models/task_from_sql_task_details.py index 80694779b1..4018ae0b96 100644 --- a/src/oci/data_integration/models/task_from_sql_task_details.py +++ b/src/oci/data_integration/models/task_from_sql_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .task import Task diff --git a/src/oci/data_integration/models/task_operator.py b/src/oci/data_integration/models/task_operator.py index 7572918be9..cc0372c781 100644 --- a/src/oci/data_integration/models/task_operator.py +++ b/src/oci/data_integration/models/task_operator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .operator import Operator diff --git a/src/oci/data_integration/models/task_run.py b/src/oci/data_integration/models/task_run.py index a94d1a945d..74c6c5264a 100644 --- a/src/oci/data_integration/models/task_run.py +++ b/src/oci/data_integration/models/task_run.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/task_run_details.py b/src/oci/data_integration/models/task_run_details.py index fc073038de..2463a408ec 100644 --- a/src/oci/data_integration/models/task_run_details.py +++ b/src/oci/data_integration/models/task_run_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/task_run_log_summary.py b/src/oci/data_integration/models/task_run_log_summary.py index b3ac292451..9af6427def 100644 --- a/src/oci/data_integration/models/task_run_log_summary.py +++ b/src/oci/data_integration/models/task_run_log_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/task_run_summary.py b/src/oci/data_integration/models/task_run_summary.py index 3bb2525994..f2faba6639 100644 --- a/src/oci/data_integration/models/task_run_summary.py +++ b/src/oci/data_integration/models/task_run_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/task_run_summary_collection.py b/src/oci/data_integration/models/task_run_summary_collection.py index 0c68ad1af2..12c4c2e70f 100644 --- a/src/oci/data_integration/models/task_run_summary_collection.py +++ b/src/oci/data_integration/models/task_run_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/task_schedule.py b/src/oci/data_integration/models/task_schedule.py index 2b3c7a0a44..64a6d530bb 100644 --- a/src/oci/data_integration/models/task_schedule.py +++ b/src/oci/data_integration/models/task_schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/task_schedule_summary.py b/src/oci/data_integration/models/task_schedule_summary.py index 0b7e9d8d8c..aea527917e 100644 --- a/src/oci/data_integration/models/task_schedule_summary.py +++ b/src/oci/data_integration/models/task_schedule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/task_schedule_summary_collection.py b/src/oci/data_integration/models/task_schedule_summary_collection.py index 1dbccd4ea2..8af7e25b90 100644 --- a/src/oci/data_integration/models/task_schedule_summary_collection.py +++ b/src/oci/data_integration/models/task_schedule_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/task_summary.py b/src/oci/data_integration/models/task_summary.py index 829ff0f382..a504c3d8c7 100644 --- a/src/oci/data_integration/models/task_summary.py +++ b/src/oci/data_integration/models/task_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/task_summary_collection.py b/src/oci/data_integration/models/task_summary_collection.py index 72defb5ebb..9dd35de3ee 100644 --- a/src/oci/data_integration/models/task_summary_collection.py +++ b/src/oci/data_integration/models/task_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/task_summary_from_data_loader_task.py b/src/oci/data_integration/models/task_summary_from_data_loader_task.py index 6a44481bf7..a661168757 100644 --- a/src/oci/data_integration/models/task_summary_from_data_loader_task.py +++ b/src/oci/data_integration/models/task_summary_from_data_loader_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .task_summary import TaskSummary diff --git a/src/oci/data_integration/models/task_summary_from_integration_task.py b/src/oci/data_integration/models/task_summary_from_integration_task.py index d05d89fefa..1ff1a21f6b 100644 --- a/src/oci/data_integration/models/task_summary_from_integration_task.py +++ b/src/oci/data_integration/models/task_summary_from_integration_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .task_summary import TaskSummary diff --git a/src/oci/data_integration/models/task_summary_from_oci_dataflow_task.py b/src/oci/data_integration/models/task_summary_from_oci_dataflow_task.py index 2c66ebcb5b..eda7f7a6a9 100644 --- a/src/oci/data_integration/models/task_summary_from_oci_dataflow_task.py +++ b/src/oci/data_integration/models/task_summary_from_oci_dataflow_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .task_summary import TaskSummary diff --git a/src/oci/data_integration/models/task_summary_from_pipeline_task.py b/src/oci/data_integration/models/task_summary_from_pipeline_task.py index 649bcea245..052cc8ad2b 100644 --- a/src/oci/data_integration/models/task_summary_from_pipeline_task.py +++ b/src/oci/data_integration/models/task_summary_from_pipeline_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .task_summary import TaskSummary diff --git a/src/oci/data_integration/models/task_summary_from_rest_task.py b/src/oci/data_integration/models/task_summary_from_rest_task.py index e75b479746..488109697c 100644 --- a/src/oci/data_integration/models/task_summary_from_rest_task.py +++ b/src/oci/data_integration/models/task_summary_from_rest_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .task_summary import TaskSummary diff --git a/src/oci/data_integration/models/task_summary_from_sql_task.py b/src/oci/data_integration/models/task_summary_from_sql_task.py index 2b2792dfaf..93c1f35bb5 100644 --- a/src/oci/data_integration/models/task_summary_from_sql_task.py +++ b/src/oci/data_integration/models/task_summary_from_sql_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .task_summary import TaskSummary diff --git a/src/oci/data_integration/models/task_validation.py b/src/oci/data_integration/models/task_validation.py index 6d17e3c820..074ea5c489 100644 --- a/src/oci/data_integration/models/task_validation.py +++ b/src/oci/data_integration/models/task_validation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/task_validation_summary.py b/src/oci/data_integration/models/task_validation_summary.py index 58bacfd591..cbdcbb38a8 100644 --- a/src/oci/data_integration/models/task_validation_summary.py +++ b/src/oci/data_integration/models/task_validation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/task_validation_summary_collection.py b/src/oci/data_integration/models/task_validation_summary_collection.py index ef62de4861..d58e21c4df 100644 --- a/src/oci/data_integration/models/task_validation_summary_collection.py +++ b/src/oci/data_integration/models/task_validation_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/time.py b/src/oci/data_integration/models/time.py index 94035a5072..f54b9478f0 100644 --- a/src/oci/data_integration/models/time.py +++ b/src/oci/data_integration/models/time.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/type_library.py b/src/oci/data_integration/models/type_library.py index 7d218eb7a2..ffe4e4acf7 100644 --- a/src/oci/data_integration/models/type_library.py +++ b/src/oci/data_integration/models/type_library.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/type_list_rule.py b/src/oci/data_integration/models/type_list_rule.py index c3967a81bb..28f584c631 100644 --- a/src/oci/data_integration/models/type_list_rule.py +++ b/src/oci/data_integration/models/type_list_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .projection_rule import ProjectionRule diff --git a/src/oci/data_integration/models/type_system.py b/src/oci/data_integration/models/type_system.py index f982108c22..fe89e1b80f 100644 --- a/src/oci/data_integration/models/type_system.py +++ b/src/oci/data_integration/models/type_system.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/typed_name_pattern_rule.py b/src/oci/data_integration/models/typed_name_pattern_rule.py index 199f8c424b..8ae8d501f1 100644 --- a/src/oci/data_integration/models/typed_name_pattern_rule.py +++ b/src/oci/data_integration/models/typed_name_pattern_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .projection_rule import ProjectionRule diff --git a/src/oci/data_integration/models/typed_object.py b/src/oci/data_integration/models/typed_object.py index fcf6d8f061..3ec617c42c 100644 --- a/src/oci/data_integration/models/typed_object.py +++ b/src/oci/data_integration/models/typed_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/ui_properties.py b/src/oci/data_integration/models/ui_properties.py index 16289589ec..f96103cfa3 100644 --- a/src/oci/data_integration/models/ui_properties.py +++ b/src/oci/data_integration/models/ui_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/union.py b/src/oci/data_integration/models/union.py index dbf100f8e5..d3651863bd 100644 --- a/src/oci/data_integration/models/union.py +++ b/src/oci/data_integration/models/union.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .operator import Operator diff --git a/src/oci/data_integration/models/unique_data_key.py b/src/oci/data_integration/models/unique_data_key.py index 2a9f6a4b82..2b0e53904d 100644 --- a/src/oci/data_integration/models/unique_data_key.py +++ b/src/oci/data_integration/models/unique_data_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .unique_key import UniqueKey diff --git a/src/oci/data_integration/models/unique_key.py b/src/oci/data_integration/models/unique_key.py index 967c9cf5e7..19aa79c280 100644 --- a/src/oci/data_integration/models/unique_key.py +++ b/src/oci/data_integration/models/unique_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/update_application_details.py b/src/oci/data_integration/models/update_application_details.py index 4d9e4fd2a4..4071652bbd 100644 --- a/src/oci/data_integration/models/update_application_details.py +++ b/src/oci/data_integration/models/update_application_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/update_connection_details.py b/src/oci/data_integration/models/update_connection_details.py index 112008c156..3c7d1f1774 100644 --- a/src/oci/data_integration/models/update_connection_details.py +++ b/src/oci/data_integration/models/update_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/update_connection_from_adwc.py b/src/oci/data_integration/models/update_connection_from_adwc.py index 31f83afea1..b3ef918f9a 100644 --- a/src/oci/data_integration/models/update_connection_from_adwc.py +++ b/src/oci/data_integration/models/update_connection_from_adwc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_connection_details import UpdateConnectionDetails diff --git a/src/oci/data_integration/models/update_connection_from_amazon_s3.py b/src/oci/data_integration/models/update_connection_from_amazon_s3.py index 52410c0042..7a39cc0172 100644 --- a/src/oci/data_integration/models/update_connection_from_amazon_s3.py +++ b/src/oci/data_integration/models/update_connection_from_amazon_s3.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_connection_details import UpdateConnectionDetails diff --git a/src/oci/data_integration/models/update_connection_from_atp.py b/src/oci/data_integration/models/update_connection_from_atp.py index cf7cac6a86..5e27fd7d7a 100644 --- a/src/oci/data_integration/models/update_connection_from_atp.py +++ b/src/oci/data_integration/models/update_connection_from_atp.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_connection_details import UpdateConnectionDetails diff --git a/src/oci/data_integration/models/update_connection_from_bicc.py b/src/oci/data_integration/models/update_connection_from_bicc.py index 95b977362a..a231a2ece7 100644 --- a/src/oci/data_integration/models/update_connection_from_bicc.py +++ b/src/oci/data_integration/models/update_connection_from_bicc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_connection_details import UpdateConnectionDetails diff --git a/src/oci/data_integration/models/update_connection_from_jdbc.py b/src/oci/data_integration/models/update_connection_from_jdbc.py index 32cfc35fab..ca5f57c759 100644 --- a/src/oci/data_integration/models/update_connection_from_jdbc.py +++ b/src/oci/data_integration/models/update_connection_from_jdbc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_connection_details import UpdateConnectionDetails diff --git a/src/oci/data_integration/models/update_connection_from_my_sql.py b/src/oci/data_integration/models/update_connection_from_my_sql.py index 744545a6c7..1247cfade3 100644 --- a/src/oci/data_integration/models/update_connection_from_my_sql.py +++ b/src/oci/data_integration/models/update_connection_from_my_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_connection_details import UpdateConnectionDetails diff --git a/src/oci/data_integration/models/update_connection_from_object_storage.py b/src/oci/data_integration/models/update_connection_from_object_storage.py index 919c011f0e..68edaf5d6a 100644 --- a/src/oci/data_integration/models/update_connection_from_object_storage.py +++ b/src/oci/data_integration/models/update_connection_from_object_storage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_connection_details import UpdateConnectionDetails diff --git a/src/oci/data_integration/models/update_connection_from_oracle.py b/src/oci/data_integration/models/update_connection_from_oracle.py index 1f7b847ee6..1ed5bd6248 100644 --- a/src/oci/data_integration/models/update_connection_from_oracle.py +++ b/src/oci/data_integration/models/update_connection_from_oracle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_connection_details import UpdateConnectionDetails diff --git a/src/oci/data_integration/models/update_data_asset_details.py b/src/oci/data_integration/models/update_data_asset_details.py index 0c77b3bc17..342f6bac4c 100644 --- a/src/oci/data_integration/models/update_data_asset_details.py +++ b/src/oci/data_integration/models/update_data_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/update_data_asset_from_adwc.py b/src/oci/data_integration/models/update_data_asset_from_adwc.py index 932bc87e1f..8f5c0ed54d 100644 --- a/src/oci/data_integration/models/update_data_asset_from_adwc.py +++ b/src/oci/data_integration/models/update_data_asset_from_adwc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_data_asset_details import UpdateDataAssetDetails diff --git a/src/oci/data_integration/models/update_data_asset_from_amazon_s3.py b/src/oci/data_integration/models/update_data_asset_from_amazon_s3.py index 3228ac5c40..645d458fb2 100644 --- a/src/oci/data_integration/models/update_data_asset_from_amazon_s3.py +++ b/src/oci/data_integration/models/update_data_asset_from_amazon_s3.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_data_asset_details import UpdateDataAssetDetails diff --git a/src/oci/data_integration/models/update_data_asset_from_atp.py b/src/oci/data_integration/models/update_data_asset_from_atp.py index 1a31402e86..cb328117c0 100644 --- a/src/oci/data_integration/models/update_data_asset_from_atp.py +++ b/src/oci/data_integration/models/update_data_asset_from_atp.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_data_asset_details import UpdateDataAssetDetails diff --git a/src/oci/data_integration/models/update_data_asset_from_fusion_app.py b/src/oci/data_integration/models/update_data_asset_from_fusion_app.py index 048e37089d..742eb42646 100644 --- a/src/oci/data_integration/models/update_data_asset_from_fusion_app.py +++ b/src/oci/data_integration/models/update_data_asset_from_fusion_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_data_asset_details import UpdateDataAssetDetails diff --git a/src/oci/data_integration/models/update_data_asset_from_jdbc.py b/src/oci/data_integration/models/update_data_asset_from_jdbc.py index 788f532e5e..d6be8189e0 100644 --- a/src/oci/data_integration/models/update_data_asset_from_jdbc.py +++ b/src/oci/data_integration/models/update_data_asset_from_jdbc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_data_asset_details import UpdateDataAssetDetails diff --git a/src/oci/data_integration/models/update_data_asset_from_my_sql.py b/src/oci/data_integration/models/update_data_asset_from_my_sql.py index 175efbaf1a..9d2fab7d4e 100644 --- a/src/oci/data_integration/models/update_data_asset_from_my_sql.py +++ b/src/oci/data_integration/models/update_data_asset_from_my_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_data_asset_details import UpdateDataAssetDetails diff --git a/src/oci/data_integration/models/update_data_asset_from_object_storage.py b/src/oci/data_integration/models/update_data_asset_from_object_storage.py index af1ec10a54..870e33f477 100644 --- a/src/oci/data_integration/models/update_data_asset_from_object_storage.py +++ b/src/oci/data_integration/models/update_data_asset_from_object_storage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_data_asset_details import UpdateDataAssetDetails diff --git a/src/oci/data_integration/models/update_data_asset_from_oracle.py b/src/oci/data_integration/models/update_data_asset_from_oracle.py index 74971821e9..b4fb96a661 100644 --- a/src/oci/data_integration/models/update_data_asset_from_oracle.py +++ b/src/oci/data_integration/models/update_data_asset_from_oracle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_data_asset_details import UpdateDataAssetDetails diff --git a/src/oci/data_integration/models/update_data_flow_details.py b/src/oci/data_integration/models/update_data_flow_details.py index dc45d4e340..90d40f058f 100644 --- a/src/oci/data_integration/models/update_data_flow_details.py +++ b/src/oci/data_integration/models/update_data_flow_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/update_external_publication_details.py b/src/oci/data_integration/models/update_external_publication_details.py index 22e76885ca..af624e407a 100644 --- a/src/oci/data_integration/models/update_external_publication_details.py +++ b/src/oci/data_integration/models/update_external_publication_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/update_folder_details.py b/src/oci/data_integration/models/update_folder_details.py index 9e6524e4bb..adaf12961e 100644 --- a/src/oci/data_integration/models/update_folder_details.py +++ b/src/oci/data_integration/models/update_folder_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/update_function_library_details.py b/src/oci/data_integration/models/update_function_library_details.py index a0c080e70c..307aa00462 100644 --- a/src/oci/data_integration/models/update_function_library_details.py +++ b/src/oci/data_integration/models/update_function_library_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/update_pipeline_details.py b/src/oci/data_integration/models/update_pipeline_details.py index f763dd9d34..b93ff1903a 100644 --- a/src/oci/data_integration/models/update_pipeline_details.py +++ b/src/oci/data_integration/models/update_pipeline_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/update_project_details.py b/src/oci/data_integration/models/update_project_details.py index b212f5cfe5..bbd5a67128 100644 --- a/src/oci/data_integration/models/update_project_details.py +++ b/src/oci/data_integration/models/update_project_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/update_reference_details.py b/src/oci/data_integration/models/update_reference_details.py index ec19ef9c52..db8f989622 100644 --- a/src/oci/data_integration/models/update_reference_details.py +++ b/src/oci/data_integration/models/update_reference_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/update_schedule_details.py b/src/oci/data_integration/models/update_schedule_details.py index d4914de0ec..5980141d94 100644 --- a/src/oci/data_integration/models/update_schedule_details.py +++ b/src/oci/data_integration/models/update_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/update_task_details.py b/src/oci/data_integration/models/update_task_details.py index c1b5959ec4..0e822d3cd9 100644 --- a/src/oci/data_integration/models/update_task_details.py +++ b/src/oci/data_integration/models/update_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/update_task_from_data_loader_task.py b/src/oci/data_integration/models/update_task_from_data_loader_task.py index 95f971e44c..0cccfafc55 100644 --- a/src/oci/data_integration/models/update_task_from_data_loader_task.py +++ b/src/oci/data_integration/models/update_task_from_data_loader_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_task_details import UpdateTaskDetails diff --git a/src/oci/data_integration/models/update_task_from_integration_task.py b/src/oci/data_integration/models/update_task_from_integration_task.py index 34e91f2461..ef453b1ba3 100644 --- a/src/oci/data_integration/models/update_task_from_integration_task.py +++ b/src/oci/data_integration/models/update_task_from_integration_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_task_details import UpdateTaskDetails diff --git a/src/oci/data_integration/models/update_task_from_oci_dataflow_task.py b/src/oci/data_integration/models/update_task_from_oci_dataflow_task.py index 034c7cc2be..5b334a8106 100644 --- a/src/oci/data_integration/models/update_task_from_oci_dataflow_task.py +++ b/src/oci/data_integration/models/update_task_from_oci_dataflow_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_task_details import UpdateTaskDetails diff --git a/src/oci/data_integration/models/update_task_from_pipeline_task.py b/src/oci/data_integration/models/update_task_from_pipeline_task.py index 71e68818a2..8f495eb05a 100644 --- a/src/oci/data_integration/models/update_task_from_pipeline_task.py +++ b/src/oci/data_integration/models/update_task_from_pipeline_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_task_details import UpdateTaskDetails diff --git a/src/oci/data_integration/models/update_task_from_rest_task.py b/src/oci/data_integration/models/update_task_from_rest_task.py index 1ca1834885..369e7b30e2 100644 --- a/src/oci/data_integration/models/update_task_from_rest_task.py +++ b/src/oci/data_integration/models/update_task_from_rest_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_task_details import UpdateTaskDetails diff --git a/src/oci/data_integration/models/update_task_from_sql_task.py b/src/oci/data_integration/models/update_task_from_sql_task.py index 2a05ab1b94..52ec65c35a 100644 --- a/src/oci/data_integration/models/update_task_from_sql_task.py +++ b/src/oci/data_integration/models/update_task_from_sql_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_task_details import UpdateTaskDetails diff --git a/src/oci/data_integration/models/update_task_run_details.py b/src/oci/data_integration/models/update_task_run_details.py index ab34e1b696..600f7f0a32 100644 --- a/src/oci/data_integration/models/update_task_run_details.py +++ b/src/oci/data_integration/models/update_task_run_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/update_task_schedule_details.py b/src/oci/data_integration/models/update_task_schedule_details.py index b7e0dfb7ce..2014b7fcfe 100644 --- a/src/oci/data_integration/models/update_task_schedule_details.py +++ b/src/oci/data_integration/models/update_task_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/update_user_defined_function_details.py b/src/oci/data_integration/models/update_user_defined_function_details.py index b8dae7328a..3b4adc413a 100644 --- a/src/oci/data_integration/models/update_user_defined_function_details.py +++ b/src/oci/data_integration/models/update_user_defined_function_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/update_workspace_details.py b/src/oci/data_integration/models/update_workspace_details.py index 384c631cc0..60ba4ad5a4 100644 --- a/src/oci/data_integration/models/update_workspace_details.py +++ b/src/oci/data_integration/models/update_workspace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/user_defined_function.py b/src/oci/data_integration/models/user_defined_function.py index 43232532a9..a7d57f7157 100644 --- a/src/oci/data_integration/models/user_defined_function.py +++ b/src/oci/data_integration/models/user_defined_function.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/user_defined_function_details.py b/src/oci/data_integration/models/user_defined_function_details.py index c525df64c4..d0ea12f103 100644 --- a/src/oci/data_integration/models/user_defined_function_details.py +++ b/src/oci/data_integration/models/user_defined_function_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/user_defined_function_summary.py b/src/oci/data_integration/models/user_defined_function_summary.py index 66dc98582f..b9fb9a9edb 100644 --- a/src/oci/data_integration/models/user_defined_function_summary.py +++ b/src/oci/data_integration/models/user_defined_function_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/user_defined_function_summary_collection.py b/src/oci/data_integration/models/user_defined_function_summary_collection.py index 4f517fdf12..4ed3eb754b 100644 --- a/src/oci/data_integration/models/user_defined_function_summary_collection.py +++ b/src/oci/data_integration/models/user_defined_function_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/user_defined_function_validation.py b/src/oci/data_integration/models/user_defined_function_validation.py index 57a39e154e..5cd9549584 100644 --- a/src/oci/data_integration/models/user_defined_function_validation.py +++ b/src/oci/data_integration/models/user_defined_function_validation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/user_defined_function_validation_summary.py b/src/oci/data_integration/models/user_defined_function_validation_summary.py index 4988ef8ca2..b11306aef5 100644 --- a/src/oci/data_integration/models/user_defined_function_validation_summary.py +++ b/src/oci/data_integration/models/user_defined_function_validation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/user_defined_function_validation_summary_collection.py b/src/oci/data_integration/models/user_defined_function_validation_summary_collection.py index ae81109be8..d09a245934 100644 --- a/src/oci/data_integration/models/user_defined_function_validation_summary_collection.py +++ b/src/oci/data_integration/models/user_defined_function_validation_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/validation_message.py b/src/oci/data_integration/models/validation_message.py index 51b1535f29..e53612f766 100644 --- a/src/oci/data_integration/models/validation_message.py +++ b/src/oci/data_integration/models/validation_message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/variable.py b/src/oci/data_integration/models/variable.py index dcdaaabaa7..59f4cd22a8 100644 --- a/src/oci/data_integration/models/variable.py +++ b/src/oci/data_integration/models/variable.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/weekly_frequency_details.py b/src/oci/data_integration/models/weekly_frequency_details.py index c856d2b11a..b011acf184 100644 --- a/src/oci/data_integration/models/weekly_frequency_details.py +++ b/src/oci/data_integration/models/weekly_frequency_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_frequency_details import AbstractFrequencyDetails diff --git a/src/oci/data_integration/models/work_request.py b/src/oci/data_integration/models/work_request.py index b5150e89d1..012850931c 100644 --- a/src/oci/data_integration/models/work_request.py +++ b/src/oci/data_integration/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/work_request_error.py b/src/oci/data_integration/models/work_request_error.py index 336cd0bbe9..b4de21e23d 100644 --- a/src/oci/data_integration/models/work_request_error.py +++ b/src/oci/data_integration/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/work_request_log_entry.py b/src/oci/data_integration/models/work_request_log_entry.py index eeb15eac67..7d8d5eabfa 100644 --- a/src/oci/data_integration/models/work_request_log_entry.py +++ b/src/oci/data_integration/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/work_request_resource.py b/src/oci/data_integration/models/work_request_resource.py index 7da0d1b1bf..0b05da458a 100644 --- a/src/oci/data_integration/models/work_request_resource.py +++ b/src/oci/data_integration/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/work_request_summary.py b/src/oci/data_integration/models/work_request_summary.py index 20154c078d..2cde523f55 100644 --- a/src/oci/data_integration/models/work_request_summary.py +++ b/src/oci/data_integration/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/workspace.py b/src/oci/data_integration/models/workspace.py index f0e425691c..f3b180b6c2 100644 --- a/src/oci/data_integration/models/workspace.py +++ b/src/oci/data_integration/models/workspace.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/workspace_summary.py b/src/oci/data_integration/models/workspace_summary.py index c0da9ba795..26e32f28d0 100644 --- a/src/oci/data_integration/models/workspace_summary.py +++ b/src/oci/data_integration/models/workspace_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_integration/models/write_operation_config.py b/src/oci/data_integration/models/write_operation_config.py index a7e763d109..4cf321451b 100644 --- a/src/oci/data_integration/models/write_operation_config.py +++ b/src/oci/data_integration/models/write_operation_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_data_operation_config import AbstractDataOperationConfig diff --git a/src/oci/data_labeling_service/__init__.py b/src/oci/data_labeling_service/__init__.py index ee667150ac..6fd5e3a392 100644 --- a/src/oci/data_labeling_service/__init__.py +++ b/src/oci/data_labeling_service/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/data_labeling_service/data_labeling_management_client.py b/src/oci/data_labeling_service/data_labeling_management_client.py index 9449526af2..9b927629a9 100644 --- a/src/oci/data_labeling_service/data_labeling_management_client.py +++ b/src/oci/data_labeling_service/data_labeling_management_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("data_labeling_management", config, signer, data_labeling_service_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -134,6 +140,10 @@ def add_dataset_labels(self, dataset_id, add_dataset_labels_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -145,6 +155,7 @@ def add_dataset_labels(self, dataset_id, add_dataset_labels_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -228,6 +239,10 @@ def change_dataset_compartment(self, dataset_id, change_dataset_compartment_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -239,6 +254,7 @@ def change_dataset_compartment(self, dataset_id, change_dataset_compartment_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -316,6 +332,10 @@ def create_dataset(self, create_dataset_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service.models.Dataset` :rtype: :class:`~oci.response.Response` @@ -327,6 +347,7 @@ def create_dataset(self, create_dataset_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -395,6 +416,10 @@ def delete_dataset(self, dataset_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -406,6 +431,7 @@ def delete_dataset(self, dataset_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -491,6 +517,10 @@ def generate_dataset_records(self, dataset_id, generate_dataset_records_details, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -502,6 +532,7 @@ def generate_dataset_records(self, dataset_id, generate_dataset_records_details, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -575,6 +606,10 @@ def get_dataset(self, dataset_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service.models.Dataset` :rtype: :class:`~oci.response.Response` @@ -586,6 +621,7 @@ def get_dataset(self, dataset_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -654,6 +690,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -665,6 +705,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -744,6 +785,10 @@ def list_annotation_formats(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service.models.AnnotationFormatCollection` :rtype: :class:`~oci.response.Response` @@ -755,6 +800,7 @@ def list_annotation_formats(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -861,6 +907,10 @@ def list_datasets(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service.models.DatasetCollection` :rtype: :class:`~oci.response.Response` @@ -872,6 +922,7 @@ def list_datasets(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "annotation_format", @@ -978,6 +1029,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -989,6 +1044,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1073,6 +1129,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -1084,6 +1144,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1171,6 +1232,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service.models.WorkRequestSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -1182,6 +1247,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "work_request_id", "opc_request_id", @@ -1268,6 +1334,10 @@ def remove_dataset_labels(self, dataset_id, remove_dataset_labels_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1279,6 +1349,7 @@ def remove_dataset_labels(self, dataset_id, remove_dataset_labels_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -1369,6 +1440,10 @@ def rename_dataset_labels(self, dataset_id, rename_dataset_labels_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1380,6 +1455,7 @@ def rename_dataset_labels(self, dataset_id, rename_dataset_labels_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -1471,6 +1547,10 @@ def snapshot_dataset(self, dataset_id, snapshot_dataset_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1482,6 +1562,7 @@ def snapshot_dataset(self, dataset_id, snapshot_dataset_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -1565,6 +1646,10 @@ def update_dataset(self, dataset_id, update_dataset_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service.models.Dataset` :rtype: :class:`~oci.response.Response` @@ -1576,6 +1661,7 @@ def update_dataset(self, dataset_id, update_dataset_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/data_labeling_service/data_labeling_management_client_composite_operations.py b/src/oci/data_labeling_service/data_labeling_management_client_composite_operations.py index 5157e7dcf4..6462fdfebc 100644 --- a/src/oci/data_labeling_service/data_labeling_management_client_composite_operations.py +++ b/src/oci/data_labeling_service/data_labeling_management_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/data_labeling_service/models/__init__.py b/src/oci/data_labeling_service/models/__init__.py index f9e8f0251d..bf800ed83a 100644 --- a/src/oci/data_labeling_service/models/__init__.py +++ b/src/oci/data_labeling_service/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/data_labeling_service/models/add_dataset_labels_details.py b/src/oci/data_labeling_service/models/add_dataset_labels_details.py index b3731d54d3..61944248cd 100644 --- a/src/oci/data_labeling_service/models/add_dataset_labels_details.py +++ b/src/oci/data_labeling_service/models/add_dataset_labels_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/annotation_format.py b/src/oci/data_labeling_service/models/annotation_format.py index 7af6a9a051..cc875d0e99 100644 --- a/src/oci/data_labeling_service/models/annotation_format.py +++ b/src/oci/data_labeling_service/models/annotation_format.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/annotation_format_collection.py b/src/oci/data_labeling_service/models/annotation_format_collection.py index 2a3cc76e63..126724c754 100644 --- a/src/oci/data_labeling_service/models/annotation_format_collection.py +++ b/src/oci/data_labeling_service/models/annotation_format_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/annotation_format_summary.py b/src/oci/data_labeling_service/models/annotation_format_summary.py index 547bd62045..edcfaa560c 100644 --- a/src/oci/data_labeling_service/models/annotation_format_summary.py +++ b/src/oci/data_labeling_service/models/annotation_format_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/change_dataset_compartment_details.py b/src/oci/data_labeling_service/models/change_dataset_compartment_details.py index 98f4fa85d7..8f6fdd7394 100644 --- a/src/oci/data_labeling_service/models/change_dataset_compartment_details.py +++ b/src/oci/data_labeling_service/models/change_dataset_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/create_dataset_details.py b/src/oci/data_labeling_service/models/create_dataset_details.py index 797ce33e5b..5b24748cb4 100644 --- a/src/oci/data_labeling_service/models/create_dataset_details.py +++ b/src/oci/data_labeling_service/models/create_dataset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/dataset.py b/src/oci/data_labeling_service/models/dataset.py index 351369f6ba..093d1fddea 100644 --- a/src/oci/data_labeling_service/models/dataset.py +++ b/src/oci/data_labeling_service/models/dataset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/dataset_collection.py b/src/oci/data_labeling_service/models/dataset_collection.py index a0d10fe3d2..72e2fd8431 100644 --- a/src/oci/data_labeling_service/models/dataset_collection.py +++ b/src/oci/data_labeling_service/models/dataset_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/dataset_format_details.py b/src/oci/data_labeling_service/models/dataset_format_details.py index 272e31ce9b..61b0b2ae9b 100644 --- a/src/oci/data_labeling_service/models/dataset_format_details.py +++ b/src/oci/data_labeling_service/models/dataset_format_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/dataset_source_details.py b/src/oci/data_labeling_service/models/dataset_source_details.py index 8386f18bab..385ea0b82c 100644 --- a/src/oci/data_labeling_service/models/dataset_source_details.py +++ b/src/oci/data_labeling_service/models/dataset_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/dataset_summary.py b/src/oci/data_labeling_service/models/dataset_summary.py index feebfb04fd..f8f6daf757 100644 --- a/src/oci/data_labeling_service/models/dataset_summary.py +++ b/src/oci/data_labeling_service/models/dataset_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/document_dataset_format_details.py b/src/oci/data_labeling_service/models/document_dataset_format_details.py index c8d01f5087..580c17d8a9 100644 --- a/src/oci/data_labeling_service/models/document_dataset_format_details.py +++ b/src/oci/data_labeling_service/models/document_dataset_format_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .dataset_format_details import DatasetFormatDetails diff --git a/src/oci/data_labeling_service/models/generate_dataset_records_details.py b/src/oci/data_labeling_service/models/generate_dataset_records_details.py index ffb780fb61..995acc307c 100644 --- a/src/oci/data_labeling_service/models/generate_dataset_records_details.py +++ b/src/oci/data_labeling_service/models/generate_dataset_records_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/image_dataset_format_details.py b/src/oci/data_labeling_service/models/image_dataset_format_details.py index 80aa9d3d25..671586e115 100644 --- a/src/oci/data_labeling_service/models/image_dataset_format_details.py +++ b/src/oci/data_labeling_service/models/image_dataset_format_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .dataset_format_details import DatasetFormatDetails diff --git a/src/oci/data_labeling_service/models/initial_record_generation_configuration.py b/src/oci/data_labeling_service/models/initial_record_generation_configuration.py index 8fe014d8d1..eba7d7fdf6 100644 --- a/src/oci/data_labeling_service/models/initial_record_generation_configuration.py +++ b/src/oci/data_labeling_service/models/initial_record_generation_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/label.py b/src/oci/data_labeling_service/models/label.py index 666becef8a..0be0def0b3 100644 --- a/src/oci/data_labeling_service/models/label.py +++ b/src/oci/data_labeling_service/models/label.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/label_set.py b/src/oci/data_labeling_service/models/label_set.py index 9117f49920..42b1161dcc 100644 --- a/src/oci/data_labeling_service/models/label_set.py +++ b/src/oci/data_labeling_service/models/label_set.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/object_storage_snapshot_export_details.py b/src/oci/data_labeling_service/models/object_storage_snapshot_export_details.py index 1a066d2e83..3b1ee030a2 100644 --- a/src/oci/data_labeling_service/models/object_storage_snapshot_export_details.py +++ b/src/oci/data_labeling_service/models/object_storage_snapshot_export_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .snapshot_export_details import SnapshotExportDetails diff --git a/src/oci/data_labeling_service/models/object_storage_source_details.py b/src/oci/data_labeling_service/models/object_storage_source_details.py index c12c576553..43e68e69c1 100644 --- a/src/oci/data_labeling_service/models/object_storage_source_details.py +++ b/src/oci/data_labeling_service/models/object_storage_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .dataset_source_details import DatasetSourceDetails diff --git a/src/oci/data_labeling_service/models/remove_dataset_labels_details.py b/src/oci/data_labeling_service/models/remove_dataset_labels_details.py index 9190d95305..7c2884cb28 100644 --- a/src/oci/data_labeling_service/models/remove_dataset_labels_details.py +++ b/src/oci/data_labeling_service/models/remove_dataset_labels_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/rename_dataset_labels_details.py b/src/oci/data_labeling_service/models/rename_dataset_labels_details.py index 7579eb739a..3fcc15be96 100644 --- a/src/oci/data_labeling_service/models/rename_dataset_labels_details.py +++ b/src/oci/data_labeling_service/models/rename_dataset_labels_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/snapshot_dataset_details.py b/src/oci/data_labeling_service/models/snapshot_dataset_details.py index 591dc085f6..2e18e61b8b 100644 --- a/src/oci/data_labeling_service/models/snapshot_dataset_details.py +++ b/src/oci/data_labeling_service/models/snapshot_dataset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/snapshot_export_details.py b/src/oci/data_labeling_service/models/snapshot_export_details.py index 1d6ae20510..35a51f4721 100644 --- a/src/oci/data_labeling_service/models/snapshot_export_details.py +++ b/src/oci/data_labeling_service/models/snapshot_export_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/text_dataset_format_details.py b/src/oci/data_labeling_service/models/text_dataset_format_details.py index ee97fab9d7..a1718d261d 100644 --- a/src/oci/data_labeling_service/models/text_dataset_format_details.py +++ b/src/oci/data_labeling_service/models/text_dataset_format_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .dataset_format_details import DatasetFormatDetails diff --git a/src/oci/data_labeling_service/models/update_dataset_details.py b/src/oci/data_labeling_service/models/update_dataset_details.py index 7603b653c0..826c99e1c8 100644 --- a/src/oci/data_labeling_service/models/update_dataset_details.py +++ b/src/oci/data_labeling_service/models/update_dataset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/work_request.py b/src/oci/data_labeling_service/models/work_request.py index ba905ef438..a7bd41a559 100644 --- a/src/oci/data_labeling_service/models/work_request.py +++ b/src/oci/data_labeling_service/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/work_request_error.py b/src/oci/data_labeling_service/models/work_request_error.py index 04dde83e08..26ac6a8cc9 100644 --- a/src/oci/data_labeling_service/models/work_request_error.py +++ b/src/oci/data_labeling_service/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/work_request_error_collection.py b/src/oci/data_labeling_service/models/work_request_error_collection.py index 6bcb12366d..73bd0a6433 100644 --- a/src/oci/data_labeling_service/models/work_request_error_collection.py +++ b/src/oci/data_labeling_service/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/work_request_log_entry.py b/src/oci/data_labeling_service/models/work_request_log_entry.py index 8d02a6a994..7b37ab8d12 100644 --- a/src/oci/data_labeling_service/models/work_request_log_entry.py +++ b/src/oci/data_labeling_service/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/work_request_log_entry_collection.py b/src/oci/data_labeling_service/models/work_request_log_entry_collection.py index 7733c4d6ab..6d314f5e00 100644 --- a/src/oci/data_labeling_service/models/work_request_log_entry_collection.py +++ b/src/oci/data_labeling_service/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/work_request_resource.py b/src/oci/data_labeling_service/models/work_request_resource.py index 0be9c3a6bf..a3c13dadf4 100644 --- a/src/oci/data_labeling_service/models/work_request_resource.py +++ b/src/oci/data_labeling_service/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/work_request_summary.py b/src/oci/data_labeling_service/models/work_request_summary.py index 20dbfd0304..9bf6b6dd20 100644 --- a/src/oci/data_labeling_service/models/work_request_summary.py +++ b/src/oci/data_labeling_service/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service/models/work_request_summary_collection.py b/src/oci/data_labeling_service/models/work_request_summary_collection.py index 57c0faf9b6..9cc26d5495 100644 --- a/src/oci/data_labeling_service/models/work_request_summary_collection.py +++ b/src/oci/data_labeling_service/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/__init__.py b/src/oci/data_labeling_service_dataplane/__init__.py index 00a35f206f..8ecc71bda6 100644 --- a/src/oci/data_labeling_service_dataplane/__init__.py +++ b/src/oci/data_labeling_service_dataplane/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/data_labeling_service_dataplane/data_labeling_client.py b/src/oci/data_labeling_service_dataplane/data_labeling_client.py index 78ae97897d..2bf75d3a93 100644 --- a/src/oci/data_labeling_service_dataplane/data_labeling_client.py +++ b/src/oci/data_labeling_service_dataplane/data_labeling_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("data_labeling", config, signer, data_labeling_service_dataplane_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -124,6 +130,10 @@ def create_annotation(self, create_annotation_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service_dataplane.models.Annotation` :rtype: :class:`~oci.response.Response` @@ -135,6 +145,7 @@ def create_annotation(self, create_annotation_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -203,6 +214,10 @@ def create_record(self, create_record_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service_dataplane.models.Record` :rtype: :class:`~oci.response.Response` @@ -214,6 +229,7 @@ def create_record(self, create_record_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -282,6 +298,10 @@ def delete_annotation(self, annotation_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -293,6 +313,7 @@ def delete_annotation(self, annotation_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -368,6 +389,10 @@ def delete_record(self, record_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -379,6 +404,7 @@ def delete_record(self, record_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -447,6 +473,10 @@ def get_annotation(self, annotation_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service_dataplane.models.Annotation` :rtype: :class:`~oci.response.Response` @@ -458,6 +488,7 @@ def get_annotation(self, annotation_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -526,6 +557,10 @@ def get_dataset(self, dataset_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service_dataplane.models.Dataset` :rtype: :class:`~oci.response.Response` @@ -537,6 +572,7 @@ def get_dataset(self, dataset_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -605,6 +641,10 @@ def get_record(self, record_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service_dataplane.models.Record` :rtype: :class:`~oci.response.Response` @@ -616,6 +656,7 @@ def get_record(self, record_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -691,6 +732,10 @@ def get_record_content(self, record_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -702,6 +747,7 @@ def get_record_content(self, record_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_none_match" @@ -779,6 +825,10 @@ def get_record_preview_content(self, record_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -790,6 +840,7 @@ def get_record_preview_content(self, record_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_none_match" @@ -899,6 +950,10 @@ def list_annotations(self, compartment_id, dataset_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service_dataplane.models.AnnotationCollection` :rtype: :class:`~oci.response.Response` @@ -910,6 +965,7 @@ def list_annotations(self, compartment_id, dataset_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "id", @@ -1051,6 +1107,10 @@ def list_records(self, compartment_id, dataset_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service_dataplane.models.RecordCollection` :rtype: :class:`~oci.response.Response` @@ -1062,6 +1122,7 @@ def list_records(self, compartment_id, dataset_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "name", @@ -1197,6 +1258,10 @@ def summarize_annotation_analytics(self, compartment_id, dataset_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service_dataplane.models.AnnotationAnalyticsAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -1208,6 +1273,7 @@ def summarize_annotation_analytics(self, compartment_id, dataset_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "label", @@ -1343,6 +1409,10 @@ def summarize_record_analytics(self, compartment_id, dataset_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service_dataplane.models.RecordAnalyticsAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -1354,6 +1424,7 @@ def summarize_record_analytics(self, compartment_id, dataset_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "limit", @@ -1468,6 +1539,10 @@ def update_annotation(self, annotation_id, update_annotation_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service_dataplane.models.Annotation` :rtype: :class:`~oci.response.Response` @@ -1479,6 +1554,7 @@ def update_annotation(self, annotation_id, update_annotation_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1561,6 +1637,10 @@ def update_record(self, record_id, update_record_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_labeling_service_dataplane.models.Record` :rtype: :class:`~oci.response.Response` @@ -1572,6 +1652,7 @@ def update_record(self, record_id, update_record_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/data_labeling_service_dataplane/data_labeling_client_composite_operations.py b/src/oci/data_labeling_service_dataplane/data_labeling_client_composite_operations.py index 538bb01c0e..12439de531 100644 --- a/src/oci/data_labeling_service_dataplane/data_labeling_client_composite_operations.py +++ b/src/oci/data_labeling_service_dataplane/data_labeling_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/data_labeling_service_dataplane/models/__init__.py b/src/oci/data_labeling_service_dataplane/models/__init__.py index a5cb4dc37c..83fe80ebd8 100644 --- a/src/oci/data_labeling_service_dataplane/models/__init__.py +++ b/src/oci/data_labeling_service_dataplane/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/data_labeling_service_dataplane/models/annotation.py b/src/oci/data_labeling_service_dataplane/models/annotation.py index 20c224a803..50080cb4b6 100644 --- a/src/oci/data_labeling_service_dataplane/models/annotation.py +++ b/src/oci/data_labeling_service_dataplane/models/annotation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/annotation_aggregation_dimensions.py b/src/oci/data_labeling_service_dataplane/models/annotation_aggregation_dimensions.py index beb55c8b1b..b78803cd04 100644 --- a/src/oci/data_labeling_service_dataplane/models/annotation_aggregation_dimensions.py +++ b/src/oci/data_labeling_service_dataplane/models/annotation_aggregation_dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/annotation_analytics_aggregation.py b/src/oci/data_labeling_service_dataplane/models/annotation_analytics_aggregation.py index fb18ace2ac..f080e6a082 100644 --- a/src/oci/data_labeling_service_dataplane/models/annotation_analytics_aggregation.py +++ b/src/oci/data_labeling_service_dataplane/models/annotation_analytics_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/annotation_analytics_aggregation_collection.py b/src/oci/data_labeling_service_dataplane/models/annotation_analytics_aggregation_collection.py index 5c47978fce..cced6d6ec4 100644 --- a/src/oci/data_labeling_service_dataplane/models/annotation_analytics_aggregation_collection.py +++ b/src/oci/data_labeling_service_dataplane/models/annotation_analytics_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/annotation_collection.py b/src/oci/data_labeling_service_dataplane/models/annotation_collection.py index ef325239d3..13dd7acc07 100644 --- a/src/oci/data_labeling_service_dataplane/models/annotation_collection.py +++ b/src/oci/data_labeling_service_dataplane/models/annotation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/annotation_summary.py b/src/oci/data_labeling_service_dataplane/models/annotation_summary.py index 95c1223386..4afc3d4e50 100644 --- a/src/oci/data_labeling_service_dataplane/models/annotation_summary.py +++ b/src/oci/data_labeling_service_dataplane/models/annotation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/bounding_polygon.py b/src/oci/data_labeling_service_dataplane/models/bounding_polygon.py index f7a83bdf41..879dd6a415 100644 --- a/src/oci/data_labeling_service_dataplane/models/bounding_polygon.py +++ b/src/oci/data_labeling_service_dataplane/models/bounding_polygon.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/create_annotation_details.py b/src/oci/data_labeling_service_dataplane/models/create_annotation_details.py index 2a5a265510..06391fe845 100644 --- a/src/oci/data_labeling_service_dataplane/models/create_annotation_details.py +++ b/src/oci/data_labeling_service_dataplane/models/create_annotation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/create_object_storage_source_details.py b/src/oci/data_labeling_service_dataplane/models/create_object_storage_source_details.py index b186d852c2..7719ef88c2 100644 --- a/src/oci/data_labeling_service_dataplane/models/create_object_storage_source_details.py +++ b/src/oci/data_labeling_service_dataplane/models/create_object_storage_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_source_details import CreateSourceDetails diff --git a/src/oci/data_labeling_service_dataplane/models/create_record_details.py b/src/oci/data_labeling_service_dataplane/models/create_record_details.py index 8a41403e46..523190de68 100644 --- a/src/oci/data_labeling_service_dataplane/models/create_record_details.py +++ b/src/oci/data_labeling_service_dataplane/models/create_record_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/create_source_details.py b/src/oci/data_labeling_service_dataplane/models/create_source_details.py index 7562fbec90..0284f4851a 100644 --- a/src/oci/data_labeling_service_dataplane/models/create_source_details.py +++ b/src/oci/data_labeling_service_dataplane/models/create_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/dataset.py b/src/oci/data_labeling_service_dataplane/models/dataset.py index b8814b5b86..0e36d1786d 100644 --- a/src/oci/data_labeling_service_dataplane/models/dataset.py +++ b/src/oci/data_labeling_service_dataplane/models/dataset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/dataset_format_details.py b/src/oci/data_labeling_service_dataplane/models/dataset_format_details.py index 6abe14d66b..1c19a6295d 100644 --- a/src/oci/data_labeling_service_dataplane/models/dataset_format_details.py +++ b/src/oci/data_labeling_service_dataplane/models/dataset_format_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/dataset_source_details.py b/src/oci/data_labeling_service_dataplane/models/dataset_source_details.py index e12dc19276..d13ce7128a 100644 --- a/src/oci/data_labeling_service_dataplane/models/dataset_source_details.py +++ b/src/oci/data_labeling_service_dataplane/models/dataset_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/document_dataset_format_details.py b/src/oci/data_labeling_service_dataplane/models/document_dataset_format_details.py index 57e5a4f81b..0dec3c305f 100644 --- a/src/oci/data_labeling_service_dataplane/models/document_dataset_format_details.py +++ b/src/oci/data_labeling_service_dataplane/models/document_dataset_format_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .dataset_format_details import DatasetFormatDetails diff --git a/src/oci/data_labeling_service_dataplane/models/entity.py b/src/oci/data_labeling_service_dataplane/models/entity.py index 4670be27da..d34dd19f06 100644 --- a/src/oci/data_labeling_service_dataplane/models/entity.py +++ b/src/oci/data_labeling_service_dataplane/models/entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/generic_entity.py b/src/oci/data_labeling_service_dataplane/models/generic_entity.py index 6080f45f6a..027aa99db5 100644 --- a/src/oci/data_labeling_service_dataplane/models/generic_entity.py +++ b/src/oci/data_labeling_service_dataplane/models/generic_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .entity import Entity diff --git a/src/oci/data_labeling_service_dataplane/models/image_dataset_format_details.py b/src/oci/data_labeling_service_dataplane/models/image_dataset_format_details.py index 441a983ae9..4f98535831 100644 --- a/src/oci/data_labeling_service_dataplane/models/image_dataset_format_details.py +++ b/src/oci/data_labeling_service_dataplane/models/image_dataset_format_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .dataset_format_details import DatasetFormatDetails diff --git a/src/oci/data_labeling_service_dataplane/models/image_object_selection_entity.py b/src/oci/data_labeling_service_dataplane/models/image_object_selection_entity.py index 1b1fc4c518..0585940507 100644 --- a/src/oci/data_labeling_service_dataplane/models/image_object_selection_entity.py +++ b/src/oci/data_labeling_service_dataplane/models/image_object_selection_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .entity import Entity diff --git a/src/oci/data_labeling_service_dataplane/models/initial_record_generation_configuration.py b/src/oci/data_labeling_service_dataplane/models/initial_record_generation_configuration.py index 8fe014d8d1..eba7d7fdf6 100644 --- a/src/oci/data_labeling_service_dataplane/models/initial_record_generation_configuration.py +++ b/src/oci/data_labeling_service_dataplane/models/initial_record_generation_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/label.py b/src/oci/data_labeling_service_dataplane/models/label.py index fc04356a65..ede6351a64 100644 --- a/src/oci/data_labeling_service_dataplane/models/label.py +++ b/src/oci/data_labeling_service_dataplane/models/label.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/label_name.py b/src/oci/data_labeling_service_dataplane/models/label_name.py index 0eb1a23cd5..d47e25f520 100644 --- a/src/oci/data_labeling_service_dataplane/models/label_name.py +++ b/src/oci/data_labeling_service_dataplane/models/label_name.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/label_set.py b/src/oci/data_labeling_service_dataplane/models/label_set.py index b15a98687f..0ea5b57b69 100644 --- a/src/oci/data_labeling_service_dataplane/models/label_set.py +++ b/src/oci/data_labeling_service_dataplane/models/label_set.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/normalized_vertex.py b/src/oci/data_labeling_service_dataplane/models/normalized_vertex.py index b2b0d8a813..990a8ca9d5 100644 --- a/src/oci/data_labeling_service_dataplane/models/normalized_vertex.py +++ b/src/oci/data_labeling_service_dataplane/models/normalized_vertex.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/object_storage_dataset_source_details.py b/src/oci/data_labeling_service_dataplane/models/object_storage_dataset_source_details.py index 177cf3f628..4c1d1025f0 100644 --- a/src/oci/data_labeling_service_dataplane/models/object_storage_dataset_source_details.py +++ b/src/oci/data_labeling_service_dataplane/models/object_storage_dataset_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .dataset_source_details import DatasetSourceDetails diff --git a/src/oci/data_labeling_service_dataplane/models/object_storage_source_details.py b/src/oci/data_labeling_service_dataplane/models/object_storage_source_details.py index 6e4fee4a65..ee80040195 100644 --- a/src/oci/data_labeling_service_dataplane/models/object_storage_source_details.py +++ b/src/oci/data_labeling_service_dataplane/models/object_storage_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .source_details import SourceDetails diff --git a/src/oci/data_labeling_service_dataplane/models/record.py b/src/oci/data_labeling_service_dataplane/models/record.py index b90d0d59fb..fe7c99eae5 100644 --- a/src/oci/data_labeling_service_dataplane/models/record.py +++ b/src/oci/data_labeling_service_dataplane/models/record.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/record_aggregation_dimensions.py b/src/oci/data_labeling_service_dataplane/models/record_aggregation_dimensions.py index 6d3884d658..ec87b14ea5 100644 --- a/src/oci/data_labeling_service_dataplane/models/record_aggregation_dimensions.py +++ b/src/oci/data_labeling_service_dataplane/models/record_aggregation_dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/record_analytics_aggregation.py b/src/oci/data_labeling_service_dataplane/models/record_analytics_aggregation.py index b89aef743b..27ea8ab6ff 100644 --- a/src/oci/data_labeling_service_dataplane/models/record_analytics_aggregation.py +++ b/src/oci/data_labeling_service_dataplane/models/record_analytics_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/record_analytics_aggregation_collection.py b/src/oci/data_labeling_service_dataplane/models/record_analytics_aggregation_collection.py index c3e6605594..1bc47b2cdf 100644 --- a/src/oci/data_labeling_service_dataplane/models/record_analytics_aggregation_collection.py +++ b/src/oci/data_labeling_service_dataplane/models/record_analytics_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/record_collection.py b/src/oci/data_labeling_service_dataplane/models/record_collection.py index b59b63c886..cc3828cde8 100644 --- a/src/oci/data_labeling_service_dataplane/models/record_collection.py +++ b/src/oci/data_labeling_service_dataplane/models/record_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/record_summary.py b/src/oci/data_labeling_service_dataplane/models/record_summary.py index 8e9a99f035..a2ff403f00 100644 --- a/src/oci/data_labeling_service_dataplane/models/record_summary.py +++ b/src/oci/data_labeling_service_dataplane/models/record_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/source_details.py b/src/oci/data_labeling_service_dataplane/models/source_details.py index cc75f3b093..4cf7aa89a8 100644 --- a/src/oci/data_labeling_service_dataplane/models/source_details.py +++ b/src/oci/data_labeling_service_dataplane/models/source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/text_dataset_format_details.py b/src/oci/data_labeling_service_dataplane/models/text_dataset_format_details.py index f72c31f2bc..67e0a838b4 100644 --- a/src/oci/data_labeling_service_dataplane/models/text_dataset_format_details.py +++ b/src/oci/data_labeling_service_dataplane/models/text_dataset_format_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .dataset_format_details import DatasetFormatDetails diff --git a/src/oci/data_labeling_service_dataplane/models/text_selection_entity.py b/src/oci/data_labeling_service_dataplane/models/text_selection_entity.py index 3cb29a8be1..1632c55847 100644 --- a/src/oci/data_labeling_service_dataplane/models/text_selection_entity.py +++ b/src/oci/data_labeling_service_dataplane/models/text_selection_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .entity import Entity diff --git a/src/oci/data_labeling_service_dataplane/models/text_span.py b/src/oci/data_labeling_service_dataplane/models/text_span.py index b6296ff34a..5e464d4162 100644 --- a/src/oci/data_labeling_service_dataplane/models/text_span.py +++ b/src/oci/data_labeling_service_dataplane/models/text_span.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/update_annotation_details.py b/src/oci/data_labeling_service_dataplane/models/update_annotation_details.py index c215c65e84..9d085cfcd0 100644 --- a/src/oci/data_labeling_service_dataplane/models/update_annotation_details.py +++ b/src/oci/data_labeling_service_dataplane/models/update_annotation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_labeling_service_dataplane/models/update_record_details.py b/src/oci/data_labeling_service_dataplane/models/update_record_details.py index 8d08abbcf1..220b0afc25 100644 --- a/src/oci/data_labeling_service_dataplane/models/update_record_details.py +++ b/src/oci/data_labeling_service_dataplane/models/update_record_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/__init__.py b/src/oci/data_safe/__init__.py index 3c8251094b..a5c8fbd083 100644 --- a/src/oci/data_safe/__init__.py +++ b/src/oci/data_safe/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/data_safe/data_safe_client.py b/src/oci/data_safe/data_safe_client.py index 492a9bf5fa..9de9ab2c02 100644 --- a/src/oci/data_safe/data_safe_client.py +++ b/src/oci/data_safe/data_safe_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("data_safe", config, signer, data_safe_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -133,6 +139,10 @@ def activate_target_database(self, activate_target_database_details, target_data To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -144,6 +154,7 @@ def activate_target_database(self, activate_target_database_details, target_data # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -227,6 +238,10 @@ def change_data_safe_private_endpoint_compartment(self, data_safe_private_endpoi To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -238,6 +253,7 @@ def change_data_safe_private_endpoint_compartment(self, data_safe_private_endpoi # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -324,6 +340,10 @@ def change_on_prem_connector_compartment(self, on_prem_connector_id, change_on_p To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -335,6 +355,7 @@ def change_on_prem_connector_compartment(self, on_prem_connector_id, change_on_p # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -428,6 +449,10 @@ def change_security_assessment_compartment(self, security_assessment_id, change_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -439,6 +464,7 @@ def change_security_assessment_compartment(self, security_assessment_id, change_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -528,6 +554,10 @@ def change_target_database_compartment(self, target_database_id, change_target_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -539,6 +569,7 @@ def change_target_database_compartment(self, target_database_id, change_target_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -632,6 +663,10 @@ def change_user_assessment_compartment(self, user_assessment_id, change_user_ass To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -643,6 +678,7 @@ def change_user_assessment_compartment(self, user_assessment_id, change_user_ass # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -733,6 +769,10 @@ def compare_security_assessment(self, security_assessment_id, compare_security_a To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -744,6 +784,7 @@ def compare_security_assessment(self, security_assessment_id, compare_security_a # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -834,6 +875,10 @@ def compare_user_assessment(self, user_assessment_id, compare_user_assessment_de To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -845,6 +890,7 @@ def compare_user_assessment(self, user_assessment_id, compare_user_assessment_de # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -924,6 +970,10 @@ def create_data_safe_private_endpoint(self, create_data_safe_private_endpoint_de To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_safe.models.DataSafePrivateEndpoint` :rtype: :class:`~oci.response.Response` @@ -935,6 +985,7 @@ def create_data_safe_private_endpoint(self, create_data_safe_private_endpoint_de # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1002,6 +1053,10 @@ def create_on_prem_connector(self, create_on_prem_connector_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_safe.models.OnPremConnector` :rtype: :class:`~oci.response.Response` @@ -1013,6 +1068,7 @@ def create_on_prem_connector(self, create_on_prem_connector_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1084,6 +1140,10 @@ def create_security_assessment(self, create_security_assessment_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_safe.models.SecurityAssessment` :rtype: :class:`~oci.response.Response` @@ -1095,6 +1155,7 @@ def create_security_assessment(self, create_security_assessment_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1162,6 +1223,10 @@ def create_target_database(self, create_target_database_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_safe.models.TargetDatabase` :rtype: :class:`~oci.response.Response` @@ -1173,6 +1238,7 @@ def create_target_database(self, create_target_database_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1244,6 +1310,10 @@ def create_user_assessment(self, create_user_assessment_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_safe.models.UserAssessment` :rtype: :class:`~oci.response.Response` @@ -1255,6 +1325,7 @@ def create_user_assessment(self, create_user_assessment_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1329,6 +1400,10 @@ def deactivate_target_database(self, target_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1340,6 +1415,7 @@ def deactivate_target_database(self, target_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -1418,6 +1494,10 @@ def delete_data_safe_private_endpoint(self, data_safe_private_endpoint_id, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1429,6 +1509,7 @@ def delete_data_safe_private_endpoint(self, data_safe_private_endpoint_id, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1504,6 +1585,10 @@ def delete_on_prem_connector(self, on_prem_connector_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1515,6 +1600,7 @@ def delete_on_prem_connector(self, on_prem_connector_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1593,6 +1679,10 @@ def delete_security_assessment(self, security_assessment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1604,6 +1694,7 @@ def delete_security_assessment(self, security_assessment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1679,6 +1770,10 @@ def delete_target_database(self, target_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1690,6 +1785,7 @@ def delete_target_database(self, target_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1768,6 +1864,10 @@ def delete_user_assessment(self, user_assessment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1779,6 +1879,7 @@ def delete_user_assessment(self, user_assessment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1857,6 +1958,10 @@ def download_privilege_script(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -1868,6 +1973,7 @@ def download_privilege_script(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -1946,6 +2052,10 @@ def download_security_assessment_report(self, security_assessment_id, download_s To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -1957,6 +2067,7 @@ def download_security_assessment_report(self, security_assessment_id, download_s # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -2049,6 +2160,10 @@ def download_user_assessment_report(self, user_assessment_id, download_user_asse To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -2060,6 +2175,7 @@ def download_user_assessment_report(self, user_assessment_id, download_user_asse # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -2145,6 +2261,10 @@ def enable_data_safe_configuration(self, enable_data_safe_configuration_details, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2156,6 +2276,7 @@ def enable_data_safe_configuration(self, enable_data_safe_configuration_details, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "if_match", @@ -2238,6 +2359,10 @@ def generate_on_prem_connector_configuration(self, generate_on_prem_connector_co To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -2249,6 +2374,7 @@ def generate_on_prem_connector_configuration(self, generate_on_prem_connector_co # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -2341,6 +2467,10 @@ def generate_security_assessment_report(self, security_assessment_id, generate_s To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2352,6 +2482,7 @@ def generate_security_assessment_report(self, security_assessment_id, generate_s # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -2442,6 +2573,10 @@ def generate_user_assessment_report(self, user_assessment_id, generate_user_asse To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2453,6 +2588,7 @@ def generate_user_assessment_report(self, user_assessment_id, generate_user_asse # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -2526,6 +2662,10 @@ def get_data_safe_configuration(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_safe.models.DataSafeConfiguration` :rtype: :class:`~oci.response.Response` @@ -2537,6 +2677,7 @@ def get_data_safe_configuration(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "opc_request_id" @@ -2601,6 +2742,10 @@ def get_data_safe_private_endpoint(self, data_safe_private_endpoint_id, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_safe.models.DataSafePrivateEndpoint` :rtype: :class:`~oci.response.Response` @@ -2612,6 +2757,7 @@ def get_data_safe_private_endpoint(self, data_safe_private_endpoint_id, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2680,6 +2826,10 @@ def get_on_prem_connector(self, on_prem_connector_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_safe.models.OnPremConnector` :rtype: :class:`~oci.response.Response` @@ -2691,6 +2841,7 @@ def get_on_prem_connector(self, on_prem_connector_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2759,6 +2910,10 @@ def get_security_assessment(self, security_assessment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_safe.models.SecurityAssessment` :rtype: :class:`~oci.response.Response` @@ -2770,6 +2925,7 @@ def get_security_assessment(self, security_assessment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2841,6 +2997,10 @@ def get_security_assessment_comparison(self, security_assessment_id, comparison_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_safe.models.SecurityAssessmentComparison` :rtype: :class:`~oci.response.Response` @@ -2852,6 +3012,7 @@ def get_security_assessment_comparison(self, security_assessment_id, comparison_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2921,6 +3082,10 @@ def get_target_database(self, target_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_safe.models.TargetDatabase` :rtype: :class:`~oci.response.Response` @@ -2932,6 +3097,7 @@ def get_target_database(self, target_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3000,6 +3166,10 @@ def get_user_assessment(self, user_assessment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_safe.models.UserAssessment` :rtype: :class:`~oci.response.Response` @@ -3011,6 +3181,7 @@ def get_user_assessment(self, user_assessment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3082,6 +3253,10 @@ def get_user_assessment_comparison(self, user_assessment_id, comparison_user_ass To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_safe.models.UserAssessmentComparison` :rtype: :class:`~oci.response.Response` @@ -3093,6 +3268,7 @@ def get_user_assessment_comparison(self, user_assessment_id, comparison_user_ass # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3162,6 +3338,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_safe.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -3173,6 +3353,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3286,6 +3467,10 @@ def list_data_safe_private_endpoints(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_safe.models.DataSafePrivateEndpointSummary` :rtype: :class:`~oci.response.Response` @@ -3297,6 +3482,7 @@ def list_data_safe_private_endpoints(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "vcn_id", @@ -3436,6 +3622,10 @@ def list_findings(self, security_assessment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_safe.models.FindingSummary` :rtype: :class:`~oci.response.Response` @@ -3447,6 +3637,7 @@ def list_findings(self, security_assessment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "severity", @@ -3594,6 +3785,10 @@ def list_grants(self, user_assessment_id, user_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_safe.models.GrantSummary` :rtype: :class:`~oci.response.Response` @@ -3605,6 +3800,7 @@ def list_grants(self, user_assessment_id, user_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "grant_key", "grant_name", @@ -3761,6 +3957,10 @@ def list_on_prem_connectors(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_safe.models.OnPremConnectorSummary` :rtype: :class:`~oci.response.Response` @@ -3772,6 +3972,7 @@ def list_on_prem_connectors(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "on_prem_connector_id", "display_name", @@ -3974,6 +4175,10 @@ def list_security_assessments(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_safe.models.SecurityAssessmentSummary` :rtype: :class:`~oci.response.Response` @@ -3985,6 +4190,7 @@ def list_security_assessments(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id_in_subtree", "access_level", @@ -4177,6 +4383,10 @@ def list_target_databases(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_safe.models.TargetDatabaseSummary` :rtype: :class:`~oci.response.Response` @@ -4188,6 +4398,7 @@ def list_target_databases(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "target_database_id", "display_name", @@ -4418,6 +4629,10 @@ def list_user_analytics(self, user_assessment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_safe.models.UserAggregation` :rtype: :class:`~oci.response.Response` @@ -4429,6 +4644,7 @@ def list_user_analytics(self, user_assessment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id_in_subtree", "access_level", @@ -4653,6 +4869,10 @@ def list_user_assessments(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_safe.models.UserAssessmentSummary` :rtype: :class:`~oci.response.Response` @@ -4664,6 +4884,7 @@ def list_user_assessments(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id_in_subtree", "access_level", @@ -4893,6 +5114,10 @@ def list_users(self, user_assessment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_safe.models.UserSummary` :rtype: :class:`~oci.response.Response` @@ -4904,6 +5129,7 @@ def list_users(self, user_assessment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "compartment_id_in_subtree", @@ -5045,6 +5271,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_safe.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -5056,6 +5286,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -5144,6 +5375,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_safe.models.WorkRequestLogEntry` :rtype: :class:`~oci.response.Response` @@ -5155,6 +5390,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -5249,6 +5485,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_safe.models.WorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -5260,6 +5500,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "operation_type", "resource_id", @@ -5348,6 +5589,10 @@ def refresh_security_assessment(self, security_assessment_id, run_security_asses To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5359,6 +5604,7 @@ def refresh_security_assessment(self, security_assessment_id, run_security_asses # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -5450,6 +5696,10 @@ def refresh_user_assessment(self, user_assessment_id, run_user_assessment_detail To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5461,6 +5711,7 @@ def refresh_user_assessment(self, user_assessment_id, run_user_assessment_detail # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -5550,6 +5801,10 @@ def set_security_assessment_baseline(self, security_assessment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5561,6 +5816,7 @@ def set_security_assessment_baseline(self, security_assessment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -5651,6 +5907,10 @@ def set_user_assessment_baseline(self, user_assessment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5662,6 +5922,7 @@ def set_user_assessment_baseline(self, user_assessment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -5750,6 +6011,10 @@ def unset_security_assessment_baseline(self, security_assessment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5761,6 +6026,7 @@ def unset_security_assessment_baseline(self, security_assessment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -5846,6 +6112,10 @@ def unset_user_assessment_baseline(self, user_assessment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5857,6 +6127,7 @@ def unset_user_assessment_baseline(self, user_assessment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -5938,6 +6209,10 @@ def update_data_safe_private_endpoint(self, data_safe_private_endpoint_id, updat To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5949,6 +6224,7 @@ def update_data_safe_private_endpoint(self, data_safe_private_endpoint_id, updat # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -6029,6 +6305,10 @@ def update_on_prem_connector(self, on_prem_connector_id, update_on_prem_connecto To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6040,6 +6320,7 @@ def update_on_prem_connector(self, on_prem_connector_id, update_on_prem_connecto # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -6126,6 +6407,10 @@ def update_on_prem_connector_wallet(self, update_on_prem_connector_wallet_detail To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6137,6 +6422,7 @@ def update_on_prem_connector_wallet(self, update_on_prem_connector_wallet_detail # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -6220,6 +6506,10 @@ def update_security_assessment(self, security_assessment_id, update_security_ass To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6231,6 +6521,7 @@ def update_security_assessment(self, security_assessment_id, update_security_ass # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -6317,6 +6608,10 @@ def update_target_database(self, target_database_id, update_target_database_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6328,6 +6623,7 @@ def update_target_database(self, target_database_id, update_target_database_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -6411,6 +6707,10 @@ def update_user_assessment(self, user_assessment_id, update_user_assessment_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6422,6 +6722,7 @@ def update_user_assessment(self, user_assessment_id, update_user_assessment_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" diff --git a/src/oci/data_safe/data_safe_client_composite_operations.py b/src/oci/data_safe/data_safe_client_composite_operations.py index 74cfa48454..8e605a8005 100644 --- a/src/oci/data_safe/data_safe_client_composite_operations.py +++ b/src/oci/data_safe/data_safe_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/data_safe/models/__init__.py b/src/oci/data_safe/models/__init__.py index fe5ca0031f..f108067902 100644 --- a/src/oci/data_safe/models/__init__.py +++ b/src/oci/data_safe/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/data_safe/models/activate_target_database_details.py b/src/oci/data_safe/models/activate_target_database_details.py index 595c18dd10..eb53218bca 100644 --- a/src/oci/data_safe/models/activate_target_database_details.py +++ b/src/oci/data_safe/models/activate_target_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/autonomous_database_details.py b/src/oci/data_safe/models/autonomous_database_details.py index ff6701c528..2658a2831e 100644 --- a/src/oci/data_safe/models/autonomous_database_details.py +++ b/src/oci/data_safe/models/autonomous_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_details import DatabaseDetails diff --git a/src/oci/data_safe/models/change_data_safe_private_endpoint_compartment_details.py b/src/oci/data_safe/models/change_data_safe_private_endpoint_compartment_details.py index 138e9634ec..02e69907b5 100644 --- a/src/oci/data_safe/models/change_data_safe_private_endpoint_compartment_details.py +++ b/src/oci/data_safe/models/change_data_safe_private_endpoint_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/change_on_prem_connector_compartment_details.py b/src/oci/data_safe/models/change_on_prem_connector_compartment_details.py index e474d26124..4748573510 100644 --- a/src/oci/data_safe/models/change_on_prem_connector_compartment_details.py +++ b/src/oci/data_safe/models/change_on_prem_connector_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/change_security_assessment_compartment_details.py b/src/oci/data_safe/models/change_security_assessment_compartment_details.py index ad4b7421c5..47603fc1be 100644 --- a/src/oci/data_safe/models/change_security_assessment_compartment_details.py +++ b/src/oci/data_safe/models/change_security_assessment_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/change_target_database_compartment_details.py b/src/oci/data_safe/models/change_target_database_compartment_details.py index d0c3c1b11d..587e58a37f 100644 --- a/src/oci/data_safe/models/change_target_database_compartment_details.py +++ b/src/oci/data_safe/models/change_target_database_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/change_user_assessment_compartment_details.py b/src/oci/data_safe/models/change_user_assessment_compartment_details.py index 145db73e3f..9804a61235 100644 --- a/src/oci/data_safe/models/change_user_assessment_compartment_details.py +++ b/src/oci/data_safe/models/change_user_assessment_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/compare_security_assessment_details.py b/src/oci/data_safe/models/compare_security_assessment_details.py index b50f5b605b..92134c96a6 100644 --- a/src/oci/data_safe/models/compare_security_assessment_details.py +++ b/src/oci/data_safe/models/compare_security_assessment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/compare_user_assessment_details.py b/src/oci/data_safe/models/compare_user_assessment_details.py index e10770d8f6..5415910829 100644 --- a/src/oci/data_safe/models/compare_user_assessment_details.py +++ b/src/oci/data_safe/models/compare_user_assessment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/connection_option.py b/src/oci/data_safe/models/connection_option.py index 4c33213f9b..6b47675e1e 100644 --- a/src/oci/data_safe/models/connection_option.py +++ b/src/oci/data_safe/models/connection_option.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/create_data_safe_private_endpoint_details.py b/src/oci/data_safe/models/create_data_safe_private_endpoint_details.py index ead8065ef9..a97a577204 100644 --- a/src/oci/data_safe/models/create_data_safe_private_endpoint_details.py +++ b/src/oci/data_safe/models/create_data_safe_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/create_on_prem_connector_details.py b/src/oci/data_safe/models/create_on_prem_connector_details.py index b5024fc9c4..7860e17dce 100644 --- a/src/oci/data_safe/models/create_on_prem_connector_details.py +++ b/src/oci/data_safe/models/create_on_prem_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/create_security_assessment_details.py b/src/oci/data_safe/models/create_security_assessment_details.py index 57fe75133d..443860fb3c 100644 --- a/src/oci/data_safe/models/create_security_assessment_details.py +++ b/src/oci/data_safe/models/create_security_assessment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/create_target_database_details.py b/src/oci/data_safe/models/create_target_database_details.py index 83455321e3..c508867ca1 100644 --- a/src/oci/data_safe/models/create_target_database_details.py +++ b/src/oci/data_safe/models/create_target_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/create_user_assessment_details.py b/src/oci/data_safe/models/create_user_assessment_details.py index 12e0641d0b..cb2060197d 100644 --- a/src/oci/data_safe/models/create_user_assessment_details.py +++ b/src/oci/data_safe/models/create_user_assessment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/credentials.py b/src/oci/data_safe/models/credentials.py index 680e1336fd..97cec34227 100644 --- a/src/oci/data_safe/models/credentials.py +++ b/src/oci/data_safe/models/credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/data_safe_configuration.py b/src/oci/data_safe/models/data_safe_configuration.py index b508cdd7bd..1eb78a278e 100644 --- a/src/oci/data_safe/models/data_safe_configuration.py +++ b/src/oci/data_safe/models/data_safe_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/data_safe_private_endpoint.py b/src/oci/data_safe/models/data_safe_private_endpoint.py index 67d6eac15d..e4e203d193 100644 --- a/src/oci/data_safe/models/data_safe_private_endpoint.py +++ b/src/oci/data_safe/models/data_safe_private_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/data_safe_private_endpoint_summary.py b/src/oci/data_safe/models/data_safe_private_endpoint_summary.py index 3abfdea757..f9e9d3942e 100644 --- a/src/oci/data_safe/models/data_safe_private_endpoint_summary.py +++ b/src/oci/data_safe/models/data_safe_private_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/database_cloud_service_details.py b/src/oci/data_safe/models/database_cloud_service_details.py index dc1c869095..d75d8294bb 100644 --- a/src/oci/data_safe/models/database_cloud_service_details.py +++ b/src/oci/data_safe/models/database_cloud_service_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_details import DatabaseDetails diff --git a/src/oci/data_safe/models/database_details.py b/src/oci/data_safe/models/database_details.py index af2381e6bb..7184a0dd79 100644 --- a/src/oci/data_safe/models/database_details.py +++ b/src/oci/data_safe/models/database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/diffs.py b/src/oci/data_safe/models/diffs.py index f75d9e2a4e..1405c37612 100644 --- a/src/oci/data_safe/models/diffs.py +++ b/src/oci/data_safe/models/diffs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/download_security_assessment_report_details.py b/src/oci/data_safe/models/download_security_assessment_report_details.py index c28e8157c6..be4985c2f9 100644 --- a/src/oci/data_safe/models/download_security_assessment_report_details.py +++ b/src/oci/data_safe/models/download_security_assessment_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/download_user_assessment_report_details.py b/src/oci/data_safe/models/download_user_assessment_report_details.py index a43ed29cdf..783b018d3f 100644 --- a/src/oci/data_safe/models/download_user_assessment_report_details.py +++ b/src/oci/data_safe/models/download_user_assessment_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/enable_data_safe_configuration_details.py b/src/oci/data_safe/models/enable_data_safe_configuration_details.py index 511129598a..3472cf01a4 100644 --- a/src/oci/data_safe/models/enable_data_safe_configuration_details.py +++ b/src/oci/data_safe/models/enable_data_safe_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/finding.py b/src/oci/data_safe/models/finding.py index 6bc0e9f40f..0176922a93 100644 --- a/src/oci/data_safe/models/finding.py +++ b/src/oci/data_safe/models/finding.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/finding_summary.py b/src/oci/data_safe/models/finding_summary.py index acb3b9811e..3bb1214a36 100644 --- a/src/oci/data_safe/models/finding_summary.py +++ b/src/oci/data_safe/models/finding_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/generate_on_prem_connector_configuration_details.py b/src/oci/data_safe/models/generate_on_prem_connector_configuration_details.py index 9ac2ce9676..5c40a38427 100644 --- a/src/oci/data_safe/models/generate_on_prem_connector_configuration_details.py +++ b/src/oci/data_safe/models/generate_on_prem_connector_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/generate_security_assessment_report_details.py b/src/oci/data_safe/models/generate_security_assessment_report_details.py index 7c988b7722..3d4bea24e4 100644 --- a/src/oci/data_safe/models/generate_security_assessment_report_details.py +++ b/src/oci/data_safe/models/generate_security_assessment_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/generate_user_assessment_report_details.py b/src/oci/data_safe/models/generate_user_assessment_report_details.py index aa1b73e9b0..14a5a1dd94 100644 --- a/src/oci/data_safe/models/generate_user_assessment_report_details.py +++ b/src/oci/data_safe/models/generate_user_assessment_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/grant_summary.py b/src/oci/data_safe/models/grant_summary.py index 37f185bd77..f9064a2dbb 100644 --- a/src/oci/data_safe/models/grant_summary.py +++ b/src/oci/data_safe/models/grant_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/initialization_parameter.py b/src/oci/data_safe/models/initialization_parameter.py index 75170e9f8a..f7bb2a1488 100644 --- a/src/oci/data_safe/models/initialization_parameter.py +++ b/src/oci/data_safe/models/initialization_parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/installed_database_details.py b/src/oci/data_safe/models/installed_database_details.py index 14faf7af38..5739726acf 100644 --- a/src/oci/data_safe/models/installed_database_details.py +++ b/src/oci/data_safe/models/installed_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_details import DatabaseDetails diff --git a/src/oci/data_safe/models/on_prem_connector.py b/src/oci/data_safe/models/on_prem_connector.py index a9d15d97da..520847a161 100644 --- a/src/oci/data_safe/models/on_prem_connector.py +++ b/src/oci/data_safe/models/on_prem_connector.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/on_prem_connector_summary.py b/src/oci/data_safe/models/on_prem_connector_summary.py index d7fda559ec..34c3e047cc 100644 --- a/src/oci/data_safe/models/on_prem_connector_summary.py +++ b/src/oci/data_safe/models/on_prem_connector_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/on_premise_connector.py b/src/oci/data_safe/models/on_premise_connector.py index 5b981657c8..7af742e71a 100644 --- a/src/oci/data_safe/models/on_premise_connector.py +++ b/src/oci/data_safe/models/on_premise_connector.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_option import ConnectionOption diff --git a/src/oci/data_safe/models/private_endpoint.py b/src/oci/data_safe/models/private_endpoint.py index f5e6a375fb..9cf0727e02 100644 --- a/src/oci/data_safe/models/private_endpoint.py +++ b/src/oci/data_safe/models/private_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_option import ConnectionOption diff --git a/src/oci/data_safe/models/profile_details.py b/src/oci/data_safe/models/profile_details.py index bffdc5c462..aafdb8e136 100644 --- a/src/oci/data_safe/models/profile_details.py +++ b/src/oci/data_safe/models/profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/references.py b/src/oci/data_safe/models/references.py index b84c9fb0c4..ee58ad7ec4 100644 --- a/src/oci/data_safe/models/references.py +++ b/src/oci/data_safe/models/references.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/run_security_assessment_details.py b/src/oci/data_safe/models/run_security_assessment_details.py index cc693e1990..f595eaa855 100644 --- a/src/oci/data_safe/models/run_security_assessment_details.py +++ b/src/oci/data_safe/models/run_security_assessment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/run_user_assessment_details.py b/src/oci/data_safe/models/run_user_assessment_details.py index 7c81122d5d..3ccff6b4a3 100644 --- a/src/oci/data_safe/models/run_user_assessment_details.py +++ b/src/oci/data_safe/models/run_user_assessment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/section_statistics.py b/src/oci/data_safe/models/section_statistics.py index b47c1ff1b9..0f290c3f55 100644 --- a/src/oci/data_safe/models/section_statistics.py +++ b/src/oci/data_safe/models/section_statistics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/security_assessment.py b/src/oci/data_safe/models/security_assessment.py index 396df75acb..ad4a182b00 100644 --- a/src/oci/data_safe/models/security_assessment.py +++ b/src/oci/data_safe/models/security_assessment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/security_assessment_base_line_details.py b/src/oci/data_safe/models/security_assessment_base_line_details.py index 38a84ed086..d8ec8c4b5d 100644 --- a/src/oci/data_safe/models/security_assessment_base_line_details.py +++ b/src/oci/data_safe/models/security_assessment_base_line_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/security_assessment_comparison.py b/src/oci/data_safe/models/security_assessment_comparison.py index 411473dce4..933e717a4d 100644 --- a/src/oci/data_safe/models/security_assessment_comparison.py +++ b/src/oci/data_safe/models/security_assessment_comparison.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/security_assessment_comparison_per_target.py b/src/oci/data_safe/models/security_assessment_comparison_per_target.py index 3796f60017..61d538b481 100644 --- a/src/oci/data_safe/models/security_assessment_comparison_per_target.py +++ b/src/oci/data_safe/models/security_assessment_comparison_per_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/security_assessment_statistics.py b/src/oci/data_safe/models/security_assessment_statistics.py index e3afea7829..4a474032a2 100644 --- a/src/oci/data_safe/models/security_assessment_statistics.py +++ b/src/oci/data_safe/models/security_assessment_statistics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/security_assessment_summary.py b/src/oci/data_safe/models/security_assessment_summary.py index a5989b7f33..e4f926da74 100644 --- a/src/oci/data_safe/models/security_assessment_summary.py +++ b/src/oci/data_safe/models/security_assessment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/target_database.py b/src/oci/data_safe/models/target_database.py index 9b94f01b66..c5f14af627 100644 --- a/src/oci/data_safe/models/target_database.py +++ b/src/oci/data_safe/models/target_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/target_database_summary.py b/src/oci/data_safe/models/target_database_summary.py index e5ef933b22..827b8e4f07 100644 --- a/src/oci/data_safe/models/target_database_summary.py +++ b/src/oci/data_safe/models/target_database_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/tls_config.py b/src/oci/data_safe/models/tls_config.py index 1c37c515cc..826bb1d2d9 100644 --- a/src/oci/data_safe/models/tls_config.py +++ b/src/oci/data_safe/models/tls_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/update_data_safe_private_endpoint_details.py b/src/oci/data_safe/models/update_data_safe_private_endpoint_details.py index e3ff6ecf00..bda255a6b6 100644 --- a/src/oci/data_safe/models/update_data_safe_private_endpoint_details.py +++ b/src/oci/data_safe/models/update_data_safe_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/update_on_prem_connector_details.py b/src/oci/data_safe/models/update_on_prem_connector_details.py index 1f2a7b6e18..9b901fb907 100644 --- a/src/oci/data_safe/models/update_on_prem_connector_details.py +++ b/src/oci/data_safe/models/update_on_prem_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/update_on_prem_connector_wallet_details.py b/src/oci/data_safe/models/update_on_prem_connector_wallet_details.py index edd500779d..aaa8442643 100644 --- a/src/oci/data_safe/models/update_on_prem_connector_wallet_details.py +++ b/src/oci/data_safe/models/update_on_prem_connector_wallet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/update_security_assessment_details.py b/src/oci/data_safe/models/update_security_assessment_details.py index 31f6022ff8..3e2d256db0 100644 --- a/src/oci/data_safe/models/update_security_assessment_details.py +++ b/src/oci/data_safe/models/update_security_assessment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/update_target_database_details.py b/src/oci/data_safe/models/update_target_database_details.py index fa5c73e0b5..7dd9bc0fdf 100644 --- a/src/oci/data_safe/models/update_target_database_details.py +++ b/src/oci/data_safe/models/update_target_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/update_user_assessment_details.py b/src/oci/data_safe/models/update_user_assessment_details.py index 5b186fa086..7bf14a59e3 100644 --- a/src/oci/data_safe/models/update_user_assessment_details.py +++ b/src/oci/data_safe/models/update_user_assessment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/user_aggregation.py b/src/oci/data_safe/models/user_aggregation.py index 1b3d0444e4..c6fe1c7a52 100644 --- a/src/oci/data_safe/models/user_aggregation.py +++ b/src/oci/data_safe/models/user_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/user_assessment.py b/src/oci/data_safe/models/user_assessment.py index 9f9306bd57..9d7152bb71 100644 --- a/src/oci/data_safe/models/user_assessment.py +++ b/src/oci/data_safe/models/user_assessment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/user_assessment_base_line_details.py b/src/oci/data_safe/models/user_assessment_base_line_details.py index d970981de8..710ee9c734 100644 --- a/src/oci/data_safe/models/user_assessment_base_line_details.py +++ b/src/oci/data_safe/models/user_assessment_base_line_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/user_assessment_comparison.py b/src/oci/data_safe/models/user_assessment_comparison.py index e80c5b61d6..ce4445a2a8 100644 --- a/src/oci/data_safe/models/user_assessment_comparison.py +++ b/src/oci/data_safe/models/user_assessment_comparison.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/user_assessment_summary.py b/src/oci/data_safe/models/user_assessment_summary.py index 6a6469a373..1ff9ccf1a8 100644 --- a/src/oci/data_safe/models/user_assessment_summary.py +++ b/src/oci/data_safe/models/user_assessment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/user_details.py b/src/oci/data_safe/models/user_details.py index 551b6a7833..e6ed8c0d59 100644 --- a/src/oci/data_safe/models/user_details.py +++ b/src/oci/data_safe/models/user_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/user_summary.py b/src/oci/data_safe/models/user_summary.py index 6dcf4a2125..1e6f93935b 100644 --- a/src/oci/data_safe/models/user_summary.py +++ b/src/oci/data_safe/models/user_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/work_request.py b/src/oci/data_safe/models/work_request.py index 03423c90e5..cc2ff3fddf 100644 --- a/src/oci/data_safe/models/work_request.py +++ b/src/oci/data_safe/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/work_request_error.py b/src/oci/data_safe/models/work_request_error.py index 56b9d43b5b..8337cbe434 100644 --- a/src/oci/data_safe/models/work_request_error.py +++ b/src/oci/data_safe/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/work_request_log_entry.py b/src/oci/data_safe/models/work_request_log_entry.py index b9a2a2a9ad..b0245d57c1 100644 --- a/src/oci/data_safe/models/work_request_log_entry.py +++ b/src/oci/data_safe/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/work_request_resource.py b/src/oci/data_safe/models/work_request_resource.py index 2e851cdcef..c56b5adc5d 100644 --- a/src/oci/data_safe/models/work_request_resource.py +++ b/src/oci/data_safe/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_safe/models/work_request_summary.py b/src/oci/data_safe/models/work_request_summary.py index 51b8a4de68..a738d0a29d 100644 --- a/src/oci/data_safe/models/work_request_summary.py +++ b/src/oci/data_safe/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/__init__.py b/src/oci/data_science/__init__.py index 3f27c83eb5..2ddd205e96 100644 --- a/src/oci/data_science/__init__.py +++ b/src/oci/data_science/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/data_science/data_science_client.py b/src/oci/data_science/data_science_client.py index 732ea6db77..d6c329f0a1 100644 --- a/src/oci/data_science/data_science_client.py +++ b/src/oci/data_science/data_science_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("data_science", config, signer, data_science_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -127,6 +133,10 @@ def activate_model(self, model_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.Model` :rtype: :class:`~oci.response.Response` @@ -138,6 +148,7 @@ def activate_model(self, model_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -217,6 +228,10 @@ def activate_model_deployment(self, model_deployment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -228,6 +243,7 @@ def activate_model_deployment(self, model_deployment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -305,6 +321,10 @@ def activate_notebook_session(self, notebook_session_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -316,6 +336,7 @@ def activate_notebook_session(self, notebook_session_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -393,6 +414,10 @@ def cancel_job_run(self, job_run_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -404,6 +429,7 @@ def cancel_job_run(self, job_run_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -481,6 +507,10 @@ def cancel_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -492,6 +522,7 @@ def cancel_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -572,6 +603,10 @@ def change_job_compartment(self, job_id, change_job_compartment_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -583,6 +618,7 @@ def change_job_compartment(self, job_id, change_job_compartment_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -665,6 +701,10 @@ def change_job_run_compartment(self, job_run_id, change_job_run_compartment_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -676,6 +716,7 @@ def change_job_run_compartment(self, job_run_id, change_job_run_compartment_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -761,6 +802,10 @@ def change_model_compartment(self, model_id, change_model_compartment_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -772,6 +817,7 @@ def change_model_compartment(self, model_id, change_model_compartment_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -860,6 +906,10 @@ def change_model_deployment_compartment(self, model_deployment_id, change_model_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -871,6 +921,7 @@ def change_model_deployment_compartment(self, model_deployment_id, change_model_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -959,6 +1010,10 @@ def change_notebook_session_compartment(self, notebook_session_id, change_notebo To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -970,6 +1025,7 @@ def change_notebook_session_compartment(self, notebook_session_id, change_notebo # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1058,6 +1114,10 @@ def change_project_compartment(self, project_id, change_project_compartment_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1069,6 +1129,7 @@ def change_project_compartment(self, project_id, change_project_compartment_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1145,6 +1206,10 @@ def create_job(self, create_job_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.Job` :rtype: :class:`~oci.response.Response` @@ -1156,6 +1221,7 @@ def create_job(self, create_job_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1236,6 +1302,10 @@ def create_job_artifact(self, job_id, job_artifact, **kwargs): The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings :param int buffer_limit: (optional) A buffer limit for the stream to be buffered. buffer_limit is used to set the buffer size capacity. Streams will be read until the size of the buffer reaches the buffer_limit. If the stream size is greater than the buffer_limit, a BufferError exception will be thrown. @@ -1255,6 +1325,7 @@ def create_job_artifact(self, job_id, job_artifact, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "buffer_limit", "content_length", @@ -1324,6 +1395,7 @@ def create_job_artifact(self, job_id, job_artifact, **kwargs): path_params=path_params, header_params=header_params, body=job_artifact, + allow_control_chars=kwargs.get('allow_control_chars'), enforce_content_headers=False) else: return self.base_client.call_api( @@ -1332,6 +1404,7 @@ def create_job_artifact(self, job_id, job_artifact, **kwargs): path_params=path_params, header_params=header_params, body=job_artifact, + allow_control_chars=kwargs.get('allow_control_chars'), enforce_content_headers=False) def create_job_run(self, create_job_run_details, **kwargs): @@ -1356,6 +1429,10 @@ def create_job_run(self, create_job_run_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.JobRun` :rtype: :class:`~oci.response.Response` @@ -1367,6 +1444,7 @@ def create_job_run(self, create_job_run_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1431,6 +1509,10 @@ def create_model(self, create_model_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.Model` :rtype: :class:`~oci.response.Response` @@ -1442,6 +1524,7 @@ def create_model(self, create_model_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1522,6 +1605,10 @@ def create_model_artifact(self, model_id, model_artifact, **kwargs): The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings :param int buffer_limit: (optional) A buffer limit for the stream to be buffered. buffer_limit is used to set the buffer size capacity. Streams will be read until the size of the buffer reaches the buffer_limit. If the stream size is greater than the buffer_limit, a BufferError exception will be thrown. @@ -1541,6 +1628,7 @@ def create_model_artifact(self, model_id, model_artifact, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "buffer_limit", "content_length", @@ -1610,6 +1698,7 @@ def create_model_artifact(self, model_id, model_artifact, **kwargs): path_params=path_params, header_params=header_params, body=model_artifact, + allow_control_chars=kwargs.get('allow_control_chars'), enforce_content_headers=False) else: return self.base_client.call_api( @@ -1618,6 +1707,7 @@ def create_model_artifact(self, model_id, model_artifact, **kwargs): path_params=path_params, header_params=header_params, body=model_artifact, + allow_control_chars=kwargs.get('allow_control_chars'), enforce_content_headers=False) def create_model_deployment(self, create_model_deployment_details, **kwargs): @@ -1642,6 +1732,10 @@ def create_model_deployment(self, create_model_deployment_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.ModelDeployment` :rtype: :class:`~oci.response.Response` @@ -1653,6 +1747,7 @@ def create_model_deployment(self, create_model_deployment_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1722,6 +1817,10 @@ def create_model_provenance(self, model_id, create_model_provenance_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.ModelProvenance` :rtype: :class:`~oci.response.Response` @@ -1733,6 +1832,7 @@ def create_model_provenance(self, model_id, create_model_provenance_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1809,6 +1909,10 @@ def create_notebook_session(self, create_notebook_session_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.NotebookSession` :rtype: :class:`~oci.response.Response` @@ -1820,6 +1924,7 @@ def create_notebook_session(self, create_notebook_session_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1884,6 +1989,10 @@ def create_project(self, create_project_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.Project` :rtype: :class:`~oci.response.Response` @@ -1895,6 +2004,7 @@ def create_project(self, create_project_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1965,6 +2075,10 @@ def deactivate_model(self, model_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.Model` :rtype: :class:`~oci.response.Response` @@ -1976,6 +2090,7 @@ def deactivate_model(self, model_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2055,6 +2170,10 @@ def deactivate_model_deployment(self, model_deployment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2066,6 +2185,7 @@ def deactivate_model_deployment(self, model_deployment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2143,6 +2263,10 @@ def deactivate_notebook_session(self, notebook_session_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2154,6 +2278,7 @@ def deactivate_notebook_session(self, notebook_session_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2234,6 +2359,10 @@ def delete_job(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2245,6 +2374,7 @@ def delete_job(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2330,6 +2460,10 @@ def delete_job_run(self, job_run_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2341,6 +2475,7 @@ def delete_job_run(self, job_run_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2418,6 +2553,10 @@ def delete_model(self, model_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2429,6 +2568,7 @@ def delete_model(self, model_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2506,6 +2646,10 @@ def delete_model_deployment(self, model_deployment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2517,6 +2661,7 @@ def delete_model_deployment(self, model_deployment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2594,6 +2739,10 @@ def delete_notebook_session(self, notebook_session_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2605,6 +2754,7 @@ def delete_notebook_session(self, notebook_session_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2682,6 +2832,10 @@ def delete_project(self, project_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2693,6 +2847,7 @@ def delete_project(self, project_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2763,6 +2918,10 @@ def get_job(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.Job` :rtype: :class:`~oci.response.Response` @@ -2774,6 +2933,7 @@ def get_job(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2850,6 +3010,10 @@ def get_job_artifact_content(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -2861,6 +3025,7 @@ def get_job_artifact_content(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "range" @@ -2933,6 +3098,10 @@ def get_job_run(self, job_run_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.JobRun` :rtype: :class:`~oci.response.Response` @@ -2944,6 +3113,7 @@ def get_job_run(self, job_run_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3014,6 +3184,10 @@ def get_model(self, model_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.Model` :rtype: :class:`~oci.response.Response` @@ -3025,6 +3199,7 @@ def get_model(self, model_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3101,6 +3276,10 @@ def get_model_artifact_content(self, model_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -3112,6 +3291,7 @@ def get_model_artifact_content(self, model_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "range" @@ -3184,6 +3364,10 @@ def get_model_deployment(self, model_deployment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.ModelDeployment` :rtype: :class:`~oci.response.Response` @@ -3195,6 +3379,7 @@ def get_model_deployment(self, model_deployment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3265,6 +3450,10 @@ def get_model_provenance(self, model_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.ModelProvenance` :rtype: :class:`~oci.response.Response` @@ -3276,6 +3465,7 @@ def get_model_provenance(self, model_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3346,6 +3536,10 @@ def get_notebook_session(self, notebook_session_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.NotebookSession` :rtype: :class:`~oci.response.Response` @@ -3357,6 +3551,7 @@ def get_notebook_session(self, notebook_session_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3427,6 +3622,10 @@ def get_project(self, project_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.Project` :rtype: :class:`~oci.response.Response` @@ -3438,6 +3637,7 @@ def get_project(self, project_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3508,6 +3708,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -3519,6 +3723,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3589,6 +3794,10 @@ def head_job_artifact(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3600,6 +3809,7 @@ def head_job_artifact(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3668,6 +3878,10 @@ def head_model_artifact(self, model_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3679,6 +3893,7 @@ def head_model_artifact(self, model_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3802,6 +4017,10 @@ def list_job_runs(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_science.models.JobRunSummary` :rtype: :class:`~oci.response.Response` @@ -3813,6 +4032,7 @@ def list_job_runs(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "job_id", @@ -3935,6 +4155,10 @@ def list_job_shapes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_science.models.JobShapeSummary` :rtype: :class:`~oci.response.Response` @@ -3946,6 +4170,7 @@ def list_job_shapes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -4070,6 +4295,10 @@ def list_jobs(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_science.models.JobSummary` :rtype: :class:`~oci.response.Response` @@ -4081,6 +4310,7 @@ def list_jobs(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "project_id", "id", @@ -4203,6 +4433,10 @@ def list_model_deployment_shapes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_science.models.ModelDeploymentShapeSummary` :rtype: :class:`~oci.response.Response` @@ -4214,6 +4448,7 @@ def list_model_deployment_shapes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -4338,6 +4573,10 @@ def list_model_deployments(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_science.models.ModelDeploymentSummary` :rtype: :class:`~oci.response.Response` @@ -4349,6 +4588,7 @@ def list_model_deployments(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "project_id", @@ -4507,6 +4747,10 @@ def list_models(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_science.models.ModelSummary` :rtype: :class:`~oci.response.Response` @@ -4518,6 +4762,7 @@ def list_models(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "project_id", @@ -4640,6 +4885,10 @@ def list_notebook_session_shapes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_science.models.NotebookSessionShapeSummary` :rtype: :class:`~oci.response.Response` @@ -4651,6 +4900,7 @@ def list_notebook_session_shapes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -4775,6 +5025,10 @@ def list_notebook_sessions(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_science.models.NotebookSessionSummary` :rtype: :class:`~oci.response.Response` @@ -4786,6 +5040,7 @@ def list_notebook_sessions(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "project_id", @@ -4940,6 +5195,10 @@ def list_projects(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_science.models.ProjectSummary` :rtype: :class:`~oci.response.Response` @@ -4951,6 +5210,7 @@ def list_projects(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "display_name", @@ -5053,6 +5313,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_science.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -5064,6 +5328,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5134,6 +5399,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_science.models.WorkRequestLogEntry` :rtype: :class:`~oci.response.Response` @@ -5145,6 +5414,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5258,6 +5528,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.data_science.models.WorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -5269,6 +5543,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "operation_type", @@ -5386,6 +5661,10 @@ def update_job(self, job_id, update_job_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.Job` :rtype: :class:`~oci.response.Response` @@ -5397,6 +5676,7 @@ def update_job(self, job_id, update_job_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -5481,6 +5761,10 @@ def update_job_run(self, job_run_id, update_job_run_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.JobRun` :rtype: :class:`~oci.response.Response` @@ -5492,6 +5776,7 @@ def update_job_run(self, job_run_id, update_job_run_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -5576,6 +5861,10 @@ def update_model(self, model_id, update_model_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.Model` :rtype: :class:`~oci.response.Response` @@ -5587,6 +5876,7 @@ def update_model(self, model_id, update_model_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -5677,6 +5967,10 @@ def update_model_deployment(self, model_deployment_id, update_model_deployment_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5688,6 +5982,7 @@ def update_model_deployment(self, model_deployment_id, update_model_deployment_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -5770,6 +6065,10 @@ def update_model_provenance(self, model_id, update_model_provenance_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.ModelProvenance` :rtype: :class:`~oci.response.Response` @@ -5781,6 +6080,7 @@ def update_model_provenance(self, model_id, update_model_provenance_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -5868,6 +6168,10 @@ def update_notebook_session(self, notebook_session_id, update_notebook_session_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.NotebookSession` :rtype: :class:`~oci.response.Response` @@ -5879,6 +6183,7 @@ def update_notebook_session(self, notebook_session_id, update_notebook_session_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -5963,6 +6268,10 @@ def update_project(self, project_id, update_project_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_science.models.Project` :rtype: :class:`~oci.response.Response` @@ -5974,6 +6283,7 @@ def update_project(self, project_id, update_project_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/data_science/data_science_client_composite_operations.py b/src/oci/data_science/data_science_client_composite_operations.py index 34da4cda8f..a2719fa4a1 100644 --- a/src/oci/data_science/data_science_client_composite_operations.py +++ b/src/oci/data_science/data_science_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/data_science/models/__init__.py b/src/oci/data_science/models/__init__.py index 2d63d573c9..774f494dcd 100644 --- a/src/oci/data_science/models/__init__.py +++ b/src/oci/data_science/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/data_science/models/category_log_details.py b/src/oci/data_science/models/category_log_details.py index 167347e117..6232bf9c21 100644 --- a/src/oci/data_science/models/category_log_details.py +++ b/src/oci/data_science/models/category_log_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/change_job_compartment_details.py b/src/oci/data_science/models/change_job_compartment_details.py index d5b59a3e86..fc86836f0f 100644 --- a/src/oci/data_science/models/change_job_compartment_details.py +++ b/src/oci/data_science/models/change_job_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/change_job_run_compartment_details.py b/src/oci/data_science/models/change_job_run_compartment_details.py index 7ee10f64ec..f213e014f9 100644 --- a/src/oci/data_science/models/change_job_run_compartment_details.py +++ b/src/oci/data_science/models/change_job_run_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/change_model_compartment_details.py b/src/oci/data_science/models/change_model_compartment_details.py index 94f2b178a1..3f1a81795b 100644 --- a/src/oci/data_science/models/change_model_compartment_details.py +++ b/src/oci/data_science/models/change_model_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/change_model_deployment_compartment_details.py b/src/oci/data_science/models/change_model_deployment_compartment_details.py index 0f56176187..ecaa6fd846 100644 --- a/src/oci/data_science/models/change_model_deployment_compartment_details.py +++ b/src/oci/data_science/models/change_model_deployment_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/change_notebook_session_compartment_details.py b/src/oci/data_science/models/change_notebook_session_compartment_details.py index 866b6616c6..4153592cbb 100644 --- a/src/oci/data_science/models/change_notebook_session_compartment_details.py +++ b/src/oci/data_science/models/change_notebook_session_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/change_project_compartment_details.py b/src/oci/data_science/models/change_project_compartment_details.py index e0c84f19cf..8d689b67a3 100644 --- a/src/oci/data_science/models/change_project_compartment_details.py +++ b/src/oci/data_science/models/change_project_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/create_job_details.py b/src/oci/data_science/models/create_job_details.py index bfbe78da33..28e0e5edfb 100644 --- a/src/oci/data_science/models/create_job_details.py +++ b/src/oci/data_science/models/create_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/create_job_run_details.py b/src/oci/data_science/models/create_job_run_details.py index f04c294ef8..ed85d10502 100644 --- a/src/oci/data_science/models/create_job_run_details.py +++ b/src/oci/data_science/models/create_job_run_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/create_model_deployment_details.py b/src/oci/data_science/models/create_model_deployment_details.py index b93c4f136a..87479f73e2 100644 --- a/src/oci/data_science/models/create_model_deployment_details.py +++ b/src/oci/data_science/models/create_model_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/create_model_details.py b/src/oci/data_science/models/create_model_details.py index 84794086d7..30158a7ecb 100644 --- a/src/oci/data_science/models/create_model_details.py +++ b/src/oci/data_science/models/create_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/create_model_provenance_details.py b/src/oci/data_science/models/create_model_provenance_details.py index 6f73624a00..058b9dfad2 100644 --- a/src/oci/data_science/models/create_model_provenance_details.py +++ b/src/oci/data_science/models/create_model_provenance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/create_notebook_session_details.py b/src/oci/data_science/models/create_notebook_session_details.py index f47d3e83af..f8087ccdcc 100644 --- a/src/oci/data_science/models/create_notebook_session_details.py +++ b/src/oci/data_science/models/create_notebook_session_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/create_project_details.py b/src/oci/data_science/models/create_project_details.py index 2f5bb9dc5b..ab96ffe41d 100644 --- a/src/oci/data_science/models/create_project_details.py +++ b/src/oci/data_science/models/create_project_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/default_job_configuration_details.py b/src/oci/data_science/models/default_job_configuration_details.py index 6bed3c3683..615b01e855 100644 --- a/src/oci/data_science/models/default_job_configuration_details.py +++ b/src/oci/data_science/models/default_job_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .job_configuration_details import JobConfigurationDetails diff --git a/src/oci/data_science/models/fixed_size_scaling_policy.py b/src/oci/data_science/models/fixed_size_scaling_policy.py index 5b2e1578c4..884cfde366 100644 --- a/src/oci/data_science/models/fixed_size_scaling_policy.py +++ b/src/oci/data_science/models/fixed_size_scaling_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .scaling_policy import ScalingPolicy diff --git a/src/oci/data_science/models/instance_configuration.py b/src/oci/data_science/models/instance_configuration.py index c8f1c3cd5f..ee6e474548 100644 --- a/src/oci/data_science/models/instance_configuration.py +++ b/src/oci/data_science/models/instance_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/job.py b/src/oci/data_science/models/job.py index 3722223712..a5790d111c 100644 --- a/src/oci/data_science/models/job.py +++ b/src/oci/data_science/models/job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/job_configuration_details.py b/src/oci/data_science/models/job_configuration_details.py index 8ebf305032..622b24392a 100644 --- a/src/oci/data_science/models/job_configuration_details.py +++ b/src/oci/data_science/models/job_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/job_infrastructure_configuration_details.py b/src/oci/data_science/models/job_infrastructure_configuration_details.py index 7d2df9e753..95effaf500 100644 --- a/src/oci/data_science/models/job_infrastructure_configuration_details.py +++ b/src/oci/data_science/models/job_infrastructure_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/job_log_configuration_details.py b/src/oci/data_science/models/job_log_configuration_details.py index ff15567afe..291b406c8c 100644 --- a/src/oci/data_science/models/job_log_configuration_details.py +++ b/src/oci/data_science/models/job_log_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/job_run.py b/src/oci/data_science/models/job_run.py index 358fcaab3a..bf1ed9789d 100644 --- a/src/oci/data_science/models/job_run.py +++ b/src/oci/data_science/models/job_run.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/job_run_log_details.py b/src/oci/data_science/models/job_run_log_details.py index aaa56f9c23..7590e51585 100644 --- a/src/oci/data_science/models/job_run_log_details.py +++ b/src/oci/data_science/models/job_run_log_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/job_run_summary.py b/src/oci/data_science/models/job_run_summary.py index c5b6ea08c1..494cc9f213 100644 --- a/src/oci/data_science/models/job_run_summary.py +++ b/src/oci/data_science/models/job_run_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/job_shape_summary.py b/src/oci/data_science/models/job_shape_summary.py index cba0b08378..1697dbe10e 100644 --- a/src/oci/data_science/models/job_shape_summary.py +++ b/src/oci/data_science/models/job_shape_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/job_summary.py b/src/oci/data_science/models/job_summary.py index d359596e19..0a3e62aaef 100644 --- a/src/oci/data_science/models/job_summary.py +++ b/src/oci/data_science/models/job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/log_details.py b/src/oci/data_science/models/log_details.py index 8edf44a1ae..08e639b17d 100644 --- a/src/oci/data_science/models/log_details.py +++ b/src/oci/data_science/models/log_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/metadata.py b/src/oci/data_science/models/metadata.py index 0c3b908353..ee69e02214 100644 --- a/src/oci/data_science/models/metadata.py +++ b/src/oci/data_science/models/metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/model.py b/src/oci/data_science/models/model.py index 9e322212fa..376d70c448 100644 --- a/src/oci/data_science/models/model.py +++ b/src/oci/data_science/models/model.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/model_configuration_details.py b/src/oci/data_science/models/model_configuration_details.py index e55f03cd9a..55e3806661 100644 --- a/src/oci/data_science/models/model_configuration_details.py +++ b/src/oci/data_science/models/model_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/model_deployment.py b/src/oci/data_science/models/model_deployment.py index 709482a79a..ff9d414c43 100644 --- a/src/oci/data_science/models/model_deployment.py +++ b/src/oci/data_science/models/model_deployment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/model_deployment_configuration_details.py b/src/oci/data_science/models/model_deployment_configuration_details.py index 263ba3acf2..ba9e4f31a6 100644 --- a/src/oci/data_science/models/model_deployment_configuration_details.py +++ b/src/oci/data_science/models/model_deployment_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/model_deployment_shape_summary.py b/src/oci/data_science/models/model_deployment_shape_summary.py index 685071e10f..73ef157983 100644 --- a/src/oci/data_science/models/model_deployment_shape_summary.py +++ b/src/oci/data_science/models/model_deployment_shape_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/model_deployment_summary.py b/src/oci/data_science/models/model_deployment_summary.py index 3d5b18d6c0..9c648f466e 100644 --- a/src/oci/data_science/models/model_deployment_summary.py +++ b/src/oci/data_science/models/model_deployment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/model_provenance.py b/src/oci/data_science/models/model_provenance.py index 5e97b6c0bc..d7656ceb18 100644 --- a/src/oci/data_science/models/model_provenance.py +++ b/src/oci/data_science/models/model_provenance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/model_summary.py b/src/oci/data_science/models/model_summary.py index f65617de13..5647bd148a 100644 --- a/src/oci/data_science/models/model_summary.py +++ b/src/oci/data_science/models/model_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/notebook_session.py b/src/oci/data_science/models/notebook_session.py index 0f6708951e..e792be8ca4 100644 --- a/src/oci/data_science/models/notebook_session.py +++ b/src/oci/data_science/models/notebook_session.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/notebook_session_configuration_details.py b/src/oci/data_science/models/notebook_session_configuration_details.py index 31595c729c..0e4a7ed064 100644 --- a/src/oci/data_science/models/notebook_session_configuration_details.py +++ b/src/oci/data_science/models/notebook_session_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/notebook_session_shape_config_details.py b/src/oci/data_science/models/notebook_session_shape_config_details.py index a2c70a9ec0..fe3bf4e572 100644 --- a/src/oci/data_science/models/notebook_session_shape_config_details.py +++ b/src/oci/data_science/models/notebook_session_shape_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/notebook_session_shape_summary.py b/src/oci/data_science/models/notebook_session_shape_summary.py index a00aa90cd3..fb93887280 100644 --- a/src/oci/data_science/models/notebook_session_shape_summary.py +++ b/src/oci/data_science/models/notebook_session_shape_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/notebook_session_summary.py b/src/oci/data_science/models/notebook_session_summary.py index 516af142e9..13f8dd01a8 100644 --- a/src/oci/data_science/models/notebook_session_summary.py +++ b/src/oci/data_science/models/notebook_session_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/project.py b/src/oci/data_science/models/project.py index 09cfc0441c..fbde8f28f7 100644 --- a/src/oci/data_science/models/project.py +++ b/src/oci/data_science/models/project.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/project_summary.py b/src/oci/data_science/models/project_summary.py index e3c8f43e98..168cb09aa3 100644 --- a/src/oci/data_science/models/project_summary.py +++ b/src/oci/data_science/models/project_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/scaling_policy.py b/src/oci/data_science/models/scaling_policy.py index e59a679c81..6a9efaad25 100644 --- a/src/oci/data_science/models/scaling_policy.py +++ b/src/oci/data_science/models/scaling_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/single_model_deployment_configuration_details.py b/src/oci/data_science/models/single_model_deployment_configuration_details.py index c08143e18c..302e541932 100644 --- a/src/oci/data_science/models/single_model_deployment_configuration_details.py +++ b/src/oci/data_science/models/single_model_deployment_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .model_deployment_configuration_details import ModelDeploymentConfigurationDetails diff --git a/src/oci/data_science/models/standalone_job_infrastructure_configuration_details.py b/src/oci/data_science/models/standalone_job_infrastructure_configuration_details.py index 317a087cb0..32b586d574 100644 --- a/src/oci/data_science/models/standalone_job_infrastructure_configuration_details.py +++ b/src/oci/data_science/models/standalone_job_infrastructure_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .job_infrastructure_configuration_details import JobInfrastructureConfigurationDetails diff --git a/src/oci/data_science/models/update_category_log_details.py b/src/oci/data_science/models/update_category_log_details.py index d17bf7f3e3..21e8418aa0 100644 --- a/src/oci/data_science/models/update_category_log_details.py +++ b/src/oci/data_science/models/update_category_log_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/update_job_details.py b/src/oci/data_science/models/update_job_details.py index 8e3ec77821..31f9a7806c 100644 --- a/src/oci/data_science/models/update_job_details.py +++ b/src/oci/data_science/models/update_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/update_job_run_details.py b/src/oci/data_science/models/update_job_run_details.py index 664f9a2468..07f91a5bf4 100644 --- a/src/oci/data_science/models/update_job_run_details.py +++ b/src/oci/data_science/models/update_job_run_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/update_model_configuration_details.py b/src/oci/data_science/models/update_model_configuration_details.py index 69a8d18cfd..f2047db5e3 100644 --- a/src/oci/data_science/models/update_model_configuration_details.py +++ b/src/oci/data_science/models/update_model_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/update_model_deployment_configuration_details.py b/src/oci/data_science/models/update_model_deployment_configuration_details.py index 9ebefa813b..d9f237d958 100644 --- a/src/oci/data_science/models/update_model_deployment_configuration_details.py +++ b/src/oci/data_science/models/update_model_deployment_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/update_model_deployment_details.py b/src/oci/data_science/models/update_model_deployment_details.py index 3ad7ce63ac..69b3d6176b 100644 --- a/src/oci/data_science/models/update_model_deployment_details.py +++ b/src/oci/data_science/models/update_model_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/update_model_details.py b/src/oci/data_science/models/update_model_details.py index aa17e11f3b..704b08b574 100644 --- a/src/oci/data_science/models/update_model_details.py +++ b/src/oci/data_science/models/update_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/update_model_provenance_details.py b/src/oci/data_science/models/update_model_provenance_details.py index 5425d666e3..a19aab00c2 100644 --- a/src/oci/data_science/models/update_model_provenance_details.py +++ b/src/oci/data_science/models/update_model_provenance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/update_notebook_session_details.py b/src/oci/data_science/models/update_notebook_session_details.py index d8545d06f2..0aad686d78 100644 --- a/src/oci/data_science/models/update_notebook_session_details.py +++ b/src/oci/data_science/models/update_notebook_session_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/update_project_details.py b/src/oci/data_science/models/update_project_details.py index 5fd0f8491f..98ca0be63b 100644 --- a/src/oci/data_science/models/update_project_details.py +++ b/src/oci/data_science/models/update_project_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/update_single_model_deployment_configuration_details.py b/src/oci/data_science/models/update_single_model_deployment_configuration_details.py index 52bd9b71da..1a5dca1e1d 100644 --- a/src/oci/data_science/models/update_single_model_deployment_configuration_details.py +++ b/src/oci/data_science/models/update_single_model_deployment_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_model_deployment_configuration_details import UpdateModelDeploymentConfigurationDetails diff --git a/src/oci/data_science/models/work_request.py b/src/oci/data_science/models/work_request.py index bd6f71fb0c..0980791ac1 100644 --- a/src/oci/data_science/models/work_request.py +++ b/src/oci/data_science/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/work_request_error.py b/src/oci/data_science/models/work_request_error.py index 2b5549d8e6..471678a95c 100644 --- a/src/oci/data_science/models/work_request_error.py +++ b/src/oci/data_science/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/work_request_log_entry.py b/src/oci/data_science/models/work_request_log_entry.py index 9a0bc051df..e0c3beaaf7 100644 --- a/src/oci/data_science/models/work_request_log_entry.py +++ b/src/oci/data_science/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/work_request_resource.py b/src/oci/data_science/models/work_request_resource.py index f0400ce1b3..52b0ab8e5e 100644 --- a/src/oci/data_science/models/work_request_resource.py +++ b/src/oci/data_science/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/data_science/models/work_request_summary.py b/src/oci/data_science/models/work_request_summary.py index cca5d1b2fc..f1566b3e2b 100644 --- a/src/oci/data_science/models/work_request_summary.py +++ b/src/oci/data_science/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/__init__.py b/src/oci/database/__init__.py index 684fb7f19c..0575370154 100644 --- a/src/oci/database/__init__.py +++ b/src/oci/database/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/database/database_client.py b/src/oci/database/database_client.py index 9c5b59d05e..bb868863b1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("database", config, signer, database_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -131,6 +137,10 @@ def activate_exadata_infrastructure(self, exadata_infrastructure_id, activate_ex To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExadataInfrastructure` :rtype: :class:`~oci.response.Response` @@ -142,6 +152,7 @@ def activate_exadata_infrastructure(self, exadata_infrastructure_id, activate_ex # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -229,6 +240,10 @@ def add_storage_capacity_exadata_infrastructure(self, exadata_infrastructure_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExadataInfrastructure` :rtype: :class:`~oci.response.Response` @@ -240,6 +255,7 @@ def add_storage_capacity_exadata_infrastructure(self, exadata_infrastructure_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -330,6 +346,10 @@ def add_virtual_machine_to_vm_cluster(self, add_virtual_machine_to_vm_cluster_de To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.VmCluster` :rtype: :class:`~oci.response.Response` @@ -341,6 +361,7 @@ def add_virtual_machine_to_vm_cluster(self, add_virtual_machine_to_vm_cluster_de # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -433,6 +454,10 @@ def autonomous_database_manual_refresh(self, autonomous_database_id, autonomous_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousDatabase` :rtype: :class:`~oci.response.Response` @@ -444,6 +469,7 @@ def autonomous_database_manual_refresh(self, autonomous_database_id, autonomous_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -540,6 +566,10 @@ def change_autonomous_container_database_compartment(self, change_compartment_de To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -551,6 +581,7 @@ def change_autonomous_container_database_compartment(self, change_compartment_de # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -645,6 +676,10 @@ def change_autonomous_database_compartment(self, change_compartment_details, aut To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -656,6 +691,7 @@ def change_autonomous_database_compartment(self, change_compartment_details, aut # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -750,6 +786,10 @@ def change_autonomous_exadata_infrastructure_compartment(self, change_compartmen To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -761,6 +801,7 @@ def change_autonomous_exadata_infrastructure_compartment(self, change_compartmen # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -852,6 +893,10 @@ def change_autonomous_vm_cluster_compartment(self, change_autonomous_vm_cluster_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -863,6 +908,7 @@ def change_autonomous_vm_cluster_compartment(self, change_autonomous_vm_cluster_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -957,6 +1003,10 @@ def change_backup_destination_compartment(self, change_compartment_details, back To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -968,6 +1018,7 @@ def change_backup_destination_compartment(self, change_compartment_details, back # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -1059,6 +1110,10 @@ def change_cloud_autonomous_vm_cluster_compartment(self, change_cloud_autonomous To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1070,6 +1125,7 @@ def change_cloud_autonomous_vm_cluster_compartment(self, change_cloud_autonomous # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -1162,6 +1218,10 @@ def change_cloud_exadata_infrastructure_compartment(self, change_cloud_exadata_i To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1173,6 +1233,7 @@ def change_cloud_exadata_infrastructure_compartment(self, change_cloud_exadata_i # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -1263,6 +1324,10 @@ def change_cloud_vm_cluster_compartment(self, change_cloud_vm_cluster_compartmen To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1274,6 +1339,7 @@ def change_cloud_vm_cluster_compartment(self, change_cloud_vm_cluster_compartmen # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -1368,6 +1434,10 @@ def change_database_software_image_compartment(self, change_compartment_details, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1379,6 +1449,7 @@ def change_database_software_image_compartment(self, change_compartment_details, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -1480,6 +1551,10 @@ def change_db_system_compartment(self, change_compartment_details, db_system_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1491,6 +1566,7 @@ def change_db_system_compartment(self, change_compartment_details, db_system_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -1582,6 +1658,10 @@ def change_exadata_infrastructure_compartment(self, change_exadata_infrastructur To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1593,6 +1673,7 @@ def change_exadata_infrastructure_compartment(self, change_exadata_infrastructur # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -1688,6 +1769,10 @@ def change_external_container_database_compartment(self, change_compartment_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1699,6 +1784,7 @@ def change_external_container_database_compartment(self, change_compartment_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -1793,6 +1879,10 @@ def change_external_non_container_database_compartment(self, change_compartment_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1804,6 +1894,7 @@ def change_external_non_container_database_compartment(self, change_compartment_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -1901,6 +1992,10 @@ def change_external_pluggable_database_compartment(self, change_compartment_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1912,6 +2007,7 @@ def change_external_pluggable_database_compartment(self, change_compartment_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -2006,6 +2102,10 @@ def change_key_store_compartment(self, change_key_store_compartment_details, key To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2017,6 +2117,7 @@ def change_key_store_compartment(self, change_key_store_compartment_details, key # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -2108,6 +2209,10 @@ def change_vm_cluster_compartment(self, change_vm_cluster_compartment_details, v To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2119,6 +2224,7 @@ def change_vm_cluster_compartment(self, change_vm_cluster_compartment_details, v # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -2208,6 +2314,10 @@ def check_external_database_connector_connection_status(self, external_database_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2219,6 +2329,7 @@ def check_external_database_connector_connection_status(self, external_database_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -2308,6 +2419,10 @@ def complete_external_backup_job(self, backup_id, complete_external_backup_job_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExternalBackupJob` :rtype: :class:`~oci.response.Response` @@ -2319,6 +2434,7 @@ def complete_external_backup_job(self, backup_id, complete_external_backup_job_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token" @@ -2413,6 +2529,10 @@ def configure_autonomous_database_vault_key(self, autonomous_database_id, config To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2424,6 +2544,7 @@ def configure_autonomous_database_vault_key(self, autonomous_database_id, config # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2507,6 +2628,10 @@ def convert_to_pdb(self, database_id, convert_to_pdb_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.Database` :rtype: :class:`~oci.response.Response` @@ -2518,6 +2643,7 @@ def convert_to_pdb(self, database_id, convert_to_pdb_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2594,6 +2720,10 @@ def create_autonomous_container_database(self, create_autonomous_container_datab To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousContainerDatabase` :rtype: :class:`~oci.response.Response` @@ -2605,6 +2735,7 @@ def create_autonomous_container_database(self, create_autonomous_container_datab # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -2671,6 +2802,10 @@ def create_autonomous_database(self, create_autonomous_database_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousDatabase` :rtype: :class:`~oci.response.Response` @@ -2682,6 +2817,7 @@ def create_autonomous_database(self, create_autonomous_database_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -2750,6 +2886,10 @@ def create_autonomous_database_backup(self, create_autonomous_database_backup_de To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousDatabaseBackup` :rtype: :class:`~oci.response.Response` @@ -2761,6 +2901,7 @@ def create_autonomous_database_backup(self, create_autonomous_database_backup_de # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -2829,6 +2970,10 @@ def create_autonomous_vm_cluster(self, create_autonomous_vm_cluster_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousVmCluster` :rtype: :class:`~oci.response.Response` @@ -2840,6 +2985,7 @@ def create_autonomous_vm_cluster(self, create_autonomous_vm_cluster_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -2905,6 +3051,10 @@ def create_backup(self, create_backup_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.Backup` :rtype: :class:`~oci.response.Response` @@ -2916,6 +3066,7 @@ def create_backup(self, create_backup_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -2982,6 +3133,10 @@ def create_backup_destination(self, create_backup_destination_details, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.BackupDestination` :rtype: :class:`~oci.response.Response` @@ -2993,6 +3148,7 @@ def create_backup_destination(self, create_backup_destination_details, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -3061,6 +3217,10 @@ def create_cloud_autonomous_vm_cluster(self, create_cloud_autonomous_vm_cluster_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.CloudAutonomousVmCluster` :rtype: :class:`~oci.response.Response` @@ -3072,6 +3232,7 @@ def create_cloud_autonomous_vm_cluster(self, create_cloud_autonomous_vm_cluster_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -3144,6 +3305,10 @@ def create_cloud_exadata_infrastructure(self, create_cloud_exadata_infrastructur To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.CloudExadataInfrastructure` :rtype: :class:`~oci.response.Response` @@ -3155,6 +3320,7 @@ def create_cloud_exadata_infrastructure(self, create_cloud_exadata_infrastructur # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -3225,6 +3391,10 @@ def create_cloud_vm_cluster(self, create_cloud_vm_cluster_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.CloudVmCluster` :rtype: :class:`~oci.response.Response` @@ -3236,6 +3406,7 @@ def create_cloud_vm_cluster(self, create_cloud_vm_cluster_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -3308,6 +3479,10 @@ def create_console_connection(self, create_console_connection_details, db_node_i To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ConsoleConnection` :rtype: :class:`~oci.response.Response` @@ -3319,6 +3494,7 @@ def create_console_connection(self, create_console_connection_details, db_node_i # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -3409,6 +3585,10 @@ def create_data_guard_association(self, database_id, create_data_guard_associati To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DataGuardAssociation` :rtype: :class:`~oci.response.Response` @@ -3420,6 +3600,7 @@ def create_data_guard_association(self, database_id, create_data_guard_associati # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -3498,6 +3679,10 @@ def create_database(self, create_new_database_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.Database` :rtype: :class:`~oci.response.Response` @@ -3509,6 +3694,7 @@ def create_database(self, create_new_database_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -3574,6 +3760,10 @@ def create_database_software_image(self, create_database_software_image_details, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DatabaseSoftwareImage` :rtype: :class:`~oci.response.Response` @@ -3585,6 +3775,7 @@ def create_database_software_image(self, create_database_software_image_details, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -3648,6 +3839,10 @@ def create_db_home(self, create_db_home_with_db_system_id_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DbHome` :rtype: :class:`~oci.response.Response` @@ -3659,6 +3854,7 @@ def create_db_home(self, create_db_home_with_db_system_id_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -3726,6 +3922,10 @@ def create_exadata_infrastructure(self, create_exadata_infrastructure_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExadataInfrastructure` :rtype: :class:`~oci.response.Response` @@ -3737,6 +3937,7 @@ def create_exadata_infrastructure(self, create_exadata_infrastructure_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -3806,6 +4007,10 @@ def create_external_backup_job(self, create_external_backup_job_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExternalBackupJob` :rtype: :class:`~oci.response.Response` @@ -3817,6 +4022,7 @@ def create_external_backup_job(self, create_external_backup_job_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -3883,6 +4089,10 @@ def create_external_container_database(self, create_external_container_database_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExternalContainerDatabase` :rtype: :class:`~oci.response.Response` @@ -3894,6 +4104,7 @@ def create_external_container_database(self, create_external_container_database_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -3962,6 +4173,10 @@ def create_external_database_connector(self, create_external_database_connector_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExternalDatabaseConnector` :rtype: :class:`~oci.response.Response` @@ -3973,6 +4188,7 @@ def create_external_database_connector(self, create_external_database_connector_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -4041,6 +4257,10 @@ def create_external_non_container_database(self, create_external_non_container_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExternalNonContainerDatabase` :rtype: :class:`~oci.response.Response` @@ -4052,6 +4272,7 @@ def create_external_non_container_database(self, create_external_non_container_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -4121,6 +4342,10 @@ def create_external_pluggable_database(self, create_external_pluggable_database_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExternalPluggableDatabase` :rtype: :class:`~oci.response.Response` @@ -4132,6 +4357,7 @@ def create_external_pluggable_database(self, create_external_pluggable_database_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -4200,6 +4426,10 @@ def create_key_store(self, create_key_store_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.KeyStore` :rtype: :class:`~oci.response.Response` @@ -4211,6 +4441,7 @@ def create_key_store(self, create_key_store_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -4280,6 +4511,10 @@ def create_pluggable_database(self, create_pluggable_database_details, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.PluggableDatabase` :rtype: :class:`~oci.response.Response` @@ -4291,6 +4526,7 @@ def create_pluggable_database(self, create_pluggable_database_details, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -4360,6 +4596,10 @@ def create_vm_cluster(self, create_vm_cluster_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.VmCluster` :rtype: :class:`~oci.response.Response` @@ -4371,6 +4611,7 @@ def create_vm_cluster(self, create_vm_cluster_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -4445,6 +4686,10 @@ def create_vm_cluster_network(self, exadata_infrastructure_id, vm_cluster_networ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.VmClusterNetwork` :rtype: :class:`~oci.response.Response` @@ -4456,6 +4701,7 @@ def create_vm_cluster_network(self, exadata_infrastructure_id, vm_cluster_networ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -4557,6 +4803,10 @@ def db_node_action(self, db_node_id, action, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DbNode` :rtype: :class:`~oci.response.Response` @@ -4568,6 +4818,7 @@ def db_node_action(self, db_node_id, action, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match" @@ -4653,6 +4904,10 @@ def delete_autonomous_database(self, autonomous_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4664,6 +4919,7 @@ def delete_autonomous_database(self, autonomous_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -4739,6 +4995,10 @@ def delete_autonomous_vm_cluster(self, autonomous_vm_cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4750,6 +5010,7 @@ def delete_autonomous_vm_cluster(self, autonomous_vm_cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -4822,6 +5083,10 @@ def delete_backup(self, backup_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4833,6 +5098,7 @@ def delete_backup(self, backup_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -4906,6 +5172,10 @@ def delete_backup_destination(self, backup_destination_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4917,6 +5187,7 @@ def delete_backup_destination(self, backup_destination_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -4992,6 +5263,10 @@ def delete_cloud_autonomous_vm_cluster(self, cloud_autonomous_vm_cluster_id, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5003,6 +5278,7 @@ def delete_cloud_autonomous_vm_cluster(self, cloud_autonomous_vm_cluster_id, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -5081,6 +5357,10 @@ def delete_cloud_exadata_infrastructure(self, cloud_exadata_infrastructure_id, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5092,6 +5372,7 @@ def delete_cloud_exadata_infrastructure(self, cloud_exadata_infrastructure_id, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "is_delete_vm_clusters", @@ -5175,6 +5456,10 @@ def delete_cloud_vm_cluster(self, cloud_vm_cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5186,6 +5471,7 @@ def delete_cloud_vm_cluster(self, cloud_vm_cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -5261,6 +5547,10 @@ def delete_console_connection(self, db_node_id, console_connection_id, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5272,6 +5562,7 @@ def delete_console_connection(self, db_node_id, console_connection_id, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -5355,6 +5646,10 @@ def delete_database(self, database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5366,6 +5661,7 @@ def delete_database(self, database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "perform_final_backup", @@ -5446,6 +5742,10 @@ def delete_database_software_image(self, database_software_image_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5457,6 +5757,7 @@ def delete_database_software_image(self, database_software_image_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -5536,6 +5837,10 @@ def delete_db_home(self, db_home_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5547,6 +5852,7 @@ def delete_db_home(self, db_home_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "perform_final_backup" @@ -5628,6 +5934,10 @@ def delete_exadata_infrastructure(self, exadata_infrastructure_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5639,6 +5949,7 @@ def delete_exadata_infrastructure(self, exadata_infrastructure_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -5716,6 +6027,10 @@ def delete_external_container_database(self, external_container_database_id, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5727,6 +6042,7 @@ def delete_external_container_database(self, external_container_database_id, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -5805,6 +6121,10 @@ def delete_external_database_connector(self, external_database_connector_id, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5816,6 +6136,7 @@ def delete_external_database_connector(self, external_database_connector_id, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -5891,6 +6212,10 @@ def delete_external_non_container_database(self, external_non_container_database To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5902,6 +6227,7 @@ def delete_external_non_container_database(self, external_non_container_database # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -5978,6 +6304,10 @@ def delete_external_pluggable_database(self, external_pluggable_database_id, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5989,6 +6319,7 @@ def delete_external_pluggable_database(self, external_pluggable_database_id, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -6064,6 +6395,10 @@ def delete_key_store(self, key_store_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6075,6 +6410,7 @@ def delete_key_store(self, key_store_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -6150,6 +6486,10 @@ def delete_pluggable_database(self, pluggable_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6161,6 +6501,7 @@ def delete_pluggable_database(self, pluggable_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -6236,6 +6577,10 @@ def delete_vm_cluster(self, vm_cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6247,6 +6592,7 @@ def delete_vm_cluster(self, vm_cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -6328,6 +6674,10 @@ def delete_vm_cluster_network(self, exadata_infrastructure_id, vm_cluster_networ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6339,6 +6689,7 @@ def delete_vm_cluster_network(self, exadata_infrastructure_id, vm_cluster_networ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -6413,6 +6764,10 @@ def deregister_autonomous_database_data_safe(self, autonomous_database_id, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6424,6 +6779,7 @@ def deregister_autonomous_database_data_safe(self, autonomous_database_id, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "deregister_autonomous_database_data_safe_details" @@ -6495,6 +6851,10 @@ def disable_autonomous_database_management(self, autonomous_database_id, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6506,6 +6866,7 @@ def disable_autonomous_database_management(self, autonomous_database_id, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6574,6 +6935,10 @@ def disable_autonomous_database_operations_insights(self, autonomous_database_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6585,6 +6950,7 @@ def disable_autonomous_database_operations_insights(self, autonomous_database_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6665,6 +7031,10 @@ def disable_database_management(self, database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.Database` :rtype: :class:`~oci.response.Response` @@ -6676,6 +7046,7 @@ def disable_database_management(self, database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -6763,6 +7134,10 @@ def disable_external_container_database_database_management(self, external_conta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6774,6 +7149,7 @@ def disable_external_container_database_database_management(self, external_conta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -6863,6 +7239,10 @@ def disable_external_non_container_database_database_management(self, external_n To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6874,6 +7254,7 @@ def disable_external_non_container_database_database_management(self, external_n # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -6959,6 +7340,10 @@ def disable_external_non_container_database_operations_insights(self, external_n To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6970,6 +7355,7 @@ def disable_external_non_container_database_operations_insights(self, external_n # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -7059,6 +7445,10 @@ def disable_external_pluggable_database_database_management(self, external_plugg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7070,6 +7460,7 @@ def disable_external_pluggable_database_database_management(self, external_plugg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -7155,6 +7546,10 @@ def disable_external_pluggable_database_operations_insights(self, external_plugg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7166,6 +7561,7 @@ def disable_external_pluggable_database_operations_insights(self, external_plugg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -7246,6 +7642,10 @@ def download_exadata_infrastructure_config_file(self, exadata_infrastructure_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -7257,6 +7657,7 @@ def download_exadata_infrastructure_config_file(self, exadata_infrastructure_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -7342,6 +7743,10 @@ def download_validation_report(self, exadata_infrastructure_id, vm_cluster_netwo To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -7353,6 +7758,7 @@ def download_validation_report(self, exadata_infrastructure_id, vm_cluster_netwo # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -7439,6 +7845,10 @@ def download_vm_cluster_network_config_file(self, exadata_infrastructure_id, vm_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -7450,6 +7860,7 @@ def download_vm_cluster_network_config_file(self, exadata_infrastructure_id, vm_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -7524,6 +7935,10 @@ def enable_autonomous_database_management(self, autonomous_database_id, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7535,6 +7950,7 @@ def enable_autonomous_database_management(self, autonomous_database_id, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -7603,6 +8019,10 @@ def enable_autonomous_database_operations_insights(self, autonomous_database_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7614,6 +8034,7 @@ def enable_autonomous_database_operations_insights(self, autonomous_database_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -7697,6 +8118,10 @@ def enable_database_management(self, database_id, enable_database_management_det To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.Database` :rtype: :class:`~oci.response.Response` @@ -7708,6 +8133,7 @@ def enable_database_management(self, database_id, enable_database_management_det # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -7804,6 +8230,10 @@ def enable_external_container_database_database_management(self, external_contai To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7815,6 +8245,7 @@ def enable_external_container_database_database_management(self, external_contai # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -7909,6 +8340,10 @@ def enable_external_non_container_database_database_management(self, external_no To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7920,6 +8355,7 @@ def enable_external_non_container_database_database_management(self, external_no # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -8010,6 +8446,10 @@ def enable_external_non_container_database_operations_insights(self, external_no To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -8021,6 +8461,7 @@ def enable_external_non_container_database_operations_insights(self, external_no # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -8115,6 +8556,10 @@ def enable_external_pluggable_database_database_management(self, external_plugga To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -8126,6 +8571,7 @@ def enable_external_pluggable_database_database_management(self, external_plugga # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -8216,6 +8662,10 @@ def enable_external_pluggable_database_operations_insights(self, external_plugga To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -8227,6 +8677,7 @@ def enable_external_pluggable_database_operations_insights(self, external_plugga # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -8321,6 +8772,10 @@ def fail_over_autonomous_database(self, autonomous_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousDatabase` :rtype: :class:`~oci.response.Response` @@ -8332,6 +8787,7 @@ def fail_over_autonomous_database(self, autonomous_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -8424,6 +8880,10 @@ def failover_autonomous_container_database_dataguard_association(self, autonomou To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousContainerDatabaseDataguardAssociation` :rtype: :class:`~oci.response.Response` @@ -8435,6 +8895,7 @@ def failover_autonomous_container_database_dataguard_association(self, autonomou # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -8520,6 +8981,10 @@ def failover_data_guard_association(self, database_id, data_guard_association_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DataGuardAssociation` :rtype: :class:`~oci.response.Response` @@ -8531,6 +8996,7 @@ def failover_data_guard_association(self, database_id, data_guard_association_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -8614,6 +9080,10 @@ def generate_autonomous_database_wallet(self, autonomous_database_id, generate_a To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -8625,6 +9095,7 @@ def generate_autonomous_database_wallet(self, autonomous_database_id, generate_a # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -8710,6 +9181,10 @@ def generate_recommended_vm_cluster_network(self, exadata_infrastructure_id, gen To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.VmClusterNetworkDetails` :rtype: :class:`~oci.response.Response` @@ -8721,6 +9196,7 @@ def generate_recommended_vm_cluster_network(self, exadata_infrastructure_id, gen # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -8793,6 +9269,10 @@ def get_autonomous_container_database(self, autonomous_container_database_id, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousContainerDatabase` :rtype: :class:`~oci.response.Response` @@ -8870,6 +9350,10 @@ def get_autonomous_container_database_dataguard_association(self, autonomous_con To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousContainerDatabaseDataguardAssociation` :rtype: :class:`~oci.response.Response` @@ -8946,6 +9430,10 @@ def get_autonomous_database(self, autonomous_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousDatabase` :rtype: :class:`~oci.response.Response` @@ -8957,6 +9445,7 @@ def get_autonomous_database(self, autonomous_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -9027,6 +9516,10 @@ def get_autonomous_database_backup(self, autonomous_database_backup_id, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousDatabaseBackup` :rtype: :class:`~oci.response.Response` @@ -9038,6 +9531,7 @@ def get_autonomous_database_backup(self, autonomous_database_backup_id, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -9113,6 +9607,10 @@ def get_autonomous_database_dataguard_association(self, autonomous_database_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousDatabaseDataguardAssociation` :rtype: :class:`~oci.response.Response` @@ -9124,6 +9622,7 @@ def get_autonomous_database_dataguard_association(self, autonomous_database_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -9190,6 +9689,10 @@ def get_autonomous_database_regional_wallet(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousDatabaseWallet` :rtype: :class:`~oci.response.Response` @@ -9201,6 +9704,7 @@ def get_autonomous_database_regional_wallet(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -9259,6 +9763,10 @@ def get_autonomous_database_wallet(self, autonomous_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousDatabaseWallet` :rtype: :class:`~oci.response.Response` @@ -9270,6 +9778,7 @@ def get_autonomous_database_wallet(self, autonomous_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -9337,6 +9846,10 @@ def get_autonomous_exadata_infrastructure(self, autonomous_exadata_infrastructur To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousExadataInfrastructure` :rtype: :class:`~oci.response.Response` @@ -9409,6 +9922,10 @@ def get_autonomous_patch(self, autonomous_patch_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousPatch` :rtype: :class:`~oci.response.Response` @@ -9484,6 +10001,10 @@ def get_autonomous_vm_cluster(self, autonomous_vm_cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousVmCluster` :rtype: :class:`~oci.response.Response` @@ -9495,6 +10016,7 @@ def get_autonomous_vm_cluster(self, autonomous_vm_cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -9562,6 +10084,10 @@ def get_backup(self, backup_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.Backup` :rtype: :class:`~oci.response.Response` @@ -9637,6 +10163,10 @@ def get_backup_destination(self, backup_destination_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.BackupDestination` :rtype: :class:`~oci.response.Response` @@ -9648,6 +10178,7 @@ def get_backup_destination(self, backup_destination_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -9718,6 +10249,10 @@ def get_cloud_autonomous_vm_cluster(self, cloud_autonomous_vm_cluster_id, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.CloudAutonomousVmCluster` :rtype: :class:`~oci.response.Response` @@ -9729,6 +10264,7 @@ def get_cloud_autonomous_vm_cluster(self, cloud_autonomous_vm_cluster_id, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -9799,6 +10335,10 @@ def get_cloud_exadata_infrastructure(self, cloud_exadata_infrastructure_id, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.CloudExadataInfrastructure` :rtype: :class:`~oci.response.Response` @@ -9810,6 +10350,7 @@ def get_cloud_exadata_infrastructure(self, cloud_exadata_infrastructure_id, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -9880,6 +10421,10 @@ def get_cloud_vm_cluster(self, cloud_vm_cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.CloudVmCluster` :rtype: :class:`~oci.response.Response` @@ -9891,6 +10436,7 @@ def get_cloud_vm_cluster(self, cloud_vm_cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -9962,6 +10508,10 @@ def get_cloud_vm_cluster_iorm_config(self, cloud_vm_cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExadataIormConfig` :rtype: :class:`~oci.response.Response` @@ -9973,6 +10523,7 @@ def get_cloud_vm_cluster_iorm_config(self, cloud_vm_cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -10048,6 +10599,10 @@ def get_cloud_vm_cluster_update(self, cloud_vm_cluster_id, update_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.Update` :rtype: :class:`~oci.response.Response` @@ -10059,6 +10614,7 @@ def get_cloud_vm_cluster_update(self, cloud_vm_cluster_id, update_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -10135,6 +10691,10 @@ def get_cloud_vm_cluster_update_history_entry(self, cloud_vm_cluster_id, update_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.UpdateHistoryEntry` :rtype: :class:`~oci.response.Response` @@ -10146,6 +10706,7 @@ def get_cloud_vm_cluster_update_history_entry(self, cloud_vm_cluster_id, update_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -10217,6 +10778,10 @@ def get_console_connection(self, db_node_id, console_connection_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ConsoleConnection` :rtype: :class:`~oci.response.Response` @@ -10295,6 +10860,10 @@ def get_data_guard_association(self, database_id, data_guard_association_id, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DataGuardAssociation` :rtype: :class:`~oci.response.Response` @@ -10368,6 +10937,10 @@ def get_database(self, database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.Database` :rtype: :class:`~oci.response.Response` @@ -10440,6 +11013,10 @@ def get_database_software_image(self, database_software_image_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DatabaseSoftwareImage` :rtype: :class:`~oci.response.Response` @@ -10520,6 +11097,10 @@ def get_database_upgrade_history_entry(self, database_id, upgrade_history_entry_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DatabaseUpgradeHistoryEntry` :rtype: :class:`~oci.response.Response` @@ -10531,6 +11112,7 @@ def get_database_upgrade_history_entry(self, database_id, upgrade_history_entry_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -10599,6 +11181,10 @@ def get_db_home(self, db_home_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DbHome` :rtype: :class:`~oci.response.Response` @@ -10676,6 +11262,10 @@ def get_db_home_patch(self, db_home_id, patch_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.Patch` :rtype: :class:`~oci.response.Response` @@ -10754,6 +11344,10 @@ def get_db_home_patch_history_entry(self, db_home_id, patch_history_entry_id, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.PatchHistoryEntry` :rtype: :class:`~oci.response.Response` @@ -10827,6 +11421,10 @@ def get_db_node(self, db_node_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DbNode` :rtype: :class:`~oci.response.Response` @@ -10907,6 +11505,10 @@ def get_db_server(self, exadata_infrastructure_id, db_server_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DbServer` :rtype: :class:`~oci.response.Response` @@ -10918,6 +11520,7 @@ def get_db_server(self, exadata_infrastructure_id, db_server_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -10999,6 +11602,10 @@ def get_db_system(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DbSystem` :rtype: :class:`~oci.response.Response` @@ -11076,6 +11683,10 @@ def get_db_system_patch(self, db_system_id, patch_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.Patch` :rtype: :class:`~oci.response.Response` @@ -11154,6 +11765,10 @@ def get_db_system_patch_history_entry(self, db_system_id, patch_history_entry_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.PatchHistoryEntry` :rtype: :class:`~oci.response.Response` @@ -11231,6 +11846,10 @@ def get_exadata_infrastructure(self, exadata_infrastructure_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExadataInfrastructure` :rtype: :class:`~oci.response.Response` @@ -11242,6 +11861,7 @@ def get_exadata_infrastructure(self, exadata_infrastructure_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -11312,6 +11932,10 @@ def get_exadata_infrastructure_ocpus(self, autonomous_exadata_infrastructure_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.OCPUs` :rtype: :class:`~oci.response.Response` @@ -11323,6 +11947,7 @@ def get_exadata_infrastructure_ocpus(self, autonomous_exadata_infrastructure_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -11404,6 +12029,10 @@ def get_exadata_iorm_config(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExadataIormConfig` :rtype: :class:`~oci.response.Response` @@ -11415,6 +12044,7 @@ def get_exadata_iorm_config(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -11486,6 +12116,10 @@ def get_external_backup_job(self, backup_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExternalBackupJob` :rtype: :class:`~oci.response.Response` @@ -11561,6 +12195,10 @@ def get_external_container_database(self, external_container_database_id, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExternalContainerDatabase` :rtype: :class:`~oci.response.Response` @@ -11572,6 +12210,7 @@ def get_external_container_database(self, external_container_database_id, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -11643,6 +12282,10 @@ def get_external_database_connector(self, external_database_connector_id, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExternalDatabaseConnector` :rtype: :class:`~oci.response.Response` @@ -11654,6 +12297,7 @@ def get_external_database_connector(self, external_database_connector_id, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -11724,6 +12368,10 @@ def get_external_non_container_database(self, external_non_container_database_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExternalNonContainerDatabase` :rtype: :class:`~oci.response.Response` @@ -11735,6 +12383,7 @@ def get_external_non_container_database(self, external_non_container_database_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -11806,6 +12455,10 @@ def get_external_pluggable_database(self, external_pluggable_database_id, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExternalPluggableDatabase` :rtype: :class:`~oci.response.Response` @@ -11817,6 +12470,7 @@ def get_external_pluggable_database(self, external_pluggable_database_id, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -11887,6 +12541,10 @@ def get_key_store(self, key_store_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.KeyStore` :rtype: :class:`~oci.response.Response` @@ -11898,6 +12556,7 @@ def get_key_store(self, key_store_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -11963,6 +12622,10 @@ def get_maintenance_run(self, maintenance_run_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.MaintenanceRun` :rtype: :class:`~oci.response.Response` @@ -12043,6 +12706,10 @@ def get_pdb_conversion_history_entry(self, database_id, pdb_conversion_history_e To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.PdbConversionHistoryEntry` :rtype: :class:`~oci.response.Response` @@ -12054,6 +12721,7 @@ def get_pdb_conversion_history_entry(self, database_id, pdb_conversion_history_e # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -12122,6 +12790,10 @@ def get_pluggable_database(self, pluggable_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.PluggableDatabase` :rtype: :class:`~oci.response.Response` @@ -12197,6 +12869,10 @@ def get_vm_cluster(self, vm_cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.VmCluster` :rtype: :class:`~oci.response.Response` @@ -12208,6 +12884,7 @@ def get_vm_cluster(self, vm_cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -12284,6 +12961,10 @@ def get_vm_cluster_network(self, exadata_infrastructure_id, vm_cluster_network_i To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.VmClusterNetwork` :rtype: :class:`~oci.response.Response` @@ -12295,6 +12976,7 @@ def get_vm_cluster_network(self, exadata_infrastructure_id, vm_cluster_network_i # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -12368,6 +13050,10 @@ def get_vm_cluster_patch(self, vm_cluster_id, patch_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.Patch` :rtype: :class:`~oci.response.Response` @@ -12446,6 +13132,10 @@ def get_vm_cluster_patch_history_entry(self, vm_cluster_id, patch_history_entry_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.PatchHistoryEntry` :rtype: :class:`~oci.response.Response` @@ -12527,6 +13217,10 @@ def get_vm_cluster_update(self, vm_cluster_id, update_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.VmClusterUpdate` :rtype: :class:`~oci.response.Response` @@ -12538,6 +13232,7 @@ def get_vm_cluster_update(self, vm_cluster_id, update_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -12614,6 +13309,10 @@ def get_vm_cluster_update_history_entry(self, vm_cluster_id, update_history_entr To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.VmClusterUpdateHistoryEntry` :rtype: :class:`~oci.response.Response` @@ -12625,6 +13324,7 @@ def get_vm_cluster_update_history_entry(self, vm_cluster_id, update_history_entr # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -12698,6 +13398,10 @@ def launch_autonomous_exadata_infrastructure(self, launch_autonomous_exadata_inf To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousExadataInfrastructure` :rtype: :class:`~oci.response.Response` @@ -12709,6 +13413,7 @@ def launch_autonomous_exadata_infrastructure(self, launch_autonomous_exadata_inf # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -12793,6 +13498,10 @@ def launch_db_system(self, launch_db_system_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DbSystem` :rtype: :class:`~oci.response.Response` @@ -12804,6 +13513,7 @@ def launch_db_system(self, launch_db_system_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -12868,6 +13578,10 @@ def list_autonomous_container_database_dataguard_associations(self, autonomous_c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.AutonomousContainerDatabaseDataguardAssociation` :rtype: :class:`~oci.response.Response` @@ -12879,6 +13593,7 @@ def list_autonomous_container_database_dataguard_associations(self, autonomous_c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -13005,6 +13720,10 @@ def list_autonomous_container_databases(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.AutonomousContainerDatabaseSummary` :rtype: :class:`~oci.response.Response` @@ -13016,6 +13735,7 @@ def list_autonomous_container_databases(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "autonomous_exadata_infrastructure_id", "autonomous_vm_cluster_id", @@ -13161,6 +13881,10 @@ def list_autonomous_database_backups(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.AutonomousDatabaseBackupSummary` :rtype: :class:`~oci.response.Response` @@ -13172,6 +13896,7 @@ def list_autonomous_database_backups(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "autonomous_database_id", "compartment_id", @@ -13309,6 +14034,10 @@ def list_autonomous_database_clones(self, compartment_id, autonomous_database_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.AutonomousDatabaseSummary` :rtype: :class:`~oci.response.Response` @@ -13320,6 +14049,7 @@ def list_autonomous_database_clones(self, compartment_id, autonomous_database_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -13442,6 +14172,10 @@ def list_autonomous_database_dataguard_associations(self, autonomous_database_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.AutonomousDatabaseDataguardAssociation` :rtype: :class:`~oci.response.Response` @@ -13453,6 +14187,7 @@ def list_autonomous_database_dataguard_associations(self, autonomous_database_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -13585,6 +14320,10 @@ def list_autonomous_databases(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.AutonomousDatabaseSummary` :rtype: :class:`~oci.response.Response` @@ -13596,6 +14335,7 @@ def list_autonomous_databases(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "autonomous_container_database_id", "limit", @@ -13743,6 +14483,10 @@ def list_autonomous_db_preview_versions(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.AutonomousDbPreviewVersionSummary` :rtype: :class:`~oci.response.Response` @@ -13754,6 +14498,7 @@ def list_autonomous_db_preview_versions(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -13857,6 +14602,10 @@ def list_autonomous_db_versions(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.AutonomousDbVersionSummary` :rtype: :class:`~oci.response.Response` @@ -13868,6 +14617,7 @@ def list_autonomous_db_versions(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -13964,6 +14714,10 @@ def list_autonomous_exadata_infrastructure_shapes(self, availability_domain, com To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.AutonomousExadataInfrastructureShapeSummary` :rtype: :class:`~oci.response.Response` @@ -13975,6 +14729,7 @@ def list_autonomous_exadata_infrastructure_shapes(self, availability_domain, com # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -14071,6 +14826,10 @@ def list_autonomous_exadata_infrastructures(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.AutonomousExadataInfrastructureSummary` :rtype: :class:`~oci.response.Response` @@ -14082,6 +14841,7 @@ def list_autonomous_exadata_infrastructures(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -14206,6 +14966,10 @@ def list_autonomous_vm_clusters(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.AutonomousVmClusterSummary` :rtype: :class:`~oci.response.Response` @@ -14217,6 +14981,7 @@ def list_autonomous_vm_clusters(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "exadata_infrastructure_id", "limit", @@ -14326,6 +15091,10 @@ def list_backup_destination(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.BackupDestinationSummary` :rtype: :class:`~oci.response.Response` @@ -14337,6 +15106,7 @@ def list_backup_destination(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -14416,6 +15186,10 @@ def list_backups(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.BackupSummary` :rtype: :class:`~oci.response.Response` @@ -14427,6 +15201,7 @@ def list_backups(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "database_id", "compartment_id", @@ -14526,6 +15301,10 @@ def list_cloud_autonomous_vm_clusters(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.CloudAutonomousVmClusterSummary` :rtype: :class:`~oci.response.Response` @@ -14537,6 +15316,7 @@ def list_cloud_autonomous_vm_clusters(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "cloud_exadata_infrastructure_id", "limit", @@ -14663,6 +15443,10 @@ def list_cloud_exadata_infrastructures(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.CloudExadataInfrastructureSummary` :rtype: :class:`~oci.response.Response` @@ -14674,6 +15458,7 @@ def list_cloud_exadata_infrastructures(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -14783,6 +15568,10 @@ def list_cloud_vm_cluster_update_history_entries(self, cloud_vm_cluster_id, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.UpdateHistoryEntrySummary` :rtype: :class:`~oci.response.Response` @@ -14794,6 +15583,7 @@ def list_cloud_vm_cluster_update_history_entries(self, cloud_vm_cluster_id, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "update_type", "limit", @@ -14894,6 +15684,10 @@ def list_cloud_vm_cluster_updates(self, cloud_vm_cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.UpdateSummary` :rtype: :class:`~oci.response.Response` @@ -14905,6 +15699,7 @@ def list_cloud_vm_cluster_updates(self, cloud_vm_cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "update_type", "limit", @@ -15021,6 +15816,10 @@ def list_cloud_vm_clusters(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.CloudVmClusterSummary` :rtype: :class:`~oci.response.Response` @@ -15032,6 +15831,7 @@ def list_cloud_vm_clusters(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "cloud_exadata_infrastructure_id", "limit", @@ -15129,6 +15929,10 @@ def list_console_connections(self, db_node_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.ConsoleConnectionSummary` :rtype: :class:`~oci.response.Response` @@ -15212,6 +16016,10 @@ def list_container_database_patches(self, autonomous_container_database_id, comp To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.AutonomousPatchSummary` :rtype: :class:`~oci.response.Response` @@ -15223,6 +16031,7 @@ def list_container_database_patches(self, autonomous_container_database_id, comp # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -15304,6 +16113,10 @@ def list_data_guard_associations(self, database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.DataGuardAssociationSummary` :rtype: :class:`~oci.response.Response` @@ -15315,6 +16128,7 @@ def list_data_guard_associations(self, database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -15426,6 +16240,10 @@ def list_database_software_images(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.DatabaseSoftwareImageSummary` :rtype: :class:`~oci.response.Response` @@ -15437,6 +16255,7 @@ def list_database_software_images(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -15578,6 +16397,10 @@ def list_database_upgrade_history_entries(self, database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.DatabaseUpgradeHistoryEntrySummary` :rtype: :class:`~oci.response.Response` @@ -15589,6 +16412,7 @@ def list_database_upgrade_history_entries(self, database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "upgrade_action", "lifecycle_state", @@ -15736,6 +16560,10 @@ def list_databases(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.DatabaseSummary` :rtype: :class:`~oci.response.Response` @@ -15747,6 +16575,7 @@ def list_databases(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "db_home_id", "system_id", @@ -15849,6 +16678,10 @@ def list_db_home_patch_history_entries(self, db_home_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.PatchHistoryEntrySummary` :rtype: :class:`~oci.response.Response` @@ -15860,6 +16693,7 @@ def list_db_home_patch_history_entries(self, db_home_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -15940,6 +16774,10 @@ def list_db_home_patches(self, db_home_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.PatchSummary` :rtype: :class:`~oci.response.Response` @@ -15951,6 +16789,7 @@ def list_db_home_patches(self, db_home_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -16067,6 +16906,10 @@ def list_db_homes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.DbHomeSummary` :rtype: :class:`~oci.response.Response` @@ -16078,6 +16921,7 @@ def list_db_homes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "db_system_id", "vm_cluster_id", @@ -16214,6 +17058,10 @@ def list_db_nodes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.DbNodeSummary` :rtype: :class:`~oci.response.Response` @@ -16225,6 +17073,7 @@ def list_db_nodes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "db_system_id", "vm_cluster_id", @@ -16353,6 +17202,10 @@ def list_db_servers(self, compartment_id, exadata_infrastructure_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.DbServerSummary` :rtype: :class:`~oci.response.Response` @@ -16364,6 +17217,7 @@ def list_db_servers(self, compartment_id, exadata_infrastructure_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -16466,6 +17320,10 @@ def list_db_system_patch_history_entries(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.PatchHistoryEntrySummary` :rtype: :class:`~oci.response.Response` @@ -16477,6 +17335,7 @@ def list_db_system_patch_history_entries(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -16557,6 +17416,10 @@ def list_db_system_patches(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.PatchSummary` :rtype: :class:`~oci.response.Response` @@ -16568,6 +17431,7 @@ def list_db_system_patches(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -16651,6 +17515,10 @@ def list_db_system_shapes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.DbSystemShapeSummary` :rtype: :class:`~oci.response.Response` @@ -16662,6 +17530,7 @@ def list_db_system_shapes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "availability_domain", "limit", @@ -16768,6 +17637,10 @@ def list_db_systems(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.DbSystemSummary` :rtype: :class:`~oci.response.Response` @@ -16779,6 +17652,7 @@ def list_db_systems(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -16902,6 +17776,10 @@ def list_db_versions(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.DbVersionSummary` :rtype: :class:`~oci.response.Response` @@ -16913,6 +17791,7 @@ def list_db_versions(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -17021,6 +17900,10 @@ def list_exadata_infrastructures(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.ExadataInfrastructureSummary` :rtype: :class:`~oci.response.Response` @@ -17032,6 +17915,7 @@ def list_exadata_infrastructures(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -17157,6 +18041,10 @@ def list_external_container_databases(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.ExternalContainerDatabaseSummary` :rtype: :class:`~oci.response.Response` @@ -17168,6 +18056,7 @@ def list_external_container_databases(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -17298,6 +18187,10 @@ def list_external_database_connectors(self, compartment_id, external_database_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.ExternalDatabaseConnectorSummary` :rtype: :class:`~oci.response.Response` @@ -17309,6 +18202,7 @@ def list_external_database_connectors(self, compartment_id, external_database_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -17435,6 +18329,10 @@ def list_external_non_container_databases(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.ExternalNonContainerDatabaseSummary` :rtype: :class:`~oci.response.Response` @@ -17446,6 +18344,7 @@ def list_external_non_container_databases(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -17577,6 +18476,10 @@ def list_external_pluggable_databases(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.ExternalPluggableDatabaseSummary` :rtype: :class:`~oci.response.Response` @@ -17588,6 +18491,7 @@ def list_external_pluggable_databases(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "external_container_database_id", @@ -17704,6 +18608,10 @@ def list_flex_components(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.FlexComponentCollection` :rtype: :class:`~oci.response.Response` @@ -17715,6 +18623,7 @@ def list_flex_components(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "sort_order", @@ -17812,6 +18721,10 @@ def list_gi_versions(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.GiVersionSummary` :rtype: :class:`~oci.response.Response` @@ -17823,6 +18736,7 @@ def list_gi_versions(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -17906,6 +18820,10 @@ def list_key_stores(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.KeyStoreSummary` :rtype: :class:`~oci.response.Response` @@ -17917,6 +18835,7 @@ def list_key_stores(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -18022,6 +18941,10 @@ def list_maintenance_runs(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.MaintenanceRunSummary` :rtype: :class:`~oci.response.Response` @@ -18033,6 +18956,7 @@ def list_maintenance_runs(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "target_resource_id", "target_resource_type", @@ -18174,6 +19098,10 @@ def list_pdb_conversion_history_entries(self, database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.PdbConversionHistoryEntrySummary` :rtype: :class:`~oci.response.Response` @@ -18185,6 +19113,7 @@ def list_pdb_conversion_history_entries(self, database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "pdb_conversion_action", "lifecycle_state", @@ -18327,6 +19256,10 @@ def list_pluggable_databases(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.PluggableDatabaseSummary` :rtype: :class:`~oci.response.Response` @@ -18338,6 +19271,7 @@ def list_pluggable_databases(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "database_id", @@ -18465,6 +19399,10 @@ def list_vm_cluster_networks(self, exadata_infrastructure_id, compartment_id, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.VmClusterNetworkSummary` :rtype: :class:`~oci.response.Response` @@ -18476,6 +19414,7 @@ def list_vm_cluster_networks(self, exadata_infrastructure_id, compartment_id, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -18589,6 +19528,10 @@ def list_vm_cluster_patch_history_entries(self, vm_cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.PatchHistoryEntrySummary` :rtype: :class:`~oci.response.Response` @@ -18600,6 +19543,7 @@ def list_vm_cluster_patch_history_entries(self, vm_cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -18680,6 +19624,10 @@ def list_vm_cluster_patches(self, vm_cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.PatchSummary` :rtype: :class:`~oci.response.Response` @@ -18691,6 +19639,7 @@ def list_vm_cluster_patches(self, vm_cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page" @@ -18784,6 +19733,10 @@ def list_vm_cluster_update_history_entries(self, vm_cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.VmClusterUpdateHistoryEntrySummary` :rtype: :class:`~oci.response.Response` @@ -18795,6 +19748,7 @@ def list_vm_cluster_update_history_entries(self, vm_cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "update_type", "lifecycle_state", @@ -18909,6 +19863,10 @@ def list_vm_cluster_updates(self, vm_cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.VmClusterUpdateSummary` :rtype: :class:`~oci.response.Response` @@ -18920,6 +19878,7 @@ def list_vm_cluster_updates(self, vm_cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "update_type", "lifecycle_state", @@ -19046,6 +20005,10 @@ def list_vm_clusters(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.database.models.VmClusterSummary` :rtype: :class:`~oci.response.Response` @@ -19057,6 +20020,7 @@ def list_vm_clusters(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "exadata_infrastructure_id", "limit", @@ -19172,6 +20136,10 @@ def local_clone_pluggable_database(self, local_clone_pluggable_database_details, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.PluggableDatabase` :rtype: :class:`~oci.response.Response` @@ -19183,6 +20151,7 @@ def local_clone_pluggable_database(self, local_clone_pluggable_database_details, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -19275,6 +20244,10 @@ def migrate_exadata_db_system_resource_model(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExadataDbSystemMigration` :rtype: :class:`~oci.response.Response` @@ -19286,6 +20259,7 @@ def migrate_exadata_db_system_resource_model(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -19378,6 +20352,10 @@ def migrate_vault_key(self, database_id, migrate_vault_key_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.Database` :rtype: :class:`~oci.response.Response` @@ -19389,6 +20367,7 @@ def migrate_vault_key(self, database_id, migrate_vault_key_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -19481,6 +20460,10 @@ def modify_database_management(self, database_id, modify_database_management_det To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.Database` :rtype: :class:`~oci.response.Response` @@ -19492,6 +20475,7 @@ def modify_database_management(self, database_id, modify_database_management_det # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -19572,6 +20556,10 @@ def register_autonomous_database_data_safe(self, autonomous_database_id, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -19583,6 +20571,7 @@ def register_autonomous_database_data_safe(self, autonomous_database_id, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "register_autonomous_database_data_safe_details" @@ -19661,6 +20650,10 @@ def reinstate_autonomous_container_database_dataguard_association(self, autonomo To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousContainerDatabaseDataguardAssociation` :rtype: :class:`~oci.response.Response` @@ -19672,6 +20665,7 @@ def reinstate_autonomous_container_database_dataguard_association(self, autonomo # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -19753,6 +20747,10 @@ def reinstate_data_guard_association(self, database_id, data_guard_association_i To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DataGuardAssociation` :rtype: :class:`~oci.response.Response` @@ -19764,6 +20762,7 @@ def reinstate_data_guard_association(self, database_id, data_guard_association_i # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -19852,6 +20851,10 @@ def remote_clone_pluggable_database(self, remote_clone_pluggable_database_detail To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.PluggableDatabase` :rtype: :class:`~oci.response.Response` @@ -19863,6 +20866,7 @@ def remote_clone_pluggable_database(self, remote_clone_pluggable_database_detail # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -19955,6 +20959,10 @@ def remove_virtual_machine_from_vm_cluster(self, remove_virtual_machine_from_vm_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.VmCluster` :rtype: :class:`~oci.response.Response` @@ -19966,6 +20974,7 @@ def remove_virtual_machine_from_vm_cluster(self, remove_virtual_machine_from_vm_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -20048,6 +21057,10 @@ def restart_autonomous_container_database(self, autonomous_container_database_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousContainerDatabase` :rtype: :class:`~oci.response.Response` @@ -20059,6 +21072,7 @@ def restart_autonomous_container_database(self, autonomous_container_database_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -20133,6 +21147,10 @@ def restart_autonomous_database(self, autonomous_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousDatabase` :rtype: :class:`~oci.response.Response` @@ -20144,6 +21162,7 @@ def restart_autonomous_database(self, autonomous_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -20219,6 +21238,10 @@ def restore_autonomous_database(self, autonomous_database_id, restore_autonomous To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousDatabase` :rtype: :class:`~oci.response.Response` @@ -20230,6 +21253,7 @@ def restore_autonomous_database(self, autonomous_database_id, restore_autonomous # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -20307,6 +21331,10 @@ def restore_database(self, database_id, restore_database_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.Database` :rtype: :class:`~oci.response.Response` @@ -20318,6 +21346,7 @@ def restore_database(self, database_id, restore_database_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -20404,6 +21433,10 @@ def rotate_autonomous_container_database_encryption_key(self, autonomous_contain To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousContainerDatabase` :rtype: :class:`~oci.response.Response` @@ -20415,6 +21448,7 @@ def rotate_autonomous_container_database_encryption_key(self, autonomous_contain # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -20504,6 +21538,10 @@ def rotate_autonomous_database_encryption_key(self, autonomous_database_id, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousDatabase` :rtype: :class:`~oci.response.Response` @@ -20515,6 +21553,7 @@ def rotate_autonomous_database_encryption_key(self, autonomous_database_id, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -20602,6 +21641,10 @@ def rotate_cloud_autonomous_vm_cluster_ords_certs(self, cloud_autonomous_vm_clus To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -20613,6 +21656,7 @@ def rotate_cloud_autonomous_vm_cluster_ords_certs(self, cloud_autonomous_vm_clus # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -20698,6 +21742,10 @@ def rotate_cloud_autonomous_vm_cluster_ssl_certs(self, cloud_autonomous_vm_clust To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -20709,6 +21757,7 @@ def rotate_cloud_autonomous_vm_cluster_ssl_certs(self, cloud_autonomous_vm_clust # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -20794,6 +21843,10 @@ def rotate_ords_certs(self, autonomous_exadata_infrastructure_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -20805,6 +21858,7 @@ def rotate_ords_certs(self, autonomous_exadata_infrastructure_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -20890,6 +21944,10 @@ def rotate_ssl_certs(self, autonomous_exadata_infrastructure_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -20901,6 +21959,7 @@ def rotate_ssl_certs(self, autonomous_exadata_infrastructure_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -20988,6 +22047,10 @@ def rotate_vault_key(self, database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.Database` :rtype: :class:`~oci.response.Response` @@ -20999,6 +22062,7 @@ def rotate_vault_key(self, database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -21088,6 +22152,10 @@ def scan_external_container_database_pluggable_databases(self, external_containe To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -21099,6 +22167,7 @@ def scan_external_container_database_pluggable_databases(self, external_containe # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -21179,6 +22248,10 @@ def start_autonomous_database(self, autonomous_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousDatabase` :rtype: :class:`~oci.response.Response` @@ -21190,6 +22263,7 @@ def start_autonomous_database(self, autonomous_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -21272,6 +22346,10 @@ def start_pluggable_database(self, pluggable_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.PluggableDatabase` :rtype: :class:`~oci.response.Response` @@ -21283,6 +22361,7 @@ def start_pluggable_database(self, pluggable_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -21363,6 +22442,10 @@ def stop_autonomous_database(self, autonomous_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousDatabase` :rtype: :class:`~oci.response.Response` @@ -21374,6 +22457,7 @@ def stop_autonomous_database(self, autonomous_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -21458,6 +22542,10 @@ def stop_pluggable_database(self, pluggable_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.PluggableDatabase` :rtype: :class:`~oci.response.Response` @@ -21469,6 +22557,7 @@ def stop_pluggable_database(self, pluggable_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -21553,6 +22642,10 @@ def switchover_autonomous_container_database_dataguard_association(self, autonom To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousContainerDatabaseDataguardAssociation` :rtype: :class:`~oci.response.Response` @@ -21564,6 +22657,7 @@ def switchover_autonomous_container_database_dataguard_association(self, autonom # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -21654,6 +22748,10 @@ def switchover_autonomous_database(self, autonomous_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousDatabase` :rtype: :class:`~oci.response.Response` @@ -21665,6 +22763,7 @@ def switchover_autonomous_database(self, autonomous_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -21761,6 +22860,10 @@ def switchover_data_guard_association(self, database_id, data_guard_association_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DataGuardAssociation` :rtype: :class:`~oci.response.Response` @@ -21772,6 +22875,7 @@ def switchover_data_guard_association(self, database_id, data_guard_association_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -21847,6 +22951,10 @@ def terminate_autonomous_container_database(self, autonomous_container_database_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -21858,6 +22966,7 @@ def terminate_autonomous_container_database(self, autonomous_container_database_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -21928,6 +23037,10 @@ def terminate_autonomous_exadata_infrastructure(self, autonomous_exadata_infrast To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -21939,6 +23052,7 @@ def terminate_autonomous_exadata_infrastructure(self, autonomous_exadata_infrast # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -22016,6 +23130,10 @@ def terminate_db_system(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -22027,6 +23145,7 @@ def terminate_db_system(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -22100,6 +23219,10 @@ def update_autonomous_container_database(self, autonomous_container_database_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousContainerDatabase` :rtype: :class:`~oci.response.Response` @@ -22111,6 +23234,7 @@ def update_autonomous_container_database(self, autonomous_container_database_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -22191,6 +23315,10 @@ def update_autonomous_database(self, autonomous_database_id, update_autonomous_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousDatabase` :rtype: :class:`~oci.response.Response` @@ -22202,6 +23330,7 @@ def update_autonomous_database(self, autonomous_database_id, update_autonomous_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -22274,6 +23403,10 @@ def update_autonomous_database_regional_wallet(self, update_autonomous_database_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -22285,6 +23418,7 @@ def update_autonomous_database_regional_wallet(self, update_autonomous_database_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -22346,6 +23480,10 @@ def update_autonomous_database_wallet(self, autonomous_database_id, update_auton To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -22357,6 +23495,7 @@ def update_autonomous_database_wallet(self, autonomous_database_id, update_auton # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -22432,6 +23571,10 @@ def update_autonomous_exadata_infrastructure(self, autonomous_exadata_infrastruc To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousExadataInfrastructure` :rtype: :class:`~oci.response.Response` @@ -22443,6 +23586,7 @@ def update_autonomous_exadata_infrastructure(self, autonomous_exadata_infrastruc # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -22523,6 +23667,10 @@ def update_autonomous_vm_cluster(self, autonomous_vm_cluster_id, update_autonomo To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.AutonomousVmCluster` :rtype: :class:`~oci.response.Response` @@ -22534,6 +23682,7 @@ def update_autonomous_vm_cluster(self, autonomous_vm_cluster_id, update_autonomo # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -22619,6 +23768,10 @@ def update_backup_destination(self, backup_destination_id, update_backup_destina To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.BackupDestination` :rtype: :class:`~oci.response.Response` @@ -22630,6 +23783,7 @@ def update_backup_destination(self, backup_destination_id, update_backup_destina # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -22712,6 +23866,10 @@ def update_cloud_autonomous_vm_cluster(self, cloud_autonomous_vm_cluster_id, upd To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.CloudAutonomousVmCluster` :rtype: :class:`~oci.response.Response` @@ -22723,6 +23881,7 @@ def update_cloud_autonomous_vm_cluster(self, cloud_autonomous_vm_cluster_id, upd # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -22805,6 +23964,10 @@ def update_cloud_exadata_infrastructure(self, cloud_exadata_infrastructure_id, u To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.CloudExadataInfrastructure` :rtype: :class:`~oci.response.Response` @@ -22816,6 +23979,7 @@ def update_cloud_exadata_infrastructure(self, cloud_exadata_infrastructure_id, u # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -22898,6 +24062,10 @@ def update_cloud_vm_cluster(self, cloud_vm_cluster_id, update_cloud_vm_cluster_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.CloudVmCluster` :rtype: :class:`~oci.response.Response` @@ -22909,6 +24077,7 @@ def update_cloud_vm_cluster(self, cloud_vm_cluster_id, update_cloud_vm_cluster_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -22991,6 +24160,10 @@ def update_cloud_vm_cluster_iorm_config(self, cloud_vm_cluster_id, cloud_vm_clus To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExadataIormConfig` :rtype: :class:`~oci.response.Response` @@ -23002,6 +24175,7 @@ def update_cloud_vm_cluster_iorm_config(self, cloud_vm_cluster_id, cloud_vm_clus # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -23089,6 +24263,10 @@ def update_data_guard_association(self, database_id, data_guard_association_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DataGuardAssociation` :rtype: :class:`~oci.response.Response` @@ -23100,6 +24278,7 @@ def update_data_guard_association(self, database_id, data_guard_association_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -23180,6 +24359,10 @@ def update_database(self, database_id, update_database_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.Database` :rtype: :class:`~oci.response.Response` @@ -23191,6 +24374,7 @@ def update_database(self, database_id, update_database_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -23268,6 +24452,10 @@ def update_database_software_image(self, database_software_image_id, update_data To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DatabaseSoftwareImage` :rtype: :class:`~oci.response.Response` @@ -23279,6 +24467,7 @@ def update_database_software_image(self, database_software_image_id, update_data # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -23356,6 +24545,10 @@ def update_db_home(self, db_home_id, update_db_home_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DbHome` :rtype: :class:`~oci.response.Response` @@ -23367,6 +24560,7 @@ def update_db_home(self, db_home_id, update_db_home_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -23451,6 +24645,10 @@ def update_db_system(self, db_system_id, update_db_system_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.DbSystem` :rtype: :class:`~oci.response.Response` @@ -23462,6 +24660,7 @@ def update_db_system(self, db_system_id, update_db_system_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -23543,6 +24742,10 @@ def update_exadata_infrastructure(self, exadata_infrastructure_id, update_exadat To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExadataInfrastructure` :rtype: :class:`~oci.response.Response` @@ -23554,6 +24757,7 @@ def update_exadata_infrastructure(self, exadata_infrastructure_id, update_exadat # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -23646,6 +24850,10 @@ def update_exadata_iorm_config(self, db_system_id, exadata_iorm_config_update_de To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExadataIormConfig` :rtype: :class:`~oci.response.Response` @@ -23657,6 +24865,7 @@ def update_exadata_iorm_config(self, db_system_id, exadata_iorm_config_update_de # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -23742,6 +24951,10 @@ def update_external_container_database(self, external_container_database_id, upd To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExternalContainerDatabase` :rtype: :class:`~oci.response.Response` @@ -23753,6 +24966,7 @@ def update_external_container_database(self, external_container_database_id, upd # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -23836,6 +25050,10 @@ def update_external_database_connector(self, external_database_connector_id, upd To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExternalDatabaseConnector` :rtype: :class:`~oci.response.Response` @@ -23847,6 +25065,7 @@ def update_external_database_connector(self, external_database_connector_id, upd # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -23929,6 +25148,10 @@ def update_external_non_container_database(self, external_non_container_database To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExternalNonContainerDatabase` :rtype: :class:`~oci.response.Response` @@ -23940,6 +25163,7 @@ def update_external_non_container_database(self, external_non_container_database # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -24024,6 +25248,10 @@ def update_external_pluggable_database(self, external_pluggable_database_id, upd To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.ExternalPluggableDatabase` :rtype: :class:`~oci.response.Response` @@ -24035,6 +25263,7 @@ def update_external_pluggable_database(self, external_pluggable_database_id, upd # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -24117,6 +25346,10 @@ def update_key_store(self, key_store_id, update_key_store_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.KeyStore` :rtype: :class:`~oci.response.Response` @@ -24128,6 +25361,7 @@ def update_key_store(self, key_store_id, update_key_store_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -24205,6 +25439,10 @@ def update_maintenance_run(self, maintenance_run_id, update_maintenance_run_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.MaintenanceRun` :rtype: :class:`~oci.response.Response` @@ -24216,6 +25454,7 @@ def update_maintenance_run(self, maintenance_run_id, update_maintenance_run_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -24293,6 +25532,10 @@ def update_pluggable_database(self, pluggable_database_id, update_pluggable_data To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.PluggableDatabase` :rtype: :class:`~oci.response.Response` @@ -24304,6 +25547,7 @@ def update_pluggable_database(self, pluggable_database_id, update_pluggable_data # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -24384,6 +25628,10 @@ def update_vm_cluster(self, vm_cluster_id, update_vm_cluster_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.VmCluster` :rtype: :class:`~oci.response.Response` @@ -24395,6 +25643,7 @@ def update_vm_cluster(self, vm_cluster_id, update_vm_cluster_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -24483,6 +25732,10 @@ def update_vm_cluster_network(self, exadata_infrastructure_id, vm_cluster_networ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.VmClusterNetwork` :rtype: :class:`~oci.response.Response` @@ -24494,6 +25747,7 @@ def update_vm_cluster_network(self, exadata_infrastructure_id, vm_cluster_networ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -24577,6 +25831,10 @@ def upgrade_database(self, database_id, upgrade_database_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.Database` :rtype: :class:`~oci.response.Response` @@ -24588,6 +25846,7 @@ def upgrade_database(self, database_id, upgrade_database_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -24674,6 +25933,10 @@ def validate_vm_cluster_network(self, exadata_infrastructure_id, vm_cluster_netw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.VmClusterNetwork` :rtype: :class:`~oci.response.Response` @@ -24685,6 +25948,7 @@ def validate_vm_cluster_network(self, exadata_infrastructure_id, vm_cluster_netw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" diff --git a/src/oci/database/database_client_composite_operations.py b/src/oci/database/database_client_composite_operations.py index 15954551a1..cec1b16080 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/database/models/__init__.py b/src/oci/database/models/__init__.py index 3bcd4fe2fc..beceaddf03 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 d5be460916..28de126067 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/add_virtual_machine_to_vm_cluster_details.py b/src/oci/database/models/add_virtual_machine_to_vm_cluster_details.py index e22010a652..bf968b121d 100644 --- a/src/oci/database/models/add_virtual_machine_to_vm_cluster_details.py +++ b/src/oci/database/models/add_virtual_machine_to_vm_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/associated_database_details.py b/src/oci/database/models/associated_database_details.py index 84d3ccac77..44aed05be3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/automated_mount_details.py b/src/oci/database/models/automated_mount_details.py index 29f18890d9..19020e2051 100644 --- a/src/oci/database/models/automated_mount_details.py +++ b/src/oci/database/models/automated_mount_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .mount_type_details import MountTypeDetails diff --git a/src/oci/database/models/autonomous_container_database.py b/src/oci/database/models/autonomous_container_database.py index db9a2f58ef..7e507eccaa 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 878ffab2ca..955bf0cc5e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_container_database_dataguard_association.py b/src/oci/database/models/autonomous_container_database_dataguard_association.py index ef801482f8..c7fa3ff2fa 100644 --- a/src/oci/database/models/autonomous_container_database_dataguard_association.py +++ b/src/oci/database/models/autonomous_container_database_dataguard_association.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_container_database_summary.py b/src/oci/database/models/autonomous_container_database_summary.py index 9a4af6403f..2da65ebe72 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_data_warehouse.py b/src/oci/database/models/autonomous_data_warehouse.py index c43cb60898..18e2a23d54 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 8170530261..febc670fe3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_data_warehouse_summary.py b/src/oci/database/models/autonomous_data_warehouse_summary.py index a3f60188d7..7c4d4db471 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_database.py b/src/oci/database/models/autonomous_database.py index 53d1f6a87a..880d7a01a1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_database_apex.py b/src/oci/database/models/autonomous_database_apex.py index 5a10cf6a6a..aa10e5429f 100644 --- a/src/oci/database/models/autonomous_database_apex.py +++ b/src/oci/database/models/autonomous_database_apex.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_database_backup.py b/src/oci/database/models/autonomous_database_backup.py index ec5bd28479..38473157c2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_database_backup_config.py b/src/oci/database/models/autonomous_database_backup_config.py index ce40a43fb2..d78d2a01c0 100644 --- a/src/oci/database/models/autonomous_database_backup_config.py +++ b/src/oci/database/models/autonomous_database_backup_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_database_backup_summary.py b/src/oci/database/models/autonomous_database_backup_summary.py index fffa1106da..cc165d5b46 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_database_connection_strings.py b/src/oci/database/models/autonomous_database_connection_strings.py index 69a7c5b6a6..f5edcd26bf 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_database_connection_urls.py b/src/oci/database/models/autonomous_database_connection_urls.py index 6eb92233f9..432602663a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 f36766d343..5ca30cf52c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_database_dataguard_association.py b/src/oci/database/models/autonomous_database_dataguard_association.py index f622479758..90a111fd3a 100644 --- a/src/oci/database/models/autonomous_database_dataguard_association.py +++ b/src/oci/database/models/autonomous_database_dataguard_association.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_database_key_history_entry.py b/src/oci/database/models/autonomous_database_key_history_entry.py index 0283b9e221..95d63bc18d 100644 --- a/src/oci/database/models/autonomous_database_key_history_entry.py +++ b/src/oci/database/models/autonomous_database_key_history_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_database_manual_refresh_details.py b/src/oci/database/models/autonomous_database_manual_refresh_details.py index b03f5eaef1..143da4ac5b 100644 --- a/src/oci/database/models/autonomous_database_manual_refresh_details.py +++ b/src/oci/database/models/autonomous_database_manual_refresh_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_database_standby_summary.py b/src/oci/database/models/autonomous_database_standby_summary.py index 26980cbf97..2c7a2a0a00 100644 --- a/src/oci/database/models/autonomous_database_standby_summary.py +++ b/src/oci/database/models/autonomous_database_standby_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_database_summary.py b/src/oci/database/models/autonomous_database_summary.py index 7c1f99502e..40a6f3033c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_database_wallet.py b/src/oci/database/models/autonomous_database_wallet.py index 856e5e7324..4d5de551e5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 0bac205734..8f245c45b7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_db_version_summary.py b/src/oci/database/models/autonomous_db_version_summary.py index ad1a83c05d..b48ad077c4 100644 --- a/src/oci/database/models/autonomous_db_version_summary.py +++ b/src/oci/database/models/autonomous_db_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_exadata_infrastructure.py b/src/oci/database/models/autonomous_exadata_infrastructure.py index 0804f5134f..1f0cbe4e47 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 ecaa001b6e..0b46868385 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_exadata_infrastructure_summary.py b/src/oci/database/models/autonomous_exadata_infrastructure_summary.py index ca13d55940..33ac028966 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_patch.py b/src/oci/database/models/autonomous_patch.py index 9df09884e2..d456dc60a0 100644 --- a/src/oci/database/models/autonomous_patch.py +++ b/src/oci/database/models/autonomous_patch.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_patch_summary.py b/src/oci/database/models/autonomous_patch_summary.py index c07f0af0f4..8ec16c707d 100644 --- a/src/oci/database/models/autonomous_patch_summary.py +++ b/src/oci/database/models/autonomous_patch_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_vm_cluster.py b/src/oci/database/models/autonomous_vm_cluster.py index 07d5723963..eece189031 100644 --- a/src/oci/database/models/autonomous_vm_cluster.py +++ b/src/oci/database/models/autonomous_vm_cluster.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/autonomous_vm_cluster_summary.py b/src/oci/database/models/autonomous_vm_cluster_summary.py index ee171961fc..952ef08ca4 100644 --- a/src/oci/database/models/autonomous_vm_cluster_summary.py +++ b/src/oci/database/models/autonomous_vm_cluster_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/backup.py b/src/oci/database/models/backup.py index a052d62aa0..5ac1b71aad 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/backup_destination.py b/src/oci/database/models/backup_destination.py index 79e52cc133..751a273ef7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/backup_destination_details.py b/src/oci/database/models/backup_destination_details.py index d10495f868..9aad166b6e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/backup_destination_summary.py b/src/oci/database/models/backup_destination_summary.py index d6de1ff01f..dd995cf884 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/backup_summary.py b/src/oci/database/models/backup_summary.py index fe2e031729..57deaa9c88 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/change_autonomous_vm_cluster_compartment_details.py b/src/oci/database/models/change_autonomous_vm_cluster_compartment_details.py index e4348a506e..bf1beab412 100644 --- a/src/oci/database/models/change_autonomous_vm_cluster_compartment_details.py +++ b/src/oci/database/models/change_autonomous_vm_cluster_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/change_cloud_autonomous_vm_cluster_compartment_details.py b/src/oci/database/models/change_cloud_autonomous_vm_cluster_compartment_details.py index 0077cfb227..5d3098ac8e 100644 --- a/src/oci/database/models/change_cloud_autonomous_vm_cluster_compartment_details.py +++ b/src/oci/database/models/change_cloud_autonomous_vm_cluster_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/change_cloud_exadata_infrastructure_compartment_details.py b/src/oci/database/models/change_cloud_exadata_infrastructure_compartment_details.py index 22fb24c03d..c278a8e990 100644 --- a/src/oci/database/models/change_cloud_exadata_infrastructure_compartment_details.py +++ b/src/oci/database/models/change_cloud_exadata_infrastructure_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/change_cloud_vm_cluster_compartment_details.py b/src/oci/database/models/change_cloud_vm_cluster_compartment_details.py index bc2ff390ac..a631a0a75e 100644 --- a/src/oci/database/models/change_cloud_vm_cluster_compartment_details.py +++ b/src/oci/database/models/change_cloud_vm_cluster_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/change_compartment_details.py b/src/oci/database/models/change_compartment_details.py index 6f5dbcd944..8fd63f58e8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 79277802e4..d077e7cd4b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/change_key_store_compartment_details.py b/src/oci/database/models/change_key_store_compartment_details.py index 237b9dd958..bec19b2bae 100644 --- a/src/oci/database/models/change_key_store_compartment_details.py +++ b/src/oci/database/models/change_key_store_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 36d26890d8..c3d304ee84 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/cloud_autonomous_vm_cluster.py b/src/oci/database/models/cloud_autonomous_vm_cluster.py index 6a0138facb..c710b7b205 100644 --- a/src/oci/database/models/cloud_autonomous_vm_cluster.py +++ b/src/oci/database/models/cloud_autonomous_vm_cluster.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/cloud_autonomous_vm_cluster_summary.py b/src/oci/database/models/cloud_autonomous_vm_cluster_summary.py index 5387e7bfaf..2d16fb2017 100644 --- a/src/oci/database/models/cloud_autonomous_vm_cluster_summary.py +++ b/src/oci/database/models/cloud_autonomous_vm_cluster_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/cloud_database_management_config.py b/src/oci/database/models/cloud_database_management_config.py index a8f960c646..a56e2c5056 100644 --- a/src/oci/database/models/cloud_database_management_config.py +++ b/src/oci/database/models/cloud_database_management_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/cloud_exadata_infrastructure.py b/src/oci/database/models/cloud_exadata_infrastructure.py index 83e1a30748..586b117685 100644 --- a/src/oci/database/models/cloud_exadata_infrastructure.py +++ b/src/oci/database/models/cloud_exadata_infrastructure.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/cloud_exadata_infrastructure_summary.py b/src/oci/database/models/cloud_exadata_infrastructure_summary.py index 7134335037..611c757e5c 100644 --- a/src/oci/database/models/cloud_exadata_infrastructure_summary.py +++ b/src/oci/database/models/cloud_exadata_infrastructure_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/cloud_vm_cluster.py b/src/oci/database/models/cloud_vm_cluster.py index 7ff430326b..a3c0ea0a21 100644 --- a/src/oci/database/models/cloud_vm_cluster.py +++ b/src/oci/database/models/cloud_vm_cluster.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/cloud_vm_cluster_summary.py b/src/oci/database/models/cloud_vm_cluster_summary.py index 0034857fd2..706bed562d 100644 --- a/src/oci/database/models/cloud_vm_cluster_summary.py +++ b/src/oci/database/models/cloud_vm_cluster_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 5ca0920c63..292e7edf68 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/configure_autonomous_database_vault_key_details.py b/src/oci/database/models/configure_autonomous_database_vault_key_details.py index 1b17729485..46ea5184ad 100644 --- a/src/oci/database/models/configure_autonomous_database_vault_key_details.py +++ b/src/oci/database/models/configure_autonomous_database_vault_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/console_connection.py b/src/oci/database/models/console_connection.py index e30e008059..4abbccca10 100644 --- a/src/oci/database/models/console_connection.py +++ b/src/oci/database/models/console_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/console_connection_summary.py b/src/oci/database/models/console_connection_summary.py index 057613c4ea..62004657f1 100644 --- a/src/oci/database/models/console_connection_summary.py +++ b/src/oci/database/models/console_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/convert_to_pdb_details.py b/src/oci/database/models/convert_to_pdb_details.py index ae3b14645f..0b8924b3f4 100644 --- a/src/oci/database/models/convert_to_pdb_details.py +++ b/src/oci/database/models/convert_to_pdb_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/convert_to_pdb_target_base.py b/src/oci/database/models/convert_to_pdb_target_base.py index 159bec4cbe..d9bc230a2a 100644 --- a/src/oci/database/models/convert_to_pdb_target_base.py +++ b/src/oci/database/models/convert_to_pdb_target_base.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 ad2aeb48dc..d61fa42ac4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 7af010ebd5..6de83e3d64 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_autonomous_database_base.py b/src/oci/database/models/create_autonomous_database_base.py index 731291aad1..8192394adf 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 501b7d1209..9fc84de521 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_autonomous_database_base import CreateAutonomousDatabaseBase diff --git a/src/oci/database/models/create_autonomous_database_details.py b/src/oci/database/models/create_autonomous_database_details.py index 5a16bf2bed..931b08a15b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_autonomous_database_base import CreateAutonomousDatabaseBase diff --git a/src/oci/database/models/create_autonomous_database_from_backup_details.py b/src/oci/database/models/create_autonomous_database_from_backup_details.py index a9735c0580..bdbe5c7dc5 100644 --- a/src/oci/database/models/create_autonomous_database_from_backup_details.py +++ b/src/oci/database/models/create_autonomous_database_from_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_autonomous_database_base import CreateAutonomousDatabaseBase diff --git a/src/oci/database/models/create_autonomous_database_from_backup_timestamp_details.py b/src/oci/database/models/create_autonomous_database_from_backup_timestamp_details.py index 3b2540c78a..621ab0b5b7 100644 --- a/src/oci/database/models/create_autonomous_database_from_backup_timestamp_details.py +++ b/src/oci/database/models/create_autonomous_database_from_backup_timestamp_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_autonomous_database_base import CreateAutonomousDatabaseBase diff --git a/src/oci/database/models/create_autonomous_vm_cluster_details.py b/src/oci/database/models/create_autonomous_vm_cluster_details.py index d5f29d7e4e..7ee25b47c5 100644 --- a/src/oci/database/models/create_autonomous_vm_cluster_details.py +++ b/src/oci/database/models/create_autonomous_vm_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_backup_destination_details.py b/src/oci/database/models/create_backup_destination_details.py index 78d69e9d6b..a246ec8ec9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_backup_details.py b/src/oci/database/models/create_backup_details.py index 35bdce92fd..0c3ed379f7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_cloud_autonomous_vm_cluster_details.py b/src/oci/database/models/create_cloud_autonomous_vm_cluster_details.py index ee96084816..62fb4dfc42 100644 --- a/src/oci/database/models/create_cloud_autonomous_vm_cluster_details.py +++ b/src/oci/database/models/create_cloud_autonomous_vm_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_cloud_exadata_infrastructure_details.py b/src/oci/database/models/create_cloud_exadata_infrastructure_details.py index 4b40bf29b5..7112ea3f81 100644 --- a/src/oci/database/models/create_cloud_exadata_infrastructure_details.py +++ b/src/oci/database/models/create_cloud_exadata_infrastructure_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_cloud_vm_cluster_details.py b/src/oci/database/models/create_cloud_vm_cluster_details.py index c2ffdbdc41..75a6a10b9c 100644 --- a/src/oci/database/models/create_cloud_vm_cluster_details.py +++ b/src/oci/database/models/create_cloud_vm_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_console_connection_details.py b/src/oci/database/models/create_console_connection_details.py index 99e5b02ef1..be2648796d 100644 --- a/src/oci/database/models/create_console_connection_details.py +++ b/src/oci/database/models/create_console_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_cross_region_autonomous_database_data_guard_details.py b/src/oci/database/models/create_cross_region_autonomous_database_data_guard_details.py index 791f33ed27..275efb0f2a 100644 --- a/src/oci/database/models/create_cross_region_autonomous_database_data_guard_details.py +++ b/src/oci/database/models/create_cross_region_autonomous_database_data_guard_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_autonomous_database_base import CreateAutonomousDatabaseBase 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 3688fe6d1b..abb5b3bb6f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -72,6 +72,10 @@ def __init__(self, **kwargs): The value to assign to the creation_type property of this CreateDataGuardAssociationDetails. :type creation_type: str + :param is_active_data_guard_enabled: + The value to assign to the is_active_data_guard_enabled property of this CreateDataGuardAssociationDetails. + :type is_active_data_guard_enabled: bool + :param peer_db_unique_name: The value to assign to the peer_db_unique_name property of this CreateDataGuardAssociationDetails. :type peer_db_unique_name: str @@ -87,6 +91,7 @@ def __init__(self, **kwargs): 'protection_mode': 'str', 'transport_type': 'str', 'creation_type': 'str', + 'is_active_data_guard_enabled': 'bool', 'peer_db_unique_name': 'str', 'peer_sid_prefix': 'str' } @@ -97,6 +102,7 @@ def __init__(self, **kwargs): 'protection_mode': 'protectionMode', 'transport_type': 'transportType', 'creation_type': 'creationType', + 'is_active_data_guard_enabled': 'isActiveDataGuardEnabled', 'peer_db_unique_name': 'peerDbUniqueName', 'peer_sid_prefix': 'peerSidPrefix' } @@ -106,6 +112,7 @@ def __init__(self, **kwargs): self._protection_mode = None self._transport_type = None self._creation_type = None + self._is_active_data_guard_enabled = None self._peer_db_unique_name = None self._peer_sid_prefix = None @@ -328,6 +335,30 @@ def creation_type(self, creation_type): """ self._creation_type = creation_type + @property + def is_active_data_guard_enabled(self): + """ + Gets the is_active_data_guard_enabled of this CreateDataGuardAssociationDetails. + True if active Data Guard is enabled. + + + :return: The is_active_data_guard_enabled of this CreateDataGuardAssociationDetails. + :rtype: bool + """ + return self._is_active_data_guard_enabled + + @is_active_data_guard_enabled.setter + def is_active_data_guard_enabled(self, is_active_data_guard_enabled): + """ + Sets the is_active_data_guard_enabled of this CreateDataGuardAssociationDetails. + True if active Data Guard is enabled. + + + :param is_active_data_guard_enabled: The is_active_data_guard_enabled of this CreateDataGuardAssociationDetails. + :type: bool + """ + self._is_active_data_guard_enabled = is_active_data_guard_enabled + @property def peer_db_unique_name(self): """ 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 11a7cdab1b..6cea4e00bb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_data_guard_association_details import CreateDataGuardAssociationDetails @@ -43,6 +43,10 @@ def __init__(self, **kwargs): The value to assign to the creation_type property of this CreateDataGuardAssociationToExistingDbSystemDetails. :type creation_type: str + :param is_active_data_guard_enabled: + The value to assign to the is_active_data_guard_enabled property of this CreateDataGuardAssociationToExistingDbSystemDetails. + :type is_active_data_guard_enabled: bool + :param peer_db_unique_name: The value to assign to the peer_db_unique_name property of this CreateDataGuardAssociationToExistingDbSystemDetails. :type peer_db_unique_name: str @@ -66,6 +70,7 @@ def __init__(self, **kwargs): 'protection_mode': 'str', 'transport_type': 'str', 'creation_type': 'str', + 'is_active_data_guard_enabled': 'bool', 'peer_db_unique_name': 'str', 'peer_sid_prefix': 'str', 'peer_db_system_id': 'str', @@ -78,6 +83,7 @@ def __init__(self, **kwargs): 'protection_mode': 'protectionMode', 'transport_type': 'transportType', 'creation_type': 'creationType', + 'is_active_data_guard_enabled': 'isActiveDataGuardEnabled', 'peer_db_unique_name': 'peerDbUniqueName', 'peer_sid_prefix': 'peerSidPrefix', 'peer_db_system_id': 'peerDbSystemId', @@ -89,6 +95,7 @@ def __init__(self, **kwargs): self._protection_mode = None self._transport_type = None self._creation_type = None + self._is_active_data_guard_enabled = None self._peer_db_unique_name = None self._peer_sid_prefix = None self._peer_db_system_id = None diff --git a/src/oci/database/models/create_data_guard_association_to_existing_vm_cluster_details.py b/src/oci/database/models/create_data_guard_association_to_existing_vm_cluster_details.py index a60cf42c32..31a43bcd17 100644 --- a/src/oci/database/models/create_data_guard_association_to_existing_vm_cluster_details.py +++ b/src/oci/database/models/create_data_guard_association_to_existing_vm_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_data_guard_association_details import CreateDataGuardAssociationDetails @@ -41,6 +41,10 @@ def __init__(self, **kwargs): The value to assign to the creation_type property of this CreateDataGuardAssociationToExistingVmClusterDetails. :type creation_type: str + :param is_active_data_guard_enabled: + The value to assign to the is_active_data_guard_enabled property of this CreateDataGuardAssociationToExistingVmClusterDetails. + :type is_active_data_guard_enabled: bool + :param peer_db_unique_name: The value to assign to the peer_db_unique_name property of this CreateDataGuardAssociationToExistingVmClusterDetails. :type peer_db_unique_name: str @@ -64,6 +68,7 @@ def __init__(self, **kwargs): 'protection_mode': 'str', 'transport_type': 'str', 'creation_type': 'str', + 'is_active_data_guard_enabled': 'bool', 'peer_db_unique_name': 'str', 'peer_sid_prefix': 'str', 'peer_vm_cluster_id': 'str', @@ -76,6 +81,7 @@ def __init__(self, **kwargs): 'protection_mode': 'protectionMode', 'transport_type': 'transportType', 'creation_type': 'creationType', + 'is_active_data_guard_enabled': 'isActiveDataGuardEnabled', 'peer_db_unique_name': 'peerDbUniqueName', 'peer_sid_prefix': 'peerSidPrefix', 'peer_vm_cluster_id': 'peerVmClusterId', @@ -87,6 +93,7 @@ def __init__(self, **kwargs): self._protection_mode = None self._transport_type = None self._creation_type = None + self._is_active_data_guard_enabled = None self._peer_db_unique_name = None self._peer_sid_prefix = None self._peer_vm_cluster_id = None 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 5cd9a18e3b..73dd1a54d9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_data_guard_association_details import CreateDataGuardAssociationDetails @@ -43,6 +43,10 @@ def __init__(self, **kwargs): The value to assign to the creation_type property of this CreateDataGuardAssociationWithNewDbSystemDetails. :type creation_type: str + :param is_active_data_guard_enabled: + The value to assign to the is_active_data_guard_enabled property of this CreateDataGuardAssociationWithNewDbSystemDetails. + :type is_active_data_guard_enabled: bool + :param peer_db_unique_name: The value to assign to the peer_db_unique_name property of this CreateDataGuardAssociationWithNewDbSystemDetails. :type peer_db_unique_name: str @@ -86,6 +90,7 @@ def __init__(self, **kwargs): 'protection_mode': 'str', 'transport_type': 'str', 'creation_type': 'str', + 'is_active_data_guard_enabled': 'bool', 'peer_db_unique_name': 'str', 'peer_sid_prefix': 'str', 'display_name': 'str', @@ -103,6 +108,7 @@ def __init__(self, **kwargs): 'protection_mode': 'protectionMode', 'transport_type': 'transportType', 'creation_type': 'creationType', + 'is_active_data_guard_enabled': 'isActiveDataGuardEnabled', 'peer_db_unique_name': 'peerDbUniqueName', 'peer_sid_prefix': 'peerSidPrefix', 'display_name': 'displayName', @@ -119,6 +125,7 @@ def __init__(self, **kwargs): self._protection_mode = None self._transport_type = None self._creation_type = None + self._is_active_data_guard_enabled = None self._peer_db_unique_name = None self._peer_sid_prefix = None self._display_name = None diff --git a/src/oci/database/models/create_database_base.py b/src/oci/database/models/create_database_base.py index a9b4865068..f29ae166ba 100644 --- a/src/oci/database/models/create_database_base.py +++ b/src/oci/database/models/create_database_base.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_database_details.py b/src/oci/database/models/create_database_details.py index 5462806e48..c807b2a1c4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_database_from_another_database_details.py b/src/oci/database/models/create_database_from_another_database_details.py index 4b4ffe39e1..30eb7d64f3 100644 --- a/src/oci/database/models/create_database_from_another_database_details.py +++ b/src/oci/database/models/create_database_from_another_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_database_from_backup.py b/src/oci/database/models/create_database_from_backup.py index 6f4eaccf37..c3d5b64acf 100644 --- a/src/oci/database/models/create_database_from_backup.py +++ b/src/oci/database/models/create_database_from_backup.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_database_base import CreateDatabaseBase 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 f078b22a9a..b0dfbce803 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_database_from_db_system_details.py b/src/oci/database/models/create_database_from_db_system_details.py index 700620ef7a..f2fdc21737 100644 --- a/src/oci/database/models/create_database_from_db_system_details.py +++ b/src/oci/database/models/create_database_from_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_database_software_image_details.py b/src/oci/database/models/create_database_software_image_details.py index afd3a2aacf..e0ac5f2ba5 100644 --- a/src/oci/database/models/create_database_software_image_details.py +++ b/src/oci/database/models/create_database_software_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_db_home_base.py b/src/oci/database/models/create_db_home_base.py index 5a350a8251..e54d4b5b19 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_db_home_details.py b/src/oci/database/models/create_db_home_details.py index fb61ff6fc7..4bf9bb1f25 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 be65d8a239..18645bc0db 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_db_home_from_database_details.py b/src/oci/database/models/create_db_home_from_database_details.py index c78870ba1e..94dc304e16 100644 --- a/src/oci/database/models/create_db_home_from_database_details.py +++ b/src/oci/database/models/create_db_home_from_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_db_home_from_db_system_details.py b/src/oci/database/models/create_db_home_from_db_system_details.py index 2f2eb20fc8..c03db66768 100644 --- a/src/oci/database/models/create_db_home_from_db_system_details.py +++ b/src/oci/database/models/create_db_home_from_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 db221e72cb..37705cd96c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_db_home_base import CreateDbHomeBase 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 5451b70fc3..30961de61c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_db_home_base import CreateDbHomeBase diff --git a/src/oci/database/models/create_db_home_with_db_system_id_from_database_details.py b/src/oci/database/models/create_db_home_with_db_system_id_from_database_details.py index ceb2a7a562..46766811fd 100644 --- a/src/oci/database/models/create_db_home_with_db_system_id_from_database_details.py +++ b/src/oci/database/models/create_db_home_with_db_system_id_from_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_db_home_base import CreateDbHomeBase 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 d13f4b88a4..f6254969c5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_db_home_base import CreateDbHomeBase diff --git a/src/oci/database/models/create_db_home_with_vm_cluster_id_from_backup_details.py b/src/oci/database/models/create_db_home_with_vm_cluster_id_from_backup_details.py index 07c8d44458..6cc5e4c93b 100644 --- a/src/oci/database/models/create_db_home_with_vm_cluster_id_from_backup_details.py +++ b/src/oci/database/models/create_db_home_with_vm_cluster_id_from_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_db_home_base import CreateDbHomeBase diff --git a/src/oci/database/models/create_exadata_infrastructure_details.py b/src/oci/database/models/create_exadata_infrastructure_details.py index 2016f8499e..236b51eed1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 d32587f514..1e79b1d8db 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_external_container_database_details.py b/src/oci/database/models/create_external_container_database_details.py index 6f58801c9a..48df3c7e49 100644 --- a/src/oci/database/models/create_external_container_database_details.py +++ b/src/oci/database/models/create_external_container_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_external_database_connector_details.py b/src/oci/database/models/create_external_database_connector_details.py index d34a30a0b0..076fdb85d5 100644 --- a/src/oci/database/models/create_external_database_connector_details.py +++ b/src/oci/database/models/create_external_database_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_external_database_details_base.py b/src/oci/database/models/create_external_database_details_base.py index b483def937..421f5defe5 100644 --- a/src/oci/database/models/create_external_database_details_base.py +++ b/src/oci/database/models/create_external_database_details_base.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_external_macs_connector_details.py b/src/oci/database/models/create_external_macs_connector_details.py index 98f94f8d66..ef6f052b77 100644 --- a/src/oci/database/models/create_external_macs_connector_details.py +++ b/src/oci/database/models/create_external_macs_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_external_database_connector_details import CreateExternalDatabaseConnectorDetails diff --git a/src/oci/database/models/create_external_non_container_database_details.py b/src/oci/database/models/create_external_non_container_database_details.py index c631f50518..0e3b7c8005 100644 --- a/src/oci/database/models/create_external_non_container_database_details.py +++ b/src/oci/database/models/create_external_non_container_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_external_pluggable_database_details.py b/src/oci/database/models/create_external_pluggable_database_details.py index c91d718b94..d539e2d277 100644 --- a/src/oci/database/models/create_external_pluggable_database_details.py +++ b/src/oci/database/models/create_external_pluggable_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_key_store_details.py b/src/oci/database/models/create_key_store_details.py index d566ad3767..5301ff55e0 100644 --- a/src/oci/database/models/create_key_store_details.py +++ b/src/oci/database/models/create_key_store_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/create_new_database_details.py b/src/oci/database/models/create_new_database_details.py index 84ec06bb75..ce368d5b44 100644 --- a/src/oci/database/models/create_new_database_details.py +++ b/src/oci/database/models/create_new_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_database_base import CreateDatabaseBase 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 f7d7d34184..8bb70ea0e5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_backup_destination_details import CreateBackupDestinationDetails diff --git a/src/oci/database/models/create_pluggable_database_details.py b/src/oci/database/models/create_pluggable_database_details.py index cef88e2bc8..ee3131b7c2 100644 --- a/src/oci/database/models/create_pluggable_database_details.py +++ b/src/oci/database/models/create_pluggable_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 9bec5f47fa..57f14b1923 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_backup_destination_details import CreateBackupDestinationDetails diff --git a/src/oci/database/models/create_refreshable_autonomous_database_clone_details.py b/src/oci/database/models/create_refreshable_autonomous_database_clone_details.py index 8607dc08a5..888c9d5c89 100644 --- a/src/oci/database/models/create_refreshable_autonomous_database_clone_details.py +++ b/src/oci/database/models/create_refreshable_autonomous_database_clone_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_autonomous_database_base import CreateAutonomousDatabaseBase diff --git a/src/oci/database/models/create_vm_cluster_details.py b/src/oci/database/models/create_vm_cluster_details.py index 6690e7bcb7..94132c44a2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/customer_contact.py b/src/oci/database/models/customer_contact.py index 06b16ace3b..cc440f7955 100644 --- a/src/oci/database/models/customer_contact.py +++ b/src/oci/database/models/customer_contact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/data_guard_association.py b/src/oci/database/models/data_guard_association.py index 1400393dd4..79cea6504c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -160,6 +160,10 @@ def __init__(self, **kwargs): The value to assign to the time_created property of this DataGuardAssociation. :type time_created: datetime + :param is_active_data_guard_enabled: + The value to assign to the is_active_data_guard_enabled property of this DataGuardAssociation. + :type is_active_data_guard_enabled: bool + """ self.swagger_types = { 'id': 'str', @@ -176,7 +180,8 @@ def __init__(self, **kwargs): 'apply_rate': 'str', 'protection_mode': 'str', 'transport_type': 'str', - 'time_created': 'datetime' + 'time_created': 'datetime', + 'is_active_data_guard_enabled': 'bool' } self.attribute_map = { @@ -194,7 +199,8 @@ def __init__(self, **kwargs): 'apply_rate': 'applyRate', 'protection_mode': 'protectionMode', 'transport_type': 'transportType', - 'time_created': 'timeCreated' + 'time_created': 'timeCreated', + 'is_active_data_guard_enabled': 'isActiveDataGuardEnabled' } self._id = None @@ -212,6 +218,7 @@ def __init__(self, **kwargs): self._protection_mode = None self._transport_type = None self._time_created = None + self._is_active_data_guard_enabled = None @property def id(self): @@ -655,6 +662,30 @@ def time_created(self, time_created): """ self._time_created = time_created + @property + def is_active_data_guard_enabled(self): + """ + Gets the is_active_data_guard_enabled of this DataGuardAssociation. + True if active Data Guard is enabled. + + + :return: The is_active_data_guard_enabled of this DataGuardAssociation. + :rtype: bool + """ + return self._is_active_data_guard_enabled + + @is_active_data_guard_enabled.setter + def is_active_data_guard_enabled(self, is_active_data_guard_enabled): + """ + Sets the is_active_data_guard_enabled of this DataGuardAssociation. + True if active Data Guard is enabled. + + + :param is_active_data_guard_enabled: The is_active_data_guard_enabled of this DataGuardAssociation. + :type: bool + """ + self._is_active_data_guard_enabled = is_active_data_guard_enabled + def __repr__(self): return formatted_flat_dict(self) diff --git a/src/oci/database/models/data_guard_association_summary.py b/src/oci/database/models/data_guard_association_summary.py index 32ecc5dfd7..f236bb0d64 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -172,6 +172,10 @@ def __init__(self, **kwargs): The value to assign to the time_created property of this DataGuardAssociationSummary. :type time_created: datetime + :param is_active_data_guard_enabled: + The value to assign to the is_active_data_guard_enabled property of this DataGuardAssociationSummary. + :type is_active_data_guard_enabled: bool + """ self.swagger_types = { 'id': 'str', @@ -188,7 +192,8 @@ def __init__(self, **kwargs): 'apply_rate': 'str', 'protection_mode': 'str', 'transport_type': 'str', - 'time_created': 'datetime' + 'time_created': 'datetime', + 'is_active_data_guard_enabled': 'bool' } self.attribute_map = { @@ -206,7 +211,8 @@ def __init__(self, **kwargs): 'apply_rate': 'applyRate', 'protection_mode': 'protectionMode', 'transport_type': 'transportType', - 'time_created': 'timeCreated' + 'time_created': 'timeCreated', + 'is_active_data_guard_enabled': 'isActiveDataGuardEnabled' } self._id = None @@ -224,6 +230,7 @@ def __init__(self, **kwargs): self._protection_mode = None self._transport_type = None self._time_created = None + self._is_active_data_guard_enabled = None @property def id(self): @@ -667,6 +674,30 @@ def time_created(self, time_created): """ self._time_created = time_created + @property + def is_active_data_guard_enabled(self): + """ + Gets the is_active_data_guard_enabled of this DataGuardAssociationSummary. + True if active Data Guard is enabled. + + + :return: The is_active_data_guard_enabled of this DataGuardAssociationSummary. + :rtype: bool + """ + return self._is_active_data_guard_enabled + + @is_active_data_guard_enabled.setter + def is_active_data_guard_enabled(self, is_active_data_guard_enabled): + """ + Sets the is_active_data_guard_enabled of this DataGuardAssociationSummary. + True if active Data Guard is enabled. + + + :param is_active_data_guard_enabled: The is_active_data_guard_enabled of this DataGuardAssociationSummary. + :type: bool + """ + self._is_active_data_guard_enabled = is_active_data_guard_enabled + def __repr__(self): return formatted_flat_dict(self) diff --git a/src/oci/database/models/database.py b/src/oci/database/models/database.py index 5e6f34b715..61fdf6f7ae 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/database_connection_credentails_by_name.py b/src/oci/database/models/database_connection_credentails_by_name.py index 771d8ea633..26356659e6 100644 --- a/src/oci/database/models/database_connection_credentails_by_name.py +++ b/src/oci/database/models/database_connection_credentails_by_name.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_connection_credentials import DatabaseConnectionCredentials diff --git a/src/oci/database/models/database_connection_credentials.py b/src/oci/database/models/database_connection_credentials.py index 51107dab31..92b8892189 100644 --- a/src/oci/database/models/database_connection_credentials.py +++ b/src/oci/database/models/database_connection_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/database_connection_credentials_by_details.py b/src/oci/database/models/database_connection_credentials_by_details.py index f9c3117fb0..1709457b9d 100644 --- a/src/oci/database/models/database_connection_credentials_by_details.py +++ b/src/oci/database/models/database_connection_credentials_by_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_connection_credentials import DatabaseConnectionCredentials diff --git a/src/oci/database/models/database_connection_string.py b/src/oci/database/models/database_connection_string.py index fe9ed04ecf..01c01c30b7 100644 --- a/src/oci/database/models/database_connection_string.py +++ b/src/oci/database/models/database_connection_string.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/database_connection_string_profile.py b/src/oci/database/models/database_connection_string_profile.py index b26c301993..72e2b4eb22 100644 --- a/src/oci/database/models/database_connection_string_profile.py +++ b/src/oci/database/models/database_connection_string_profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/database_connection_strings.py b/src/oci/database/models/database_connection_strings.py index 166953dfc9..6b629bd68c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/database_credential_details.py b/src/oci/database/models/database_credential_details.py index 862f2a580d..187ff39d8b 100644 --- a/src/oci/database/models/database_credential_details.py +++ b/src/oci/database/models/database_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/database_management_config.py b/src/oci/database/models/database_management_config.py index 219143d631..96408f62d6 100644 --- a/src/oci/database/models/database_management_config.py +++ b/src/oci/database/models/database_management_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/database_software_image.py b/src/oci/database/models/database_software_image.py index 8184eaa070..64ee13b712 100644 --- a/src/oci/database/models/database_software_image.py +++ b/src/oci/database/models/database_software_image.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/database_software_image_summary.py b/src/oci/database/models/database_software_image_summary.py index b4d1b6f2f9..cb84395682 100644 --- a/src/oci/database/models/database_software_image_summary.py +++ b/src/oci/database/models/database_software_image_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/database_summary.py b/src/oci/database/models/database_summary.py index 7d7fd9d401..7ebad5d3d5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/database_upgrade_history_entry.py b/src/oci/database/models/database_upgrade_history_entry.py index d747454f0f..669f1c4f6d 100644 --- a/src/oci/database/models/database_upgrade_history_entry.py +++ b/src/oci/database/models/database_upgrade_history_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/database_upgrade_history_entry_summary.py b/src/oci/database/models/database_upgrade_history_entry_summary.py index 885737cbf9..4c7b16b8af 100644 --- a/src/oci/database/models/database_upgrade_history_entry_summary.py +++ b/src/oci/database/models/database_upgrade_history_entry_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/database_upgrade_source_base.py b/src/oci/database/models/database_upgrade_source_base.py index 832fbb4279..362df68da4 100644 --- a/src/oci/database/models/database_upgrade_source_base.py +++ b/src/oci/database/models/database_upgrade_source_base.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/database_upgrade_with_database_software_image_details.py b/src/oci/database/models/database_upgrade_with_database_software_image_details.py index 443c0a5e32..48383f8781 100644 --- a/src/oci/database/models/database_upgrade_with_database_software_image_details.py +++ b/src/oci/database/models/database_upgrade_with_database_software_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_upgrade_source_base import DatabaseUpgradeSourceBase diff --git a/src/oci/database/models/database_upgrade_with_db_home_details.py b/src/oci/database/models/database_upgrade_with_db_home_details.py index 6637964407..e107729ace 100644 --- a/src/oci/database/models/database_upgrade_with_db_home_details.py +++ b/src/oci/database/models/database_upgrade_with_db_home_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_upgrade_source_base import DatabaseUpgradeSourceBase diff --git a/src/oci/database/models/database_upgrade_with_db_version_details.py b/src/oci/database/models/database_upgrade_with_db_version_details.py index 78ddbd64f1..d03d0eed40 100644 --- a/src/oci/database/models/database_upgrade_with_db_version_details.py +++ b/src/oci/database/models/database_upgrade_with_db_version_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_upgrade_source_base import DatabaseUpgradeSourceBase diff --git a/src/oci/database/models/day_of_week.py b/src/oci/database/models/day_of_week.py index f0ec02cba7..ab1dd42b0e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/db_backup_config.py b/src/oci/database/models/db_backup_config.py index 61095fe4b1..957685f741 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/db_home.py b/src/oci/database/models/db_home.py index c398f35bf2..18d58e442c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/db_home_from_agent_resource_id.py b/src/oci/database/models/db_home_from_agent_resource_id.py index 42ebeb178a..5fb1acfcf6 100644 --- a/src/oci/database/models/db_home_from_agent_resource_id.py +++ b/src/oci/database/models/db_home_from_agent_resource_id.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/db_home_summary.py b/src/oci/database/models/db_home_summary.py index 3cea6fe964..3cfeff4f6a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/db_iorm_config.py b/src/oci/database/models/db_iorm_config.py index 0b661bb87e..e3f48182f6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 7537e169a5..ea81d76d06 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/db_node.py b/src/oci/database/models/db_node.py index 6e682d901b..f208300877 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/db_node_summary.py b/src/oci/database/models/db_node_summary.py index 65b84b240e..9da7d8a3c3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/db_server.py b/src/oci/database/models/db_server.py index 15e9d13ca1..3b92910435 100644 --- a/src/oci/database/models/db_server.py +++ b/src/oci/database/models/db_server.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/db_server_details.py b/src/oci/database/models/db_server_details.py index 0f081feb4b..49a1c26392 100644 --- a/src/oci/database/models/db_server_details.py +++ b/src/oci/database/models/db_server_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/db_server_summary.py b/src/oci/database/models/db_server_summary.py index bed6e49e4c..4ae78f1d32 100644 --- a/src/oci/database/models/db_server_summary.py +++ b/src/oci/database/models/db_server_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/db_system.py b/src/oci/database/models/db_system.py index 1d29f6e8dd..0804ec8588 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/db_system_options.py b/src/oci/database/models/db_system_options.py index a32c23b88a..d9d837deac 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/db_system_shape_summary.py b/src/oci/database/models/db_system_shape_summary.py index 039c16bb05..d9d16adae4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/db_system_summary.py b/src/oci/database/models/db_system_summary.py index dee86c394b..f2a054b756 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/db_version_summary.py b/src/oci/database/models/db_version_summary.py index ad534c6599..8e53cf16cb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/deregister_autonomous_database_data_safe_details.py b/src/oci/database/models/deregister_autonomous_database_data_safe_details.py index 4c06aa61ef..eea0b4e325 100644 --- a/src/oci/database/models/deregister_autonomous_database_data_safe_details.py +++ b/src/oci/database/models/deregister_autonomous_database_data_safe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/enable_database_management_details.py b/src/oci/database/models/enable_database_management_details.py index 1179fe4481..16a6948049 100644 --- a/src/oci/database/models/enable_database_management_details.py +++ b/src/oci/database/models/enable_database_management_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/enable_external_container_database_database_management_details.py b/src/oci/database/models/enable_external_container_database_database_management_details.py index f98e9f3c59..ea673a0256 100644 --- a/src/oci/database/models/enable_external_container_database_database_management_details.py +++ b/src/oci/database/models/enable_external_container_database_database_management_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/enable_external_database_management_details_base.py b/src/oci/database/models/enable_external_database_management_details_base.py index 2634dbb346..dd1d898084 100644 --- a/src/oci/database/models/enable_external_database_management_details_base.py +++ b/src/oci/database/models/enable_external_database_management_details_base.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/enable_external_database_operations_insights_details_base.py b/src/oci/database/models/enable_external_database_operations_insights_details_base.py index e8a5867f78..ea3242e902 100644 --- a/src/oci/database/models/enable_external_database_operations_insights_details_base.py +++ b/src/oci/database/models/enable_external_database_operations_insights_details_base.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/enable_external_non_container_database_database_management_details.py b/src/oci/database/models/enable_external_non_container_database_database_management_details.py index d94ba5f07d..23c10422dd 100644 --- a/src/oci/database/models/enable_external_non_container_database_database_management_details.py +++ b/src/oci/database/models/enable_external_non_container_database_database_management_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/enable_external_non_container_database_operations_insights_details.py b/src/oci/database/models/enable_external_non_container_database_operations_insights_details.py index 6d5afc0261..c7ec5e8adb 100644 --- a/src/oci/database/models/enable_external_non_container_database_operations_insights_details.py +++ b/src/oci/database/models/enable_external_non_container_database_operations_insights_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/enable_external_pluggable_database_database_management_details.py b/src/oci/database/models/enable_external_pluggable_database_database_management_details.py index 51cd85ef26..fe5648bfb5 100644 --- a/src/oci/database/models/enable_external_pluggable_database_database_management_details.py +++ b/src/oci/database/models/enable_external_pluggable_database_database_management_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/enable_external_pluggable_database_operations_insights_details.py b/src/oci/database/models/enable_external_pluggable_database_operations_insights_details.py index 8497dbef69..72aeb823fc 100644 --- a/src/oci/database/models/enable_external_pluggable_database_operations_insights_details.py +++ b/src/oci/database/models/enable_external_pluggable_database_operations_insights_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/exadata_db_system_migration.py b/src/oci/database/models/exadata_db_system_migration.py index 443ad475cf..2c2c2b1284 100644 --- a/src/oci/database/models/exadata_db_system_migration.py +++ b/src/oci/database/models/exadata_db_system_migration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/exadata_db_system_migration_summary.py b/src/oci/database/models/exadata_db_system_migration_summary.py index 21104046d4..ac65946b10 100644 --- a/src/oci/database/models/exadata_db_system_migration_summary.py +++ b/src/oci/database/models/exadata_db_system_migration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/exadata_infrastructure.py b/src/oci/database/models/exadata_infrastructure.py index f6703521f2..330bd41ed2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/exadata_infrastructure_contact.py b/src/oci/database/models/exadata_infrastructure_contact.py index 7994637e99..713e2d69b2 100644 --- a/src/oci/database/models/exadata_infrastructure_contact.py +++ b/src/oci/database/models/exadata_infrastructure_contact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/exadata_infrastructure_summary.py b/src/oci/database/models/exadata_infrastructure_summary.py index c43ef36247..dc428ddf05 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/exadata_iorm_config.py b/src/oci/database/models/exadata_iorm_config.py index 2f7030d9ee..9a83179aee 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 30924742d3..491555441c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/external_backup_job.py b/src/oci/database/models/external_backup_job.py index 9ddc6a12f5..027f8d4463 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/external_container_database.py b/src/oci/database/models/external_container_database.py index bf253a2e61..3d299db81c 100644 --- a/src/oci/database/models/external_container_database.py +++ b/src/oci/database/models/external_container_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/external_container_database_summary.py b/src/oci/database/models/external_container_database_summary.py index a311e98194..1c10007a44 100644 --- a/src/oci/database/models/external_container_database_summary.py +++ b/src/oci/database/models/external_container_database_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/external_database_base.py b/src/oci/database/models/external_database_base.py index 88498587a7..1c3d29c7ad 100644 --- a/src/oci/database/models/external_database_base.py +++ b/src/oci/database/models/external_database_base.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/external_database_connector.py b/src/oci/database/models/external_database_connector.py index 73ef0c4bcd..c50618bb95 100644 --- a/src/oci/database/models/external_database_connector.py +++ b/src/oci/database/models/external_database_connector.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/external_database_connector_summary.py b/src/oci/database/models/external_database_connector_summary.py index 24c33c9a4a..c03f2c2bc5 100644 --- a/src/oci/database/models/external_database_connector_summary.py +++ b/src/oci/database/models/external_database_connector_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/external_macs_connector.py b/src/oci/database/models/external_macs_connector.py index 48be59e5e7..dee70cf7aa 100644 --- a/src/oci/database/models/external_macs_connector.py +++ b/src/oci/database/models/external_macs_connector.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .external_database_connector import ExternalDatabaseConnector diff --git a/src/oci/database/models/external_macs_connector_summary.py b/src/oci/database/models/external_macs_connector_summary.py index 3e54e18841..59991092e0 100644 --- a/src/oci/database/models/external_macs_connector_summary.py +++ b/src/oci/database/models/external_macs_connector_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .external_database_connector_summary import ExternalDatabaseConnectorSummary diff --git a/src/oci/database/models/external_non_container_database.py b/src/oci/database/models/external_non_container_database.py index 91bc6af889..7d2d6e3542 100644 --- a/src/oci/database/models/external_non_container_database.py +++ b/src/oci/database/models/external_non_container_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/external_non_container_database_summary.py b/src/oci/database/models/external_non_container_database_summary.py index 3bd906b9cc..f44785f45e 100644 --- a/src/oci/database/models/external_non_container_database_summary.py +++ b/src/oci/database/models/external_non_container_database_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/external_pluggable_database.py b/src/oci/database/models/external_pluggable_database.py index 7ac1f376f3..4ac595cdfc 100644 --- a/src/oci/database/models/external_pluggable_database.py +++ b/src/oci/database/models/external_pluggable_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/external_pluggable_database_summary.py b/src/oci/database/models/external_pluggable_database_summary.py index ae1808f7d3..79243b2a22 100644 --- a/src/oci/database/models/external_pluggable_database_summary.py +++ b/src/oci/database/models/external_pluggable_database_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 947de6fe2b..8c34a2d7ef 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/flex_component_collection.py b/src/oci/database/models/flex_component_collection.py index c417d0622b..f66c61a6f6 100644 --- a/src/oci/database/models/flex_component_collection.py +++ b/src/oci/database/models/flex_component_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/flex_component_summary.py b/src/oci/database/models/flex_component_summary.py index 23277a2540..2fea7b7409 100644 --- a/src/oci/database/models/flex_component_summary.py +++ b/src/oci/database/models/flex_component_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 35ad1015e9..32536c6b1e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/generate_recommended_network_details.py b/src/oci/database/models/generate_recommended_network_details.py index 03206a662f..9c1cb08729 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/gi_version_summary.py b/src/oci/database/models/gi_version_summary.py index 3eacb29135..f28693b7f1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 7fb7996443..4290b20632 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/key_store.py b/src/oci/database/models/key_store.py index b0924b6b37..3084ae515e 100644 --- a/src/oci/database/models/key_store.py +++ b/src/oci/database/models/key_store.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/key_store_associated_database_details.py b/src/oci/database/models/key_store_associated_database_details.py index b7f235e129..b7dd80f4f2 100644 --- a/src/oci/database/models/key_store_associated_database_details.py +++ b/src/oci/database/models/key_store_associated_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/key_store_summary.py b/src/oci/database/models/key_store_summary.py index 506ee6ada5..7b5007e656 100644 --- a/src/oci/database/models/key_store_summary.py +++ b/src/oci/database/models/key_store_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/key_store_type_details.py b/src/oci/database/models/key_store_type_details.py index 92e8e585d4..59ce6fac02 100644 --- a/src/oci/database/models/key_store_type_details.py +++ b/src/oci/database/models/key_store_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/key_store_type_from_oracle_key_vault_details.py b/src/oci/database/models/key_store_type_from_oracle_key_vault_details.py index bf34fea9e4..030ca92b2c 100644 --- a/src/oci/database/models/key_store_type_from_oracle_key_vault_details.py +++ b/src/oci/database/models/key_store_type_from_oracle_key_vault_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .key_store_type_details import KeyStoreTypeDetails 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 05b370ba25..0fd28e665d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/launch_db_system_base.py b/src/oci/database/models/launch_db_system_base.py index 706681d271..df255e107d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/launch_db_system_details.py b/src/oci/database/models/launch_db_system_details.py index 20395ae11a..08890e7f76 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .launch_db_system_base import LaunchDbSystemBase 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 6ba973a0e6..b1d7c39d2d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .launch_db_system_base import LaunchDbSystemBase diff --git a/src/oci/database/models/launch_db_system_from_database_details.py b/src/oci/database/models/launch_db_system_from_database_details.py index 882485b28d..9666fcd05a 100644 --- a/src/oci/database/models/launch_db_system_from_database_details.py +++ b/src/oci/database/models/launch_db_system_from_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .launch_db_system_base import LaunchDbSystemBase diff --git a/src/oci/database/models/launch_db_system_from_db_system_details.py b/src/oci/database/models/launch_db_system_from_db_system_details.py index e59734568a..f73d464c30 100644 --- a/src/oci/database/models/launch_db_system_from_db_system_details.py +++ b/src/oci/database/models/launch_db_system_from_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .launch_db_system_base import LaunchDbSystemBase diff --git a/src/oci/database/models/local_clone_pluggable_database_details.py b/src/oci/database/models/local_clone_pluggable_database_details.py index ebb27e71ba..6fd8d2c17f 100644 --- a/src/oci/database/models/local_clone_pluggable_database_details.py +++ b/src/oci/database/models/local_clone_pluggable_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/maintenance_run.py b/src/oci/database/models/maintenance_run.py index 6a37be76e3..ceb47b4536 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/maintenance_run_summary.py b/src/oci/database/models/maintenance_run_summary.py index 9b8cfd096f..27fc5d7dac 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/maintenance_window.py b/src/oci/database/models/maintenance_window.py index ba4e0a448d..ae147957a9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/migrate_vault_key_details.py b/src/oci/database/models/migrate_vault_key_details.py index 333a1bf20c..b21b052525 100644 --- a/src/oci/database/models/migrate_vault_key_details.py +++ b/src/oci/database/models/migrate_vault_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/modify_database_management_details.py b/src/oci/database/models/modify_database_management_details.py index 2e8c69f302..a15fe0ecb5 100644 --- a/src/oci/database/models/modify_database_management_details.py +++ b/src/oci/database/models/modify_database_management_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/month.py b/src/oci/database/models/month.py index ad546efbbd..ef9859fac2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/mount_type_details.py b/src/oci/database/models/mount_type_details.py index 6136f8bc2b..cc8a1366d8 100644 --- a/src/oci/database/models/mount_type_details.py +++ b/src/oci/database/models/mount_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/node_details.py b/src/oci/database/models/node_details.py index 8781126f37..e426dd03b4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/ocp_us.py b/src/oci/database/models/ocp_us.py index 720bcafdad..7c6d4d5331 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/operations_insights_config.py b/src/oci/database/models/operations_insights_config.py index 2961b83001..f72de81203 100644 --- a/src/oci/database/models/operations_insights_config.py +++ b/src/oci/database/models/operations_insights_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/patch.py b/src/oci/database/models/patch.py index 5b42d08317..baff3298db 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/patch_details.py b/src/oci/database/models/patch_details.py index 8a4dfa9033..5d36a69fb5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/patch_history_entry.py b/src/oci/database/models/patch_history_entry.py index ecfbdf0ecd..5b95a65340 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/patch_history_entry_summary.py b/src/oci/database/models/patch_history_entry_summary.py index 8a0d2e8005..e9f98c55b3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/patch_summary.py b/src/oci/database/models/patch_summary.py index 3d80dc4cb7..c95a421af1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/pdb_conversion_history_entry.py b/src/oci/database/models/pdb_conversion_history_entry.py index a815fba97c..e8a5b027b4 100644 --- a/src/oci/database/models/pdb_conversion_history_entry.py +++ b/src/oci/database/models/pdb_conversion_history_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/pdb_conversion_history_entry_summary.py b/src/oci/database/models/pdb_conversion_history_entry_summary.py index 606ff14389..e7a49da799 100644 --- a/src/oci/database/models/pdb_conversion_history_entry_summary.py +++ b/src/oci/database/models/pdb_conversion_history_entry_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/pdb_conversion_to_new_database_details.py b/src/oci/database/models/pdb_conversion_to_new_database_details.py index 8797b9c76d..e045574716 100644 --- a/src/oci/database/models/pdb_conversion_to_new_database_details.py +++ b/src/oci/database/models/pdb_conversion_to_new_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .convert_to_pdb_target_base import ConvertToPdbTargetBase diff --git a/src/oci/database/models/peer_autonomous_container_database_backup_config.py b/src/oci/database/models/peer_autonomous_container_database_backup_config.py index 08fd89444a..20bb1cafdb 100644 --- a/src/oci/database/models/peer_autonomous_container_database_backup_config.py +++ b/src/oci/database/models/peer_autonomous_container_database_backup_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/pluggable_database.py b/src/oci/database/models/pluggable_database.py index c9164df388..d6311282be 100644 --- a/src/oci/database/models/pluggable_database.py +++ b/src/oci/database/models/pluggable_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/pluggable_database_connection_strings.py b/src/oci/database/models/pluggable_database_connection_strings.py index f6b4902c78..82e0835057 100644 --- a/src/oci/database/models/pluggable_database_connection_strings.py +++ b/src/oci/database/models/pluggable_database_connection_strings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/pluggable_database_summary.py b/src/oci/database/models/pluggable_database_summary.py index 44c0e87d6f..b9b7da841f 100644 --- a/src/oci/database/models/pluggable_database_summary.py +++ b/src/oci/database/models/pluggable_database_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/register_autonomous_database_data_safe_details.py b/src/oci/database/models/register_autonomous_database_data_safe_details.py index 62dae292a1..79d1585f55 100644 --- a/src/oci/database/models/register_autonomous_database_data_safe_details.py +++ b/src/oci/database/models/register_autonomous_database_data_safe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 001db2737c..2fac534d5b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/remote_clone_pluggable_database_details.py b/src/oci/database/models/remote_clone_pluggable_database_details.py index 5e7442992b..e6763df78a 100644 --- a/src/oci/database/models/remote_clone_pluggable_database_details.py +++ b/src/oci/database/models/remote_clone_pluggable_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/remove_virtual_machine_from_vm_cluster_details.py b/src/oci/database/models/remove_virtual_machine_from_vm_cluster_details.py index 071c60b030..a6d1001745 100644 --- a/src/oci/database/models/remove_virtual_machine_from_vm_cluster_details.py +++ b/src/oci/database/models/remove_virtual_machine_from_vm_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/restore_autonomous_database_details.py b/src/oci/database/models/restore_autonomous_database_details.py index f1351ce635..5e39efbdcb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/restore_database_details.py b/src/oci/database/models/restore_database_details.py index a4e1b25a9b..62886fb191 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/scan_details.py b/src/oci/database/models/scan_details.py index b4e985431d..aa3e877322 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/scheduled_operation_details.py b/src/oci/database/models/scheduled_operation_details.py index 721afccc99..a9e2f3bf1d 100644 --- a/src/oci/database/models/scheduled_operation_details.py +++ b/src/oci/database/models/scheduled_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/self_mount_details.py b/src/oci/database/models/self_mount_details.py index 0c43945e70..7a4279b2db 100644 --- a/src/oci/database/models/self_mount_details.py +++ b/src/oci/database/models/self_mount_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .mount_type_details import MountTypeDetails 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 49ec0c2b03..ca3f44e225 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update.py b/src/oci/database/models/update.py index 0092e20df6..42ece98cc5 100644 --- a/src/oci/database/models/update.py +++ b/src/oci/database/models/update.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 ac8b6073ee..87b5af7b55 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_autonomous_database_details.py b/src/oci/database/models/update_autonomous_database_details.py index dd2d1bc40e..785867ab89 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 ceaeffb93d..3b6f5f62e6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 876bcb30ce..7c8c2e80d7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_autonomous_vm_cluster_details.py b/src/oci/database/models/update_autonomous_vm_cluster_details.py index 224b7c28c2..bed5f7e57c 100644 --- a/src/oci/database/models/update_autonomous_vm_cluster_details.py +++ b/src/oci/database/models/update_autonomous_vm_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_backup_destination_details.py b/src/oci/database/models/update_backup_destination_details.py index d81ecf0913..86f5ffa63b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_cloud_autonomous_vm_cluster_details.py b/src/oci/database/models/update_cloud_autonomous_vm_cluster_details.py index a26f8a23a1..5b054c6ac3 100644 --- a/src/oci/database/models/update_cloud_autonomous_vm_cluster_details.py +++ b/src/oci/database/models/update_cloud_autonomous_vm_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_cloud_exadata_infrastructure_details.py b/src/oci/database/models/update_cloud_exadata_infrastructure_details.py index ada09cca9d..0b42dc0de2 100644 --- a/src/oci/database/models/update_cloud_exadata_infrastructure_details.py +++ b/src/oci/database/models/update_cloud_exadata_infrastructure_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_cloud_vm_cluster_details.py b/src/oci/database/models/update_cloud_vm_cluster_details.py index 625d6c646c..886b32418d 100644 --- a/src/oci/database/models/update_cloud_vm_cluster_details.py +++ b/src/oci/database/models/update_cloud_vm_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_data_guard_association_details.py b/src/oci/database/models/update_data_guard_association_details.py index 7c5c0d1c44..f86605d376 100644 --- a/src/oci/database/models/update_data_guard_association_details.py +++ b/src/oci/database/models/update_data_guard_association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -58,22 +58,29 @@ def __init__(self, **kwargs): Allowed values for this property are: "SYNC", "ASYNC", "FASTSYNC" :type transport_type: str + :param is_active_data_guard_enabled: + The value to assign to the is_active_data_guard_enabled property of this UpdateDataGuardAssociationDetails. + :type is_active_data_guard_enabled: bool + """ self.swagger_types = { 'database_admin_password': 'str', 'protection_mode': 'str', - 'transport_type': 'str' + 'transport_type': 'str', + 'is_active_data_guard_enabled': 'bool' } self.attribute_map = { 'database_admin_password': 'databaseAdminPassword', 'protection_mode': 'protectionMode', - 'transport_type': 'transportType' + 'transport_type': 'transportType', + 'is_active_data_guard_enabled': 'isActiveDataGuardEnabled' } self._database_admin_password = None self._protection_mode = None self._transport_type = None + self._is_active_data_guard_enabled = None @property def database_admin_password(self): @@ -213,6 +220,30 @@ def transport_type(self, transport_type): ) self._transport_type = transport_type + @property + def is_active_data_guard_enabled(self): + """ + Gets the is_active_data_guard_enabled of this UpdateDataGuardAssociationDetails. + True if active Data Guard is enabled. Update this parameter to change the Data Guard setting. + + + :return: The is_active_data_guard_enabled of this UpdateDataGuardAssociationDetails. + :rtype: bool + """ + return self._is_active_data_guard_enabled + + @is_active_data_guard_enabled.setter + def is_active_data_guard_enabled(self, is_active_data_guard_enabled): + """ + Sets the is_active_data_guard_enabled of this UpdateDataGuardAssociationDetails. + True if active Data Guard is enabled. Update this parameter to change the Data Guard setting. + + + :param is_active_data_guard_enabled: The is_active_data_guard_enabled of this UpdateDataGuardAssociationDetails. + :type: bool + """ + self._is_active_data_guard_enabled = is_active_data_guard_enabled + def __repr__(self): return formatted_flat_dict(self) diff --git a/src/oci/database/models/update_database_details.py b/src/oci/database/models/update_database_details.py index 97e5337b01..6b510b0d4d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_database_software_image_details.py b/src/oci/database/models/update_database_software_image_details.py index b7e9a861bf..5c4d28344b 100644 --- a/src/oci/database/models/update_database_software_image_details.py +++ b/src/oci/database/models/update_database_software_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_db_home_details.py b/src/oci/database/models/update_db_home_details.py index 77a7f33403..a2899dc7c9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_db_system_details.py b/src/oci/database/models/update_db_system_details.py index dfe85039e0..5227c40046 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_details.py b/src/oci/database/models/update_details.py index d88a5fafae..c35ecdb699 100644 --- a/src/oci/database/models/update_details.py +++ b/src/oci/database/models/update_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_exadata_infrastructure_details.py b/src/oci/database/models/update_exadata_infrastructure_details.py index 1148af7cfc..3b8353dee7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_external_container_database_details.py b/src/oci/database/models/update_external_container_database_details.py index 08feb2c60f..97fe9b7bf1 100644 --- a/src/oci/database/models/update_external_container_database_details.py +++ b/src/oci/database/models/update_external_container_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_external_database_connector_details.py b/src/oci/database/models/update_external_database_connector_details.py index d9aa25cb59..87c6155fb6 100644 --- a/src/oci/database/models/update_external_database_connector_details.py +++ b/src/oci/database/models/update_external_database_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_external_database_details_base.py b/src/oci/database/models/update_external_database_details_base.py index 004247203d..1b1f9d5639 100644 --- a/src/oci/database/models/update_external_database_details_base.py +++ b/src/oci/database/models/update_external_database_details_base.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_external_macs_connector_details.py b/src/oci/database/models/update_external_macs_connector_details.py index 5b0d71d2f2..ed34fe215a 100644 --- a/src/oci/database/models/update_external_macs_connector_details.py +++ b/src/oci/database/models/update_external_macs_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_external_database_connector_details import UpdateExternalDatabaseConnectorDetails diff --git a/src/oci/database/models/update_external_non_container_database_details.py b/src/oci/database/models/update_external_non_container_database_details.py index 43fa1a1103..e90dc9a577 100644 --- a/src/oci/database/models/update_external_non_container_database_details.py +++ b/src/oci/database/models/update_external_non_container_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_external_pluggable_database_details.py b/src/oci/database/models/update_external_pluggable_database_details.py index cc50713f8a..a24f0047e0 100644 --- a/src/oci/database/models/update_external_pluggable_database_details.py +++ b/src/oci/database/models/update_external_pluggable_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_history_entry.py b/src/oci/database/models/update_history_entry.py index 28e202fd09..dfd496ef63 100644 --- a/src/oci/database/models/update_history_entry.py +++ b/src/oci/database/models/update_history_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_history_entry_summary.py b/src/oci/database/models/update_history_entry_summary.py index 0a9dc4fc7f..086c551c4c 100644 --- a/src/oci/database/models/update_history_entry_summary.py +++ b/src/oci/database/models/update_history_entry_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_key_store_details.py b/src/oci/database/models/update_key_store_details.py index ab5b567ba8..b5fdb74c1e 100644 --- a/src/oci/database/models/update_key_store_details.py +++ b/src/oci/database/models/update_key_store_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_maintenance_run_details.py b/src/oci/database/models/update_maintenance_run_details.py index 11a944608e..3090157fa6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_pluggable_database_details.py b/src/oci/database/models/update_pluggable_database_details.py index de82f46ee5..63b0a7e30f 100644 --- a/src/oci/database/models/update_pluggable_database_details.py +++ b/src/oci/database/models/update_pluggable_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_summary.py b/src/oci/database/models/update_summary.py index ca5fcbdce3..cf24dcc58f 100644 --- a/src/oci/database/models/update_summary.py +++ b/src/oci/database/models/update_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/update_vm_cluster_details.py b/src/oci/database/models/update_vm_cluster_details.py index 4da7aeee26..370db6d780 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 1919337706..693bbe6bf7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/upgrade_database_details.py b/src/oci/database/models/upgrade_database_details.py index 3de42175dc..2f26d8dcc7 100644 --- a/src/oci/database/models/upgrade_database_details.py +++ b/src/oci/database/models/upgrade_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/vm_cluster.py b/src/oci/database/models/vm_cluster.py index c582ee18f1..86f7a6f893 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/vm_cluster_network.py b/src/oci/database/models/vm_cluster_network.py index 889c3907ed..8e980a12a3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/vm_cluster_network_details.py b/src/oci/database/models/vm_cluster_network_details.py index 5bf377f398..b840441290 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/vm_cluster_network_summary.py b/src/oci/database/models/vm_cluster_network_summary.py index 1f3725a3b8..0ac8a39f59 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/vm_cluster_summary.py b/src/oci/database/models/vm_cluster_summary.py index 2f1716febd..ef06b23e8c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/vm_cluster_update.py b/src/oci/database/models/vm_cluster_update.py index ec15753ba9..8930925126 100644 --- a/src/oci/database/models/vm_cluster_update.py +++ b/src/oci/database/models/vm_cluster_update.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/vm_cluster_update_details.py b/src/oci/database/models/vm_cluster_update_details.py index 504c04b3f0..8975617d49 100644 --- a/src/oci/database/models/vm_cluster_update_details.py +++ b/src/oci/database/models/vm_cluster_update_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/vm_cluster_update_history_entry.py b/src/oci/database/models/vm_cluster_update_history_entry.py index ff5f997160..57f176a2ce 100644 --- a/src/oci/database/models/vm_cluster_update_history_entry.py +++ b/src/oci/database/models/vm_cluster_update_history_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/vm_cluster_update_history_entry_summary.py b/src/oci/database/models/vm_cluster_update_history_entry_summary.py index 2f2c75cb65..adf3105624 100644 --- a/src/oci/database/models/vm_cluster_update_history_entry_summary.py +++ b/src/oci/database/models/vm_cluster_update_history_entry_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/vm_cluster_update_summary.py b/src/oci/database/models/vm_cluster_update_summary.py index c5111b5de2..8b7b37da3c 100644 --- a/src/oci/database/models/vm_cluster_update_summary.py +++ b/src/oci/database/models/vm_cluster_update_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/vm_network_details.py b/src/oci/database/models/vm_network_details.py index bd15d1871e..be3f7a86e9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database/models/workload_type.py b/src/oci/database/models/workload_type.py index 43cfa316e1..97db8b1b25 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/__init__.py b/src/oci/database_management/__init__.py index d976f5fa8a..70a3a9890d 100644 --- a/src/oci/database_management/__init__.py +++ b/src/oci/database_management/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/database_management/db_management_client.py b/src/oci/database_management/db_management_client.py index 0bb4d5a760..47f56ac75d 100644 --- a/src/oci/database_management/db_management_client.py +++ b/src/oci/database_management/db_management_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -66,6 +66,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -96,6 +100,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("db_management", config, signer, database_management_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -133,6 +139,10 @@ def add_managed_database_to_managed_database_group(self, managed_database_group_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -144,6 +154,7 @@ def add_managed_database_to_managed_database_group(self, managed_database_group_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -239,6 +250,10 @@ def change_database_parameters(self, managed_database_id, change_database_parame To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.UpdateDatabaseParametersResult` :rtype: :class:`~oci.response.Response` @@ -250,6 +265,7 @@ def change_database_parameters(self, managed_database_id, change_database_parame # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -342,6 +358,10 @@ def change_db_management_private_endpoint_compartment(self, db_management_privat To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -353,6 +373,7 @@ def change_db_management_private_endpoint_compartment(self, db_management_privat # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -445,6 +466,10 @@ def change_job_compartment(self, job_id, change_job_compartment_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -456,6 +481,7 @@ def change_job_compartment(self, job_id, change_job_compartment_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -552,6 +578,10 @@ def change_managed_database_group_compartment(self, managed_database_group_id, c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -563,6 +593,7 @@ def change_managed_database_group_compartment(self, managed_database_group_id, c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -643,6 +674,10 @@ def create_db_management_private_endpoint(self, create_db_management_private_end To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.DbManagementPrivateEndpoint` :rtype: :class:`~oci.response.Response` @@ -654,6 +689,7 @@ def create_db_management_private_endpoint(self, create_db_management_private_end # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -724,6 +760,10 @@ def create_job(self, create_job_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.Job` :rtype: :class:`~oci.response.Response` @@ -735,6 +775,7 @@ def create_job(self, create_job_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -804,6 +845,10 @@ def create_managed_database_group(self, create_managed_database_group_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.ManagedDatabaseGroup` :rtype: :class:`~oci.response.Response` @@ -815,6 +860,7 @@ def create_managed_database_group(self, create_managed_database_group_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -885,6 +931,10 @@ def delete_db_management_private_endpoint(self, db_management_private_endpoint_i To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -896,6 +946,7 @@ def delete_db_management_private_endpoint(self, db_management_private_endpoint_i # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -971,6 +1022,10 @@ def delete_job(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -982,6 +1037,7 @@ def delete_job(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1060,6 +1116,10 @@ def delete_managed_database_group(self, managed_database_group_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1071,6 +1131,7 @@ def delete_managed_database_group(self, managed_database_group_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1183,6 +1244,10 @@ def get_awr_db_report(self, managed_database_id, awr_db_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.AwrDbReport` :rtype: :class:`~oci.response.Response` @@ -1194,6 +1259,7 @@ def get_awr_db_report(self, managed_database_id, awr_db_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "inst_nums", "begin_sn_id_greater_than_or_equal_to", @@ -1344,6 +1410,10 @@ def get_awr_db_sql_report(self, managed_database_id, awr_db_id, sql_id, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.AwrDbSqlReport` :rtype: :class:`~oci.response.Response` @@ -1355,6 +1425,7 @@ def get_awr_db_sql_report(self, managed_database_id, awr_db_id, sql_id, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "inst_num", "begin_sn_id_greater_than_or_equal_to", @@ -1467,6 +1538,10 @@ def get_cluster_cache_metric(self, managed_database_id, start_time, end_time, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.ClusterCacheMetric` :rtype: :class:`~oci.response.Response` @@ -1478,6 +1553,7 @@ def get_cluster_cache_metric(self, managed_database_id, start_time, end_time, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1588,6 +1664,10 @@ def get_database_fleet_health_metrics(self, compare_baseline_time, compare_targe To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.DatabaseFleetHealthMetrics` :rtype: :class:`~oci.response.Response` @@ -1599,6 +1679,7 @@ def get_database_fleet_health_metrics(self, compare_baseline_time, compare_targe # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "managed_database_group_id", @@ -1696,6 +1777,10 @@ def get_database_home_metrics(self, managed_database_id, start_time, end_time, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.DatabaseHomeMetrics` :rtype: :class:`~oci.response.Response` @@ -1707,6 +1792,7 @@ def get_database_home_metrics(self, managed_database_id, start_time, end_time, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1774,6 +1860,10 @@ def get_db_management_private_endpoint(self, db_management_private_endpoint_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.DbManagementPrivateEndpoint` :rtype: :class:`~oci.response.Response` @@ -1785,6 +1875,7 @@ def get_db_management_private_endpoint(self, db_management_private_endpoint_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1853,6 +1944,10 @@ def get_job(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.Job` :rtype: :class:`~oci.response.Response` @@ -1864,6 +1959,7 @@ def get_job(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1932,6 +2028,10 @@ def get_job_execution(self, job_execution_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.JobExecution` :rtype: :class:`~oci.response.Response` @@ -1943,6 +2043,7 @@ def get_job_execution(self, job_execution_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2011,6 +2112,10 @@ def get_job_run(self, job_run_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.JobRun` :rtype: :class:`~oci.response.Response` @@ -2022,6 +2127,7 @@ def get_job_run(self, job_run_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2092,6 +2198,10 @@ def get_managed_database(self, managed_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.ManagedDatabase` :rtype: :class:`~oci.response.Response` @@ -2103,6 +2213,7 @@ def get_managed_database(self, managed_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2173,6 +2284,10 @@ def get_managed_database_group(self, managed_database_group_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.ManagedDatabaseGroup` :rtype: :class:`~oci.response.Response` @@ -2184,6 +2299,7 @@ def get_managed_database_group(self, managed_database_group_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2278,6 +2394,10 @@ def get_pdb_metrics(self, managed_database_id, start_time, end_time, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.PdbMetrics` :rtype: :class:`~oci.response.Response` @@ -2289,6 +2409,7 @@ def get_pdb_metrics(self, managed_database_id, start_time, end_time, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "compartment_id", @@ -2383,6 +2504,10 @@ def get_user(self, managed_database_id, user_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.User` :rtype: :class:`~oci.response.Response` @@ -2394,6 +2519,7 @@ def get_user(self, managed_database_id, user_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2465,6 +2591,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -2476,6 +2606,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2568,6 +2699,10 @@ def list_associated_databases(self, db_management_private_endpoint_id, compartme To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.AssociatedDatabaseCollection` :rtype: :class:`~oci.response.Response` @@ -2579,6 +2714,7 @@ def list_associated_databases(self, db_management_private_endpoint_id, compartme # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -2727,6 +2863,10 @@ def list_awr_db_snapshots(self, managed_database_id, awr_db_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.AwrDbSnapshotCollection` :rtype: :class:`~oci.response.Response` @@ -2738,6 +2878,7 @@ def list_awr_db_snapshots(self, managed_database_id, awr_db_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "inst_num", "begin_sn_id_greater_than_or_equal_to", @@ -2885,6 +3026,10 @@ def list_awr_dbs(self, managed_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.AwrDbCollection` :rtype: :class:`~oci.response.Response` @@ -2896,6 +3041,7 @@ def list_awr_dbs(self, managed_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "time_greater_than_or_equal_to", @@ -3027,6 +3173,10 @@ def list_consumer_group_privileges(self, managed_database_id, user_name, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.ConsumerGroupPrivilegeCollection` :rtype: :class:`~oci.response.Response` @@ -3038,6 +3188,7 @@ def list_consumer_group_privileges(self, managed_database_id, user_name, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "name", @@ -3163,6 +3314,10 @@ def list_data_access_containers(self, managed_database_id, user_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.DataAccessContainerCollection` :rtype: :class:`~oci.response.Response` @@ -3174,6 +3329,7 @@ def list_data_access_containers(self, managed_database_id, user_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "name", @@ -3300,6 +3456,10 @@ def list_database_parameters(self, managed_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.DatabaseParametersCollection` :rtype: :class:`~oci.response.Response` @@ -3311,6 +3471,7 @@ def list_database_parameters(self, managed_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "source", @@ -3453,6 +3614,10 @@ def list_db_management_private_endpoints(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.DbManagementPrivateEndpointCollection` :rtype: :class:`~oci.response.Response` @@ -3464,6 +3629,7 @@ def list_db_management_private_endpoints(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "vcn_id", @@ -3613,6 +3779,10 @@ def list_job_executions(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.JobExecutionCollection` :rtype: :class:`~oci.response.Response` @@ -3624,6 +3794,7 @@ def list_job_executions(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "id", @@ -3769,6 +3940,10 @@ def list_job_runs(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.JobRunCollection` :rtype: :class:`~oci.response.Response` @@ -3780,6 +3955,7 @@ def list_job_runs(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "id", @@ -3922,6 +4098,10 @@ def list_jobs(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.JobCollection` :rtype: :class:`~oci.response.Response` @@ -3933,6 +4113,7 @@ def list_jobs(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "id", @@ -4070,6 +4251,10 @@ def list_managed_database_groups(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.ManagedDatabaseGroupCollection` :rtype: :class:`~oci.response.Response` @@ -4081,6 +4266,7 @@ def list_managed_database_groups(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "id", @@ -4221,6 +4407,10 @@ def list_managed_databases(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.ManagedDatabaseCollection` :rtype: :class:`~oci.response.Response` @@ -4232,6 +4422,7 @@ def list_managed_databases(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "id", @@ -4365,6 +4556,10 @@ def list_object_privileges(self, managed_database_id, user_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.ObjectPrivilegeCollection` :rtype: :class:`~oci.response.Response` @@ -4376,6 +4571,7 @@ def list_object_privileges(self, managed_database_id, user_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "name", @@ -4501,6 +4697,10 @@ def list_proxied_for_users(self, managed_database_id, user_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.ProxiedForUserCollection` :rtype: :class:`~oci.response.Response` @@ -4512,6 +4712,7 @@ def list_proxied_for_users(self, managed_database_id, user_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "name", @@ -4637,6 +4838,10 @@ def list_proxy_users(self, managed_database_id, user_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.ProxyUserCollection` :rtype: :class:`~oci.response.Response` @@ -4648,6 +4853,7 @@ def list_proxy_users(self, managed_database_id, user_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "name", @@ -4773,6 +4979,10 @@ def list_roles(self, managed_database_id, user_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.RoleCollection` :rtype: :class:`~oci.response.Response` @@ -4784,6 +4994,7 @@ def list_roles(self, managed_database_id, user_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "name", @@ -4909,6 +5120,10 @@ def list_system_privileges(self, managed_database_id, user_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.SystemPrivilegeCollection` :rtype: :class:`~oci.response.Response` @@ -4920,6 +5135,7 @@ def list_system_privileges(self, managed_database_id, user_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "name", @@ -5043,6 +5259,10 @@ def list_tablespaces(self, managed_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.TablespaceCollection` :rtype: :class:`~oci.response.Response` @@ -5054,6 +5274,7 @@ def list_tablespaces(self, managed_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "name", @@ -5176,6 +5397,10 @@ def list_users(self, managed_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.UserCollection` :rtype: :class:`~oci.response.Response` @@ -5187,6 +5412,7 @@ def list_users(self, managed_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "name", @@ -5304,6 +5530,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -5315,6 +5545,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -5430,6 +5661,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -5441,6 +5676,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -5571,6 +5807,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.WorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -5582,6 +5822,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "resource_id", "opc_request_id", @@ -5695,6 +5936,10 @@ def remove_managed_database_from_managed_database_group(self, managed_database_g To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5706,6 +5951,7 @@ def remove_managed_database_from_managed_database_group(self, managed_database_g # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -5789,6 +6035,10 @@ def reset_database_parameters(self, managed_database_id, reset_database_paramete To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.UpdateDatabaseParametersResult` :rtype: :class:`~oci.response.Response` @@ -5800,6 +6050,7 @@ def reset_database_parameters(self, managed_database_id, reset_database_paramete # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -5929,6 +6180,10 @@ def summarize_awr_db_cpu_usages(self, managed_database_id, awr_db_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.AwrDbCpuUsageCollection` :rtype: :class:`~oci.response.Response` @@ -5940,6 +6195,7 @@ def summarize_awr_db_cpu_usages(self, managed_database_id, awr_db_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "inst_num", "begin_sn_id_greater_than_or_equal_to", @@ -6115,6 +6371,10 @@ def summarize_awr_db_metrics(self, managed_database_id, awr_db_id, name, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.AwrDbMetricCollection` :rtype: :class:`~oci.response.Response` @@ -6126,6 +6386,7 @@ def summarize_awr_db_metrics(self, managed_database_id, awr_db_id, name, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "inst_num", "begin_sn_id_greater_than_or_equal_to", @@ -6297,6 +6558,10 @@ def summarize_awr_db_parameter_changes(self, managed_database_id, awr_db_id, nam To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.AwrDbParameterChangeCollection` :rtype: :class:`~oci.response.Response` @@ -6308,6 +6573,7 @@ def summarize_awr_db_parameter_changes(self, managed_database_id, awr_db_id, nam # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "inst_num", "begin_sn_id_greater_than_or_equal_to", @@ -6503,6 +6769,10 @@ def summarize_awr_db_parameters(self, managed_database_id, awr_db_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.AwrDbParameterCollection` :rtype: :class:`~oci.response.Response` @@ -6514,6 +6784,7 @@ def summarize_awr_db_parameters(self, managed_database_id, awr_db_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "inst_num", "begin_sn_id_greater_than_or_equal_to", @@ -6692,6 +6963,10 @@ def summarize_awr_db_snapshot_ranges(self, managed_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.AwrDbSnapshotRangeCollection` :rtype: :class:`~oci.response.Response` @@ -6703,6 +6978,7 @@ def summarize_awr_db_snapshot_ranges(self, managed_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "time_greater_than_or_equal_to", @@ -6862,6 +7138,10 @@ def summarize_awr_db_sysstats(self, managed_database_id, awr_db_id, name, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.AwrDbSysstatCollection` :rtype: :class:`~oci.response.Response` @@ -6873,6 +7153,7 @@ def summarize_awr_db_sysstats(self, managed_database_id, awr_db_id, name, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "inst_num", "begin_sn_id_greater_than_or_equal_to", @@ -7038,6 +7319,10 @@ def summarize_awr_db_top_wait_events(self, managed_database_id, awr_db_id, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.AwrDbTopWaitEventCollection` :rtype: :class:`~oci.response.Response` @@ -7049,6 +7334,7 @@ def summarize_awr_db_top_wait_events(self, managed_database_id, awr_db_id, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "inst_num", "begin_sn_id_greater_than_or_equal_to", @@ -7231,6 +7517,10 @@ def summarize_awr_db_wait_event_buckets(self, managed_database_id, awr_db_id, na To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.AwrDbWaitEventBucketCollection` :rtype: :class:`~oci.response.Response` @@ -7242,6 +7532,7 @@ def summarize_awr_db_wait_event_buckets(self, managed_database_id, awr_db_id, na # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "inst_num", "begin_sn_id_greater_than_or_equal_to", @@ -7420,6 +7711,10 @@ def summarize_awr_db_wait_events(self, managed_database_id, awr_db_id, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.AwrDbWaitEventCollection` :rtype: :class:`~oci.response.Response` @@ -7431,6 +7726,7 @@ def summarize_awr_db_wait_events(self, managed_database_id, awr_db_id, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "inst_num", "begin_sn_id_greater_than_or_equal_to", @@ -7592,6 +7888,10 @@ def summarize_job_executions_statuses(self, compartment_id, start_time, end_time To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.JobExecutionsStatusSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -7603,6 +7903,7 @@ def summarize_job_executions_statuses(self, compartment_id, start_time, end_time # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "id", @@ -7706,6 +8007,10 @@ def update_db_management_private_endpoint(self, db_management_private_endpoint_i To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.DbManagementPrivateEndpoint` :rtype: :class:`~oci.response.Response` @@ -7717,6 +8022,7 @@ def update_db_management_private_endpoint(self, db_management_private_endpoint_i # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -7799,6 +8105,10 @@ def update_job(self, job_id, update_job_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.Job` :rtype: :class:`~oci.response.Response` @@ -7810,6 +8120,7 @@ def update_job(self, job_id, update_job_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -7894,6 +8205,10 @@ def update_managed_database_group(self, managed_database_group_id, update_manage To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.ManagedDatabaseGroup` :rtype: :class:`~oci.response.Response` @@ -7905,6 +8220,7 @@ def update_managed_database_group(self, managed_database_group_id, update_manage # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/database_management/db_management_client_composite_operations.py b/src/oci/database_management/db_management_client_composite_operations.py index 4b754f8076..b4ff8de63b 100644 --- a/src/oci/database_management/db_management_client_composite_operations.py +++ b/src/oci/database_management/db_management_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/database_management/models/__init__.py b/src/oci/database_management/models/__init__.py index 6810cfc1ce..fad6c62d33 100644 --- a/src/oci/database_management/models/__init__.py +++ b/src/oci/database_management/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/database_management/models/activity_time_series_metrics.py b/src/oci/database_management/models/activity_time_series_metrics.py index 369ec8b241..26d7e473e5 100644 --- a/src/oci/database_management/models/activity_time_series_metrics.py +++ b/src/oci/database_management/models/activity_time_series_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/add_managed_database_to_managed_database_group_details.py b/src/oci/database_management/models/add_managed_database_to_managed_database_group_details.py index 80a2c76820..0029f35f9d 100644 --- a/src/oci/database_management/models/add_managed_database_to_managed_database_group_details.py +++ b/src/oci/database_management/models/add_managed_database_to_managed_database_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/allowed_parameter_value.py b/src/oci/database_management/models/allowed_parameter_value.py index 8ea1a21457..09ecc69425 100644 --- a/src/oci/database_management/models/allowed_parameter_value.py +++ b/src/oci/database_management/models/allowed_parameter_value.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/associated_database_collection.py b/src/oci/database_management/models/associated_database_collection.py index b977d35b6a..d8adf8348f 100644 --- a/src/oci/database_management/models/associated_database_collection.py +++ b/src/oci/database_management/models/associated_database_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/associated_database_summary.py b/src/oci/database_management/models/associated_database_summary.py index 255cf87395..4b6e1f1af2 100644 --- a/src/oci/database_management/models/associated_database_summary.py +++ b/src/oci/database_management/models/associated_database_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/awr_db_collection.py b/src/oci/database_management/models/awr_db_collection.py index dda1425413..981fa0c30b 100644 --- a/src/oci/database_management/models/awr_db_collection.py +++ b/src/oci/database_management/models/awr_db_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .awr_query_result import AwrQueryResult diff --git a/src/oci/database_management/models/awr_db_cpu_usage_collection.py b/src/oci/database_management/models/awr_db_cpu_usage_collection.py index 83272ab64a..5f2f87a8ca 100644 --- a/src/oci/database_management/models/awr_db_cpu_usage_collection.py +++ b/src/oci/database_management/models/awr_db_cpu_usage_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .awr_query_result import AwrQueryResult diff --git a/src/oci/database_management/models/awr_db_cpu_usage_summary.py b/src/oci/database_management/models/awr_db_cpu_usage_summary.py index 342fab0fce..2380f59c98 100644 --- a/src/oci/database_management/models/awr_db_cpu_usage_summary.py +++ b/src/oci/database_management/models/awr_db_cpu_usage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/awr_db_metric_collection.py b/src/oci/database_management/models/awr_db_metric_collection.py index 5885387af0..a003c1dde6 100644 --- a/src/oci/database_management/models/awr_db_metric_collection.py +++ b/src/oci/database_management/models/awr_db_metric_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .awr_query_result import AwrQueryResult diff --git a/src/oci/database_management/models/awr_db_metric_summary.py b/src/oci/database_management/models/awr_db_metric_summary.py index 924e9cfeaa..8600f6f205 100644 --- a/src/oci/database_management/models/awr_db_metric_summary.py +++ b/src/oci/database_management/models/awr_db_metric_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/awr_db_parameter_change_collection.py b/src/oci/database_management/models/awr_db_parameter_change_collection.py index d77ad8d3d1..f99d1ddbc6 100644 --- a/src/oci/database_management/models/awr_db_parameter_change_collection.py +++ b/src/oci/database_management/models/awr_db_parameter_change_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .awr_query_result import AwrQueryResult diff --git a/src/oci/database_management/models/awr_db_parameter_change_summary.py b/src/oci/database_management/models/awr_db_parameter_change_summary.py index 4ea48b21f5..029288d69a 100644 --- a/src/oci/database_management/models/awr_db_parameter_change_summary.py +++ b/src/oci/database_management/models/awr_db_parameter_change_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/awr_db_parameter_collection.py b/src/oci/database_management/models/awr_db_parameter_collection.py index ca5b8ccf95..3eb452f34b 100644 --- a/src/oci/database_management/models/awr_db_parameter_collection.py +++ b/src/oci/database_management/models/awr_db_parameter_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .awr_query_result import AwrQueryResult diff --git a/src/oci/database_management/models/awr_db_parameter_summary.py b/src/oci/database_management/models/awr_db_parameter_summary.py index f47c45cadf..3d47d64566 100644 --- a/src/oci/database_management/models/awr_db_parameter_summary.py +++ b/src/oci/database_management/models/awr_db_parameter_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/awr_db_report.py b/src/oci/database_management/models/awr_db_report.py index b1c05a0886..a9f1b47907 100644 --- a/src/oci/database_management/models/awr_db_report.py +++ b/src/oci/database_management/models/awr_db_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .awr_query_result import AwrQueryResult diff --git a/src/oci/database_management/models/awr_db_snapshot_collection.py b/src/oci/database_management/models/awr_db_snapshot_collection.py index a9d41147cd..5c483adf54 100644 --- a/src/oci/database_management/models/awr_db_snapshot_collection.py +++ b/src/oci/database_management/models/awr_db_snapshot_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .awr_query_result import AwrQueryResult diff --git a/src/oci/database_management/models/awr_db_snapshot_range_collection.py b/src/oci/database_management/models/awr_db_snapshot_range_collection.py index 5aeb5da069..b0a5d7cc21 100644 --- a/src/oci/database_management/models/awr_db_snapshot_range_collection.py +++ b/src/oci/database_management/models/awr_db_snapshot_range_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .awr_query_result import AwrQueryResult diff --git a/src/oci/database_management/models/awr_db_snapshot_range_summary.py b/src/oci/database_management/models/awr_db_snapshot_range_summary.py index dbbff230a2..01ddaf9323 100644 --- a/src/oci/database_management/models/awr_db_snapshot_range_summary.py +++ b/src/oci/database_management/models/awr_db_snapshot_range_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/awr_db_snapshot_summary.py b/src/oci/database_management/models/awr_db_snapshot_summary.py index 08681ada08..4e8735be36 100644 --- a/src/oci/database_management/models/awr_db_snapshot_summary.py +++ b/src/oci/database_management/models/awr_db_snapshot_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/awr_db_sql_report.py b/src/oci/database_management/models/awr_db_sql_report.py index 3d849d51e5..7447e20a55 100644 --- a/src/oci/database_management/models/awr_db_sql_report.py +++ b/src/oci/database_management/models/awr_db_sql_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .awr_query_result import AwrQueryResult diff --git a/src/oci/database_management/models/awr_db_summary.py b/src/oci/database_management/models/awr_db_summary.py index 62831ece53..47ecdcd5e1 100644 --- a/src/oci/database_management/models/awr_db_summary.py +++ b/src/oci/database_management/models/awr_db_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/awr_db_sysstat_collection.py b/src/oci/database_management/models/awr_db_sysstat_collection.py index a44f5833a6..d8d7cffc24 100644 --- a/src/oci/database_management/models/awr_db_sysstat_collection.py +++ b/src/oci/database_management/models/awr_db_sysstat_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .awr_query_result import AwrQueryResult diff --git a/src/oci/database_management/models/awr_db_sysstat_summary.py b/src/oci/database_management/models/awr_db_sysstat_summary.py index 7c31448773..47134fb310 100644 --- a/src/oci/database_management/models/awr_db_sysstat_summary.py +++ b/src/oci/database_management/models/awr_db_sysstat_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/awr_db_top_wait_event_collection.py b/src/oci/database_management/models/awr_db_top_wait_event_collection.py index a2c413e91c..b745845007 100644 --- a/src/oci/database_management/models/awr_db_top_wait_event_collection.py +++ b/src/oci/database_management/models/awr_db_top_wait_event_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .awr_query_result import AwrQueryResult diff --git a/src/oci/database_management/models/awr_db_top_wait_event_summary.py b/src/oci/database_management/models/awr_db_top_wait_event_summary.py index 10d3d89b4a..247cebe8d9 100644 --- a/src/oci/database_management/models/awr_db_top_wait_event_summary.py +++ b/src/oci/database_management/models/awr_db_top_wait_event_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/awr_db_wait_event_bucket_collection.py b/src/oci/database_management/models/awr_db_wait_event_bucket_collection.py index 8d7c76bba4..7b84b0f82b 100644 --- a/src/oci/database_management/models/awr_db_wait_event_bucket_collection.py +++ b/src/oci/database_management/models/awr_db_wait_event_bucket_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .awr_query_result import AwrQueryResult diff --git a/src/oci/database_management/models/awr_db_wait_event_bucket_summary.py b/src/oci/database_management/models/awr_db_wait_event_bucket_summary.py index 12ffe2ea2c..90c3392f93 100644 --- a/src/oci/database_management/models/awr_db_wait_event_bucket_summary.py +++ b/src/oci/database_management/models/awr_db_wait_event_bucket_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/awr_db_wait_event_collection.py b/src/oci/database_management/models/awr_db_wait_event_collection.py index 4ead05e706..5bc6b18e57 100644 --- a/src/oci/database_management/models/awr_db_wait_event_collection.py +++ b/src/oci/database_management/models/awr_db_wait_event_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .awr_query_result import AwrQueryResult diff --git a/src/oci/database_management/models/awr_db_wait_event_summary.py b/src/oci/database_management/models/awr_db_wait_event_summary.py index 11c03b14a5..5acc8db73d 100644 --- a/src/oci/database_management/models/awr_db_wait_event_summary.py +++ b/src/oci/database_management/models/awr_db_wait_event_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/awr_query_result.py b/src/oci/database_management/models/awr_query_result.py index 42c4363b8d..f3ce3b63de 100644 --- a/src/oci/database_management/models/awr_query_result.py +++ b/src/oci/database_management/models/awr_query_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/change_database_parameter_details.py b/src/oci/database_management/models/change_database_parameter_details.py index 26f85ae804..13416ae4e2 100644 --- a/src/oci/database_management/models/change_database_parameter_details.py +++ b/src/oci/database_management/models/change_database_parameter_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/change_database_parameters_details.py b/src/oci/database_management/models/change_database_parameters_details.py index c9edfe5ef6..d1d6890b3e 100644 --- a/src/oci/database_management/models/change_database_parameters_details.py +++ b/src/oci/database_management/models/change_database_parameters_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/change_db_management_private_endpoint_compartment_details.py b/src/oci/database_management/models/change_db_management_private_endpoint_compartment_details.py index 7d72473337..53e0e168b7 100644 --- a/src/oci/database_management/models/change_db_management_private_endpoint_compartment_details.py +++ b/src/oci/database_management/models/change_db_management_private_endpoint_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/change_job_compartment_details.py b/src/oci/database_management/models/change_job_compartment_details.py index 9ef999e408..393fac2c89 100644 --- a/src/oci/database_management/models/change_job_compartment_details.py +++ b/src/oci/database_management/models/change_job_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/change_managed_database_group_compartment_details.py b/src/oci/database_management/models/change_managed_database_group_compartment_details.py index 00a4910f1e..7b83a13de5 100644 --- a/src/oci/database_management/models/change_managed_database_group_compartment_details.py +++ b/src/oci/database_management/models/change_managed_database_group_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/child_database.py b/src/oci/database_management/models/child_database.py index 73ed3f037e..51aa4ffb5e 100644 --- a/src/oci/database_management/models/child_database.py +++ b/src/oci/database_management/models/child_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/clone_sql_tuning_task_details.py b/src/oci/database_management/models/clone_sql_tuning_task_details.py index 083a7415b4..2b73cf787c 100644 --- a/src/oci/database_management/models/clone_sql_tuning_task_details.py +++ b/src/oci/database_management/models/clone_sql_tuning_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/cluster_cache_metric.py b/src/oci/database_management/models/cluster_cache_metric.py index 44182189db..3a8bd9441f 100644 --- a/src/oci/database_management/models/cluster_cache_metric.py +++ b/src/oci/database_management/models/cluster_cache_metric.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/consumer_group_privilege_collection.py b/src/oci/database_management/models/consumer_group_privilege_collection.py index 5aaff9e463..02e64436d3 100644 --- a/src/oci/database_management/models/consumer_group_privilege_collection.py +++ b/src/oci/database_management/models/consumer_group_privilege_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/consumer_group_privilege_summary.py b/src/oci/database_management/models/consumer_group_privilege_summary.py index 7c140d6263..eb8d12a737 100644 --- a/src/oci/database_management/models/consumer_group_privilege_summary.py +++ b/src/oci/database_management/models/consumer_group_privilege_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/cpu_utilization_aggregate_metrics.py b/src/oci/database_management/models/cpu_utilization_aggregate_metrics.py index f9ee0e4b11..8f493158ec 100644 --- a/src/oci/database_management/models/cpu_utilization_aggregate_metrics.py +++ b/src/oci/database_management/models/cpu_utilization_aggregate_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/create_db_management_private_endpoint_details.py b/src/oci/database_management/models/create_db_management_private_endpoint_details.py index 6f2a691d60..d368a60527 100644 --- a/src/oci/database_management/models/create_db_management_private_endpoint_details.py +++ b/src/oci/database_management/models/create_db_management_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/create_job_details.py b/src/oci/database_management/models/create_job_details.py index 39a7e9f4cf..f292c083d1 100644 --- a/src/oci/database_management/models/create_job_details.py +++ b/src/oci/database_management/models/create_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/create_managed_database_group_details.py b/src/oci/database_management/models/create_managed_database_group_details.py index 3d484a94d4..7aa3e9b6c7 100644 --- a/src/oci/database_management/models/create_managed_database_group_details.py +++ b/src/oci/database_management/models/create_managed_database_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/create_sql_job_details.py b/src/oci/database_management/models/create_sql_job_details.py index 88ab2263b1..839e8efa15 100644 --- a/src/oci/database_management/models/create_sql_job_details.py +++ b/src/oci/database_management/models/create_sql_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_job_details import CreateJobDetails diff --git a/src/oci/database_management/models/data_access_container_collection.py b/src/oci/database_management/models/data_access_container_collection.py index 0ef2dfc86e..06213189fe 100644 --- a/src/oci/database_management/models/data_access_container_collection.py +++ b/src/oci/database_management/models/data_access_container_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/data_access_container_summary.py b/src/oci/database_management/models/data_access_container_summary.py index 0d11447b15..73e251e5a7 100644 --- a/src/oci/database_management/models/data_access_container_summary.py +++ b/src/oci/database_management/models/data_access_container_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/database_credentials.py b/src/oci/database_management/models/database_credentials.py index cf3c6b7e43..362f474d08 100644 --- a/src/oci/database_management/models/database_credentials.py +++ b/src/oci/database_management/models/database_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/database_fleet_health_metrics.py b/src/oci/database_management/models/database_fleet_health_metrics.py index d5d7380a43..d7ff47ceb2 100644 --- a/src/oci/database_management/models/database_fleet_health_metrics.py +++ b/src/oci/database_management/models/database_fleet_health_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/database_home_metric_definition.py b/src/oci/database_management/models/database_home_metric_definition.py index bfe82db1e8..cb2faa727d 100644 --- a/src/oci/database_management/models/database_home_metric_definition.py +++ b/src/oci/database_management/models/database_home_metric_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/database_home_metrics.py b/src/oci/database_management/models/database_home_metrics.py index 2c11e3972c..9ed9c94356 100644 --- a/src/oci/database_management/models/database_home_metrics.py +++ b/src/oci/database_management/models/database_home_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/database_instance_home_metrics_definition.py b/src/oci/database_management/models/database_instance_home_metrics_definition.py index 5e3b00af9b..300ce43e37 100644 --- a/src/oci/database_management/models/database_instance_home_metrics_definition.py +++ b/src/oci/database_management/models/database_instance_home_metrics_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/database_io_aggregate_metrics.py b/src/oci/database_management/models/database_io_aggregate_metrics.py index 245368d9d7..e5c111aab0 100644 --- a/src/oci/database_management/models/database_io_aggregate_metrics.py +++ b/src/oci/database_management/models/database_io_aggregate_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/database_parameter_summary.py b/src/oci/database_management/models/database_parameter_summary.py index 5627e66ddd..4c9ce2c443 100644 --- a/src/oci/database_management/models/database_parameter_summary.py +++ b/src/oci/database_management/models/database_parameter_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/database_parameter_update_status.py b/src/oci/database_management/models/database_parameter_update_status.py index d73acd7ae7..cfa40b176e 100644 --- a/src/oci/database_management/models/database_parameter_update_status.py +++ b/src/oci/database_management/models/database_parameter_update_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/database_parameters_collection.py b/src/oci/database_management/models/database_parameters_collection.py index 6e87d19fc5..0ca1e98e40 100644 --- a/src/oci/database_management/models/database_parameters_collection.py +++ b/src/oci/database_management/models/database_parameters_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/database_storage_aggregate_metrics.py b/src/oci/database_management/models/database_storage_aggregate_metrics.py index 4d75b29a4a..da9df4db68 100644 --- a/src/oci/database_management/models/database_storage_aggregate_metrics.py +++ b/src/oci/database_management/models/database_storage_aggregate_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/database_time_aggregate_metrics.py b/src/oci/database_management/models/database_time_aggregate_metrics.py index 3bd81d664b..5ac8304967 100644 --- a/src/oci/database_management/models/database_time_aggregate_metrics.py +++ b/src/oci/database_management/models/database_time_aggregate_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/database_usage_metrics.py b/src/oci/database_management/models/database_usage_metrics.py index 5a7608537c..333a749ae3 100644 --- a/src/oci/database_management/models/database_usage_metrics.py +++ b/src/oci/database_management/models/database_usage_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/datafile.py b/src/oci/database_management/models/datafile.py index 2f92270e16..d8220fa793 100644 --- a/src/oci/database_management/models/datafile.py +++ b/src/oci/database_management/models/datafile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/db_management_private_endpoint.py b/src/oci/database_management/models/db_management_private_endpoint.py index 5840fc9813..072691ee69 100644 --- a/src/oci/database_management/models/db_management_private_endpoint.py +++ b/src/oci/database_management/models/db_management_private_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/db_management_private_endpoint_collection.py b/src/oci/database_management/models/db_management_private_endpoint_collection.py index 183cc71125..ae07d5bf31 100644 --- a/src/oci/database_management/models/db_management_private_endpoint_collection.py +++ b/src/oci/database_management/models/db_management_private_endpoint_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/db_management_private_endpoint_summary.py b/src/oci/database_management/models/db_management_private_endpoint_summary.py index 1ac5c503eb..662c8d672d 100644 --- a/src/oci/database_management/models/db_management_private_endpoint_summary.py +++ b/src/oci/database_management/models/db_management_private_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/drop_sql_tuning_task_details.py b/src/oci/database_management/models/drop_sql_tuning_task_details.py index f232a42c73..a953c79a81 100644 --- a/src/oci/database_management/models/drop_sql_tuning_task_details.py +++ b/src/oci/database_management/models/drop_sql_tuning_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/execution_plan_stats_comparision.py b/src/oci/database_management/models/execution_plan_stats_comparision.py index 81e39bc806..d846d1a3f4 100644 --- a/src/oci/database_management/models/execution_plan_stats_comparision.py +++ b/src/oci/database_management/models/execution_plan_stats_comparision.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/failed_connections_aggregate_metrics.py b/src/oci/database_management/models/failed_connections_aggregate_metrics.py index 3c41961c18..e63e5d2d88 100644 --- a/src/oci/database_management/models/failed_connections_aggregate_metrics.py +++ b/src/oci/database_management/models/failed_connections_aggregate_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/fleet_metric_definition.py b/src/oci/database_management/models/fleet_metric_definition.py index 202af8924f..805e1f4f3f 100644 --- a/src/oci/database_management/models/fleet_metric_definition.py +++ b/src/oci/database_management/models/fleet_metric_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/fleet_metric_summary_definition.py b/src/oci/database_management/models/fleet_metric_summary_definition.py index e20c76f619..a8cf8eb45f 100644 --- a/src/oci/database_management/models/fleet_metric_summary_definition.py +++ b/src/oci/database_management/models/fleet_metric_summary_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/fleet_status_by_category.py b/src/oci/database_management/models/fleet_status_by_category.py index c87d1505b6..85877f03d5 100644 --- a/src/oci/database_management/models/fleet_status_by_category.py +++ b/src/oci/database_management/models/fleet_status_by_category.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/fleet_summary.py b/src/oci/database_management/models/fleet_summary.py index 2e95fa9c17..9fdd29630c 100644 --- a/src/oci/database_management/models/fleet_summary.py +++ b/src/oci/database_management/models/fleet_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/instance_details.py b/src/oci/database_management/models/instance_details.py index 84e6b4d2be..e70d4f9e29 100644 --- a/src/oci/database_management/models/instance_details.py +++ b/src/oci/database_management/models/instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/job.py b/src/oci/database_management/models/job.py index 7572a491ee..47fbd59a3b 100644 --- a/src/oci/database_management/models/job.py +++ b/src/oci/database_management/models/job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/job_collection.py b/src/oci/database_management/models/job_collection.py index 8b692c7b55..222df2d3e7 100644 --- a/src/oci/database_management/models/job_collection.py +++ b/src/oci/database_management/models/job_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/job_database.py b/src/oci/database_management/models/job_database.py index 0738246f26..345e443ab8 100644 --- a/src/oci/database_management/models/job_database.py +++ b/src/oci/database_management/models/job_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/job_execution.py b/src/oci/database_management/models/job_execution.py index 22261a7b08..e6a84f2e3b 100644 --- a/src/oci/database_management/models/job_execution.py +++ b/src/oci/database_management/models/job_execution.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/job_execution_collection.py b/src/oci/database_management/models/job_execution_collection.py index a68f69289d..731b993e4c 100644 --- a/src/oci/database_management/models/job_execution_collection.py +++ b/src/oci/database_management/models/job_execution_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/job_execution_result_details.py b/src/oci/database_management/models/job_execution_result_details.py index 353c529c0e..335bb61681 100644 --- a/src/oci/database_management/models/job_execution_result_details.py +++ b/src/oci/database_management/models/job_execution_result_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/job_execution_result_location.py b/src/oci/database_management/models/job_execution_result_location.py index d84058ffac..fe51012102 100644 --- a/src/oci/database_management/models/job_execution_result_location.py +++ b/src/oci/database_management/models/job_execution_result_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/job_execution_summary.py b/src/oci/database_management/models/job_execution_summary.py index e0abd79494..8c01cdeee5 100644 --- a/src/oci/database_management/models/job_execution_summary.py +++ b/src/oci/database_management/models/job_execution_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/job_executions_status_summary.py b/src/oci/database_management/models/job_executions_status_summary.py index 85a337be04..2f545ecbd7 100644 --- a/src/oci/database_management/models/job_executions_status_summary.py +++ b/src/oci/database_management/models/job_executions_status_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/job_executions_status_summary_collection.py b/src/oci/database_management/models/job_executions_status_summary_collection.py index 3adabdbb22..5e71f5fa00 100644 --- a/src/oci/database_management/models/job_executions_status_summary_collection.py +++ b/src/oci/database_management/models/job_executions_status_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/job_run.py b/src/oci/database_management/models/job_run.py index 60ed24e307..e6b3295463 100644 --- a/src/oci/database_management/models/job_run.py +++ b/src/oci/database_management/models/job_run.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/job_run_collection.py b/src/oci/database_management/models/job_run_collection.py index 30ac8c0bd0..806cfdb141 100644 --- a/src/oci/database_management/models/job_run_collection.py +++ b/src/oci/database_management/models/job_run_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/job_run_summary.py b/src/oci/database_management/models/job_run_summary.py index 1cf4eab618..12e360d14e 100644 --- a/src/oci/database_management/models/job_run_summary.py +++ b/src/oci/database_management/models/job_run_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/job_schedule_details.py b/src/oci/database_management/models/job_schedule_details.py index 2bb0e2f185..8f3ffb4f8c 100644 --- a/src/oci/database_management/models/job_schedule_details.py +++ b/src/oci/database_management/models/job_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/job_summary.py b/src/oci/database_management/models/job_summary.py index 0b73756281..97b9367b06 100644 --- a/src/oci/database_management/models/job_summary.py +++ b/src/oci/database_management/models/job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/managed_database.py b/src/oci/database_management/models/managed_database.py index 1aa6aeab7e..cfb2166f88 100644 --- a/src/oci/database_management/models/managed_database.py +++ b/src/oci/database_management/models/managed_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/managed_database_collection.py b/src/oci/database_management/models/managed_database_collection.py index 2daea61917..6a7c045f74 100644 --- a/src/oci/database_management/models/managed_database_collection.py +++ b/src/oci/database_management/models/managed_database_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/managed_database_group.py b/src/oci/database_management/models/managed_database_group.py index a759ba5700..d35c1b0a31 100644 --- a/src/oci/database_management/models/managed_database_group.py +++ b/src/oci/database_management/models/managed_database_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/managed_database_group_collection.py b/src/oci/database_management/models/managed_database_group_collection.py index bacdc57d97..a0b80bd666 100644 --- a/src/oci/database_management/models/managed_database_group_collection.py +++ b/src/oci/database_management/models/managed_database_group_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/managed_database_group_summary.py b/src/oci/database_management/models/managed_database_group_summary.py index 312942c7eb..63922d070a 100644 --- a/src/oci/database_management/models/managed_database_group_summary.py +++ b/src/oci/database_management/models/managed_database_group_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/managed_database_summary.py b/src/oci/database_management/models/managed_database_summary.py index 4f9991a891..5517cb6e3d 100644 --- a/src/oci/database_management/models/managed_database_summary.py +++ b/src/oci/database_management/models/managed_database_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/memory_aggregate_metrics.py b/src/oci/database_management/models/memory_aggregate_metrics.py index 19af14f119..1a940a1b3e 100644 --- a/src/oci/database_management/models/memory_aggregate_metrics.py +++ b/src/oci/database_management/models/memory_aggregate_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/metric_data_point.py b/src/oci/database_management/models/metric_data_point.py index 8ec04e966a..b64b06102a 100644 --- a/src/oci/database_management/models/metric_data_point.py +++ b/src/oci/database_management/models/metric_data_point.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/metric_dimension_definition.py b/src/oci/database_management/models/metric_dimension_definition.py index 5c1c23cea8..5ec905245b 100644 --- a/src/oci/database_management/models/metric_dimension_definition.py +++ b/src/oci/database_management/models/metric_dimension_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/object_privilege_collection.py b/src/oci/database_management/models/object_privilege_collection.py index 95cbbcb028..eeb9d9498c 100644 --- a/src/oci/database_management/models/object_privilege_collection.py +++ b/src/oci/database_management/models/object_privilege_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/object_privilege_summary.py b/src/oci/database_management/models/object_privilege_summary.py index ad10070d58..0de8eb88ce 100644 --- a/src/oci/database_management/models/object_privilege_summary.py +++ b/src/oci/database_management/models/object_privilege_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/object_storage_job_execution_result_details.py b/src/oci/database_management/models/object_storage_job_execution_result_details.py index cac241c6d2..b8ece0571f 100644 --- a/src/oci/database_management/models/object_storage_job_execution_result_details.py +++ b/src/oci/database_management/models/object_storage_job_execution_result_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .job_execution_result_details import JobExecutionResultDetails diff --git a/src/oci/database_management/models/object_storage_job_execution_result_location.py b/src/oci/database_management/models/object_storage_job_execution_result_location.py index 7d02cbaa2c..65dd21381f 100644 --- a/src/oci/database_management/models/object_storage_job_execution_result_location.py +++ b/src/oci/database_management/models/object_storage_job_execution_result_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .job_execution_result_location import JobExecutionResultLocation diff --git a/src/oci/database_management/models/parent_group.py b/src/oci/database_management/models/parent_group.py index 106015403e..e6aece1aee 100644 --- a/src/oci/database_management/models/parent_group.py +++ b/src/oci/database_management/models/parent_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/pdb_metrics.py b/src/oci/database_management/models/pdb_metrics.py index b8c039f65d..13953389ab 100644 --- a/src/oci/database_management/models/pdb_metrics.py +++ b/src/oci/database_management/models/pdb_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/pdb_status_details.py b/src/oci/database_management/models/pdb_status_details.py index 2805f64b86..db62f067fa 100644 --- a/src/oci/database_management/models/pdb_status_details.py +++ b/src/oci/database_management/models/pdb_status_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/proxied_for_user_collection.py b/src/oci/database_management/models/proxied_for_user_collection.py index 04f2bb2e2c..21a7b7a6fd 100644 --- a/src/oci/database_management/models/proxied_for_user_collection.py +++ b/src/oci/database_management/models/proxied_for_user_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/proxied_for_user_summary.py b/src/oci/database_management/models/proxied_for_user_summary.py index f336a903a8..49d6da588d 100644 --- a/src/oci/database_management/models/proxied_for_user_summary.py +++ b/src/oci/database_management/models/proxied_for_user_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/proxy_user_collection.py b/src/oci/database_management/models/proxy_user_collection.py index 9972461f52..3da56b5cf4 100644 --- a/src/oci/database_management/models/proxy_user_collection.py +++ b/src/oci/database_management/models/proxy_user_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/proxy_user_summary.py b/src/oci/database_management/models/proxy_user_summary.py index a5bb331277..d480d95550 100644 --- a/src/oci/database_management/models/proxy_user_summary.py +++ b/src/oci/database_management/models/proxy_user_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/remove_managed_database_from_managed_database_group_details.py b/src/oci/database_management/models/remove_managed_database_from_managed_database_group_details.py index e22e9783de..e9582732b3 100644 --- a/src/oci/database_management/models/remove_managed_database_from_managed_database_group_details.py +++ b/src/oci/database_management/models/remove_managed_database_from_managed_database_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/reset_database_parameters_details.py b/src/oci/database_management/models/reset_database_parameters_details.py index de1480a29b..bb70118769 100644 --- a/src/oci/database_management/models/reset_database_parameters_details.py +++ b/src/oci/database_management/models/reset_database_parameters_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/role_collection.py b/src/oci/database_management/models/role_collection.py index a1ff8db5a2..58c6dc1bad 100644 --- a/src/oci/database_management/models/role_collection.py +++ b/src/oci/database_management/models/role_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/role_summary.py b/src/oci/database_management/models/role_summary.py index 9e32cb47a9..d07893fd4c 100644 --- a/src/oci/database_management/models/role_summary.py +++ b/src/oci/database_management/models/role_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_job.py b/src/oci/database_management/models/sql_job.py index b5c6bf3e24..c839ea52c2 100644 --- a/src/oci/database_management/models/sql_job.py +++ b/src/oci/database_management/models/sql_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .job import Job diff --git a/src/oci/database_management/models/sql_tuning_advisor_task_collection.py b/src/oci/database_management/models/sql_tuning_advisor_task_collection.py index b91ddc77f4..553b144c4a 100644 --- a/src/oci/database_management/models/sql_tuning_advisor_task_collection.py +++ b/src/oci/database_management/models/sql_tuning_advisor_task_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_advisor_task_finding_collection.py b/src/oci/database_management/models/sql_tuning_advisor_task_finding_collection.py index 59c706f16a..38667d783b 100644 --- a/src/oci/database_management/models/sql_tuning_advisor_task_finding_collection.py +++ b/src/oci/database_management/models/sql_tuning_advisor_task_finding_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_advisor_task_finding_summary.py b/src/oci/database_management/models/sql_tuning_advisor_task_finding_summary.py index 4cbff15fa6..b82c9910de 100644 --- a/src/oci/database_management/models/sql_tuning_advisor_task_finding_summary.py +++ b/src/oci/database_management/models/sql_tuning_advisor_task_finding_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_advisor_task_recommendation_collection.py b/src/oci/database_management/models/sql_tuning_advisor_task_recommendation_collection.py index ce96e4d56a..2cd45a7776 100644 --- a/src/oci/database_management/models/sql_tuning_advisor_task_recommendation_collection.py +++ b/src/oci/database_management/models/sql_tuning_advisor_task_recommendation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_advisor_task_recommendation_summary.py b/src/oci/database_management/models/sql_tuning_advisor_task_recommendation_summary.py index ce74a7c33a..13a8dba1d0 100644 --- a/src/oci/database_management/models/sql_tuning_advisor_task_recommendation_summary.py +++ b/src/oci/database_management/models/sql_tuning_advisor_task_recommendation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_advisor_task_sql_execution_plan.py b/src/oci/database_management/models/sql_tuning_advisor_task_sql_execution_plan.py index 8e32b8a382..f66107dc3c 100644 --- a/src/oci/database_management/models/sql_tuning_advisor_task_sql_execution_plan.py +++ b/src/oci/database_management/models/sql_tuning_advisor_task_sql_execution_plan.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_advisor_task_summary.py b/src/oci/database_management/models/sql_tuning_advisor_task_summary.py index 8058be0262..462e0fafae 100644 --- a/src/oci/database_management/models/sql_tuning_advisor_task_summary.py +++ b/src/oci/database_management/models/sql_tuning_advisor_task_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_advisor_task_summary_finding_benefits.py b/src/oci/database_management/models/sql_tuning_advisor_task_summary_finding_benefits.py index 9584832413..a1f5bfee5f 100644 --- a/src/oci/database_management/models/sql_tuning_advisor_task_summary_finding_benefits.py +++ b/src/oci/database_management/models/sql_tuning_advisor_task_summary_finding_benefits.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_advisor_task_summary_finding_counts.py b/src/oci/database_management/models/sql_tuning_advisor_task_summary_finding_counts.py index 1a0b603423..47c5f72886 100644 --- a/src/oci/database_management/models/sql_tuning_advisor_task_summary_finding_counts.py +++ b/src/oci/database_management/models/sql_tuning_advisor_task_summary_finding_counts.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_advisor_task_summary_report.py b/src/oci/database_management/models/sql_tuning_advisor_task_summary_report.py index 4d84e18e72..e4e98a7400 100644 --- a/src/oci/database_management/models/sql_tuning_advisor_task_summary_report.py +++ b/src/oci/database_management/models/sql_tuning_advisor_task_summary_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_index_finding_summary.py b/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_index_finding_summary.py index 37d9f988f0..48fdde9e8d 100644 --- a/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_index_finding_summary.py +++ b/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_index_finding_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_object_stat_finding_summary.py b/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_object_stat_finding_summary.py index 8a1f9f8a25..bbeab4d9c5 100644 --- a/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_object_stat_finding_summary.py +++ b/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_object_stat_finding_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_statement_counts.py b/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_statement_counts.py index a25a140f17..0a5aabfab2 100644 --- a/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_statement_counts.py +++ b/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_statement_counts.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_statistics.py b/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_statistics.py index 7c1656b80c..79dee75109 100644 --- a/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_statistics.py +++ b/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_statistics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_task_info.py b/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_task_info.py index 1f8bf8f798..29c8943720 100644 --- a/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_task_info.py +++ b/src/oci/database_management/models/sql_tuning_advisor_task_summary_report_task_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_task_credential_details.py b/src/oci/database_management/models/sql_tuning_task_credential_details.py index 0fd373c38c..9c00a0ba89 100644 --- a/src/oci/database_management/models/sql_tuning_task_credential_details.py +++ b/src/oci/database_management/models/sql_tuning_task_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_task_password_credential_details.py b/src/oci/database_management/models/sql_tuning_task_password_credential_details.py index c931cacf83..3ffb47eacc 100644 --- a/src/oci/database_management/models/sql_tuning_task_password_credential_details.py +++ b/src/oci/database_management/models/sql_tuning_task_password_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .sql_tuning_task_credential_details import SqlTuningTaskCredentialDetails diff --git a/src/oci/database_management/models/sql_tuning_task_plan_stats.py b/src/oci/database_management/models/sql_tuning_task_plan_stats.py index f993837896..63a845f99f 100644 --- a/src/oci/database_management/models/sql_tuning_task_plan_stats.py +++ b/src/oci/database_management/models/sql_tuning_task_plan_stats.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_task_return.py b/src/oci/database_management/models/sql_tuning_task_return.py index 6510d342b6..621d760cf4 100644 --- a/src/oci/database_management/models/sql_tuning_task_return.py +++ b/src/oci/database_management/models/sql_tuning_task_return.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_task_secret_credential_details.py b/src/oci/database_management/models/sql_tuning_task_secret_credential_details.py index fd00255a85..3838a3ea78 100644 --- a/src/oci/database_management/models/sql_tuning_task_secret_credential_details.py +++ b/src/oci/database_management/models/sql_tuning_task_secret_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .sql_tuning_task_credential_details import SqlTuningTaskCredentialDetails diff --git a/src/oci/database_management/models/sql_tuning_task_sql_detail.py b/src/oci/database_management/models/sql_tuning_task_sql_detail.py index dddd3f4403..7951142e06 100644 --- a/src/oci/database_management/models/sql_tuning_task_sql_detail.py +++ b/src/oci/database_management/models/sql_tuning_task_sql_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/sql_tuning_task_sql_execution_plan_step.py b/src/oci/database_management/models/sql_tuning_task_sql_execution_plan_step.py index 42c7450378..c19b830ab9 100644 --- a/src/oci/database_management/models/sql_tuning_task_sql_execution_plan_step.py +++ b/src/oci/database_management/models/sql_tuning_task_sql_execution_plan_step.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/start_sql_tuning_task_details.py b/src/oci/database_management/models/start_sql_tuning_task_details.py index 3ac09c587b..52d44b7877 100644 --- a/src/oci/database_management/models/start_sql_tuning_task_details.py +++ b/src/oci/database_management/models/start_sql_tuning_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/statements_aggregate_metrics.py b/src/oci/database_management/models/statements_aggregate_metrics.py index 09fd01a88e..168faabd41 100644 --- a/src/oci/database_management/models/statements_aggregate_metrics.py +++ b/src/oci/database_management/models/statements_aggregate_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/system_privilege_collection.py b/src/oci/database_management/models/system_privilege_collection.py index b7f8e55ad8..b0d59279bf 100644 --- a/src/oci/database_management/models/system_privilege_collection.py +++ b/src/oci/database_management/models/system_privilege_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/system_privilege_summary.py b/src/oci/database_management/models/system_privilege_summary.py index 767e5285c2..650c669efd 100644 --- a/src/oci/database_management/models/system_privilege_summary.py +++ b/src/oci/database_management/models/system_privilege_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/tablespace.py b/src/oci/database_management/models/tablespace.py index 94ec580363..8229ce3549 100644 --- a/src/oci/database_management/models/tablespace.py +++ b/src/oci/database_management/models/tablespace.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/tablespace_collection.py b/src/oci/database_management/models/tablespace_collection.py index e0e017ce0c..3c6b4b9ff6 100644 --- a/src/oci/database_management/models/tablespace_collection.py +++ b/src/oci/database_management/models/tablespace_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/tablespace_summary.py b/src/oci/database_management/models/tablespace_summary.py index 2655a20135..87d76b42ce 100644 --- a/src/oci/database_management/models/tablespace_summary.py +++ b/src/oci/database_management/models/tablespace_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/time_series_metric_data_point.py b/src/oci/database_management/models/time_series_metric_data_point.py index 71692d8d5d..d133d7e4c2 100644 --- a/src/oci/database_management/models/time_series_metric_data_point.py +++ b/src/oci/database_management/models/time_series_metric_data_point.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/time_series_metric_definition.py b/src/oci/database_management/models/time_series_metric_definition.py index 03842779d1..37fe2dcd84 100644 --- a/src/oci/database_management/models/time_series_metric_definition.py +++ b/src/oci/database_management/models/time_series_metric_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/update_database_parameters_result.py b/src/oci/database_management/models/update_database_parameters_result.py index a3a954a367..21e0956256 100644 --- a/src/oci/database_management/models/update_database_parameters_result.py +++ b/src/oci/database_management/models/update_database_parameters_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/update_db_management_private_endpoint_details.py b/src/oci/database_management/models/update_db_management_private_endpoint_details.py index 0331f0cebb..ef004658ec 100644 --- a/src/oci/database_management/models/update_db_management_private_endpoint_details.py +++ b/src/oci/database_management/models/update_db_management_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/update_job_details.py b/src/oci/database_management/models/update_job_details.py index 150fa10d04..c452c7c93b 100644 --- a/src/oci/database_management/models/update_job_details.py +++ b/src/oci/database_management/models/update_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/update_managed_database_group_details.py b/src/oci/database_management/models/update_managed_database_group_details.py index 78e02a2fc9..0cd8b7b736 100644 --- a/src/oci/database_management/models/update_managed_database_group_details.py +++ b/src/oci/database_management/models/update_managed_database_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/update_sql_job_details.py b/src/oci/database_management/models/update_sql_job_details.py index 01c261f63e..e6417fe7e5 100644 --- a/src/oci/database_management/models/update_sql_job_details.py +++ b/src/oci/database_management/models/update_sql_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_job_details import UpdateJobDetails diff --git a/src/oci/database_management/models/user.py b/src/oci/database_management/models/user.py index 690e4db930..60b9c4c292 100644 --- a/src/oci/database_management/models/user.py +++ b/src/oci/database_management/models/user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/user_collection.py b/src/oci/database_management/models/user_collection.py index 5426ce1624..40222b683c 100644 --- a/src/oci/database_management/models/user_collection.py +++ b/src/oci/database_management/models/user_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/user_summary.py b/src/oci/database_management/models/user_summary.py index 8c4ebc2e42..de5e27617d 100644 --- a/src/oci/database_management/models/user_summary.py +++ b/src/oci/database_management/models/user_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/work_request.py b/src/oci/database_management/models/work_request.py index 0a8c014e2e..2ac0081023 100644 --- a/src/oci/database_management/models/work_request.py +++ b/src/oci/database_management/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/work_request_collection.py b/src/oci/database_management/models/work_request_collection.py index eba32a3f36..40cb2d1dd9 100644 --- a/src/oci/database_management/models/work_request_collection.py +++ b/src/oci/database_management/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/work_request_error.py b/src/oci/database_management/models/work_request_error.py index bf4e15a296..f8ff38935e 100644 --- a/src/oci/database_management/models/work_request_error.py +++ b/src/oci/database_management/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/work_request_error_collection.py b/src/oci/database_management/models/work_request_error_collection.py index 9ef2b81c5d..d8bd74df00 100644 --- a/src/oci/database_management/models/work_request_error_collection.py +++ b/src/oci/database_management/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/work_request_log_entry.py b/src/oci/database_management/models/work_request_log_entry.py index 0e9e16c191..ebc20c7174 100644 --- a/src/oci/database_management/models/work_request_log_entry.py +++ b/src/oci/database_management/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/work_request_log_entry_collection.py b/src/oci/database_management/models/work_request_log_entry_collection.py index 8070c60840..1d87ee4b41 100644 --- a/src/oci/database_management/models/work_request_log_entry_collection.py +++ b/src/oci/database_management/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/work_request_resource.py b/src/oci/database_management/models/work_request_resource.py index dad4678389..1b9495992d 100644 --- a/src/oci/database_management/models/work_request_resource.py +++ b/src/oci/database_management/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/models/work_request_summary.py b/src/oci/database_management/models/work_request_summary.py index 6a05a03a49..77e4aed8ab 100644 --- a/src/oci/database_management/models/work_request_summary.py +++ b/src/oci/database_management/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_management/sql_tuning_client.py b/src/oci/database_management/sql_tuning_client.py index 3a937c0fa1..5c96d48850 100644 --- a/src/oci/database_management/sql_tuning_client.py +++ b/src/oci/database_management/sql_tuning_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -66,6 +66,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -96,6 +100,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("sql_tuning", config, signer, database_management_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -131,6 +137,10 @@ def clone_sql_tuning_task(self, managed_database_id, clone_sql_tuning_task_detai To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.SqlTuningTaskReturn` :rtype: :class:`~oci.response.Response` @@ -142,6 +152,7 @@ def clone_sql_tuning_task(self, managed_database_id, clone_sql_tuning_task_detai # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -227,6 +238,10 @@ def drop_sql_tuning_task(self, managed_database_id, drop_sql_tuning_task_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -238,6 +253,7 @@ def drop_sql_tuning_task(self, managed_database_id, drop_sql_tuning_task_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -327,6 +343,10 @@ def get_execution_plan_stats_comparision(self, managed_database_id, sql_tuning_a To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.ExecutionPlanStatsComparision` :rtype: :class:`~oci.response.Response` @@ -338,6 +358,7 @@ def get_execution_plan_stats_comparision(self, managed_database_id, sql_tuning_a # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -432,6 +453,10 @@ def get_sql_execution_plan(self, managed_database_id, sql_tuning_advisor_task_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.SqlTuningAdvisorTaskSqlExecutionPlan` :rtype: :class:`~oci.response.Response` @@ -443,6 +468,7 @@ def get_sql_execution_plan(self, managed_database_id, sql_tuning_advisor_task_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -550,6 +576,10 @@ def get_sql_tuning_advisor_task_summary_report(self, managed_database_id, sql_tu To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.SqlTuningAdvisorTaskSummaryReport` :rtype: :class:`~oci.response.Response` @@ -561,6 +591,7 @@ def get_sql_tuning_advisor_task_summary_report(self, managed_database_id, sql_tu # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "search_period", "time_greater_than_or_equal_to", @@ -699,6 +730,10 @@ def list_sql_tuning_advisor_task_findings(self, managed_database_id, sql_tuning_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.SqlTuningAdvisorTaskFindingCollection` :rtype: :class:`~oci.response.Response` @@ -710,6 +745,7 @@ def list_sql_tuning_advisor_task_findings(self, managed_database_id, sql_tuning_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "begin_exec_id", "end_exec_id", @@ -867,6 +903,10 @@ def list_sql_tuning_advisor_task_recommendations(self, managed_database_id, sql_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.SqlTuningAdvisorTaskRecommendationCollection` :rtype: :class:`~oci.response.Response` @@ -878,6 +918,7 @@ def list_sql_tuning_advisor_task_recommendations(self, managed_database_id, sql_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "sort_by", "sort_order", @@ -1010,6 +1051,10 @@ def list_sql_tuning_advisor_tasks(self, managed_database_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.SqlTuningAdvisorTaskCollection` :rtype: :class:`~oci.response.Response` @@ -1021,6 +1066,7 @@ def list_sql_tuning_advisor_tasks(self, managed_database_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "status", @@ -1145,6 +1191,10 @@ def start_sql_tuning_task(self, managed_database_id, start_sql_tuning_task_detai To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_management.models.SqlTuningTaskReturn` :rtype: :class:`~oci.response.Response` @@ -1156,6 +1206,7 @@ def start_sql_tuning_task(self, managed_database_id, start_sql_tuning_task_detai # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" diff --git a/src/oci/database_management/sql_tuning_client_composite_operations.py b/src/oci/database_management/sql_tuning_client_composite_operations.py index ac6226df76..4f08cb6a06 100644 --- a/src/oci/database_management/sql_tuning_client_composite_operations.py +++ b/src/oci/database_management/sql_tuning_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/database_migration/__init__.py b/src/oci/database_migration/__init__.py index fd1e76b85a..a20cae30b2 100644 --- a/src/oci/database_migration/__init__.py +++ b/src/oci/database_migration/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/database_migration/database_migration_client.py b/src/oci/database_migration/database_migration_client.py index 108aedd5f7..884c6a16da 100644 --- a/src/oci/database_migration/database_migration_client.py +++ b/src/oci/database_migration/database_migration_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("database_migration", config, signer, database_migration_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -132,6 +138,10 @@ def abort_job(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.Job` :rtype: :class:`~oci.response.Response` @@ -143,6 +153,7 @@ def abort_job(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -234,6 +245,10 @@ def change_agent_compartment(self, agent_id, change_agent_compartment_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -245,6 +260,7 @@ def change_agent_compartment(self, agent_id, change_agent_compartment_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -336,6 +352,10 @@ def change_connection_compartment(self, connection_id, change_connection_compart To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -347,6 +367,7 @@ def change_connection_compartment(self, connection_id, change_connection_compart # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -438,6 +459,10 @@ def change_migration_compartment(self, migration_id, change_migration_compartmen To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -449,6 +474,7 @@ def change_migration_compartment(self, migration_id, change_migration_compartmen # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -540,6 +566,10 @@ def clone_migration(self, migration_id, clone_migration_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.Migration` :rtype: :class:`~oci.response.Response` @@ -551,6 +581,7 @@ def clone_migration(self, migration_id, clone_migration_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -635,6 +666,10 @@ def create_connection(self, create_connection_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.Connection` :rtype: :class:`~oci.response.Response` @@ -646,6 +681,7 @@ def create_connection(self, create_connection_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -717,6 +753,10 @@ def create_migration(self, create_migration_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.Migration` :rtype: :class:`~oci.response.Response` @@ -728,6 +768,7 @@ def create_migration(self, create_migration_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -797,6 +838,10 @@ def delete_agent(self, agent_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -808,6 +853,7 @@ def delete_agent(self, agent_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -884,6 +930,10 @@ def delete_connection(self, connection_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -895,6 +945,7 @@ def delete_connection(self, connection_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -971,6 +1022,10 @@ def delete_job(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -982,6 +1037,7 @@ def delete_job(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1058,6 +1114,10 @@ def delete_migration(self, migration_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1069,6 +1129,7 @@ def delete_migration(self, migration_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1152,6 +1213,10 @@ def evaluate_migration(self, migration_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.Job` :rtype: :class:`~oci.response.Response` @@ -1163,6 +1228,7 @@ def evaluate_migration(self, migration_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -1237,6 +1303,10 @@ def get_advisor_report(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.AdvisorReport` :rtype: :class:`~oci.response.Response` @@ -1248,6 +1318,7 @@ def get_advisor_report(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1317,6 +1388,10 @@ def get_agent(self, agent_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.Agent` :rtype: :class:`~oci.response.Response` @@ -1328,6 +1403,7 @@ def get_agent(self, agent_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1397,6 +1473,10 @@ def get_connection(self, connection_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.Connection` :rtype: :class:`~oci.response.Response` @@ -1408,6 +1488,7 @@ def get_connection(self, connection_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1477,6 +1558,10 @@ def get_job(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.Job` :rtype: :class:`~oci.response.Response` @@ -1488,6 +1573,7 @@ def get_job(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1557,6 +1643,10 @@ def get_job_output_content(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -1568,6 +1658,7 @@ def get_job_output_content(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1644,6 +1735,10 @@ def get_migration(self, migration_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.Migration` :rtype: :class:`~oci.response.Response` @@ -1655,6 +1750,7 @@ def get_migration(self, migration_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1726,6 +1822,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -1737,6 +1837,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1814,6 +1915,10 @@ def list_agent_images(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.AgentImageCollection` :rtype: :class:`~oci.response.Response` @@ -1825,6 +1930,7 @@ def list_agent_images(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -1926,6 +2032,10 @@ def list_agents(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.AgentCollection` :rtype: :class:`~oci.response.Response` @@ -1937,6 +2047,7 @@ def list_agents(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -2059,6 +2170,10 @@ def list_connections(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.ConnectionCollection` :rtype: :class:`~oci.response.Response` @@ -2070,6 +2185,7 @@ def list_connections(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "display_name", @@ -2173,6 +2289,10 @@ def list_job_outputs(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.JobOutputSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -2184,6 +2304,7 @@ def list_job_outputs(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -2289,6 +2410,10 @@ def list_jobs(self, migration_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.JobCollection` :rtype: :class:`~oci.response.Response` @@ -2300,6 +2425,7 @@ def list_jobs(self, migration_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "display_name", @@ -2411,6 +2537,10 @@ def list_migration_object_types(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.MigrationObjectTypeSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -2422,6 +2552,7 @@ def list_migration_object_types(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "sort_by", @@ -2537,6 +2668,10 @@ def list_migrations(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.MigrationCollection` :rtype: :class:`~oci.response.Response` @@ -2548,6 +2683,7 @@ def list_migrations(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "display_name", @@ -2670,6 +2806,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -2681,6 +2821,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -2794,6 +2935,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -2805,6 +2950,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -2928,6 +3074,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.WorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -2939,6 +3089,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "resource_id", "status", @@ -3053,6 +3204,10 @@ def resume_job(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.Job` :rtype: :class:`~oci.response.Response` @@ -3064,6 +3219,7 @@ def resume_job(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -3141,6 +3297,10 @@ def retrieve_supported_phases(self, migration_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.MigrationPhaseCollection` :rtype: :class:`~oci.response.Response` @@ -3152,6 +3312,7 @@ def retrieve_supported_phases(self, migration_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3238,6 +3399,10 @@ def start_migration(self, migration_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.Job` :rtype: :class:`~oci.response.Response` @@ -3249,6 +3414,7 @@ def start_migration(self, migration_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -3343,6 +3509,10 @@ def update_agent(self, agent_id, update_agent_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.Agent` :rtype: :class:`~oci.response.Response` @@ -3354,6 +3524,7 @@ def update_agent(self, agent_id, update_agent_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -3440,6 +3611,10 @@ def update_connection(self, connection_id, update_connection_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3451,6 +3626,7 @@ def update_connection(self, connection_id, update_connection_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -3532,6 +3708,10 @@ def update_job(self, job_id, update_job_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_migration.models.Job` :rtype: :class:`~oci.response.Response` @@ -3543,6 +3723,7 @@ def update_job(self, job_id, update_job_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -3626,6 +3807,10 @@ def update_migration(self, migration_id, update_migration_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3637,6 +3822,7 @@ def update_migration(self, migration_id, update_migration_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" diff --git a/src/oci/database_migration/database_migration_client_composite_operations.py b/src/oci/database_migration/database_migration_client_composite_operations.py index af08407a00..4442424bbb 100644 --- a/src/oci/database_migration/database_migration_client_composite_operations.py +++ b/src/oci/database_migration/database_migration_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/database_migration/models/__init__.py b/src/oci/database_migration/models/__init__.py index bf09c7d924..bfdceea5b6 100644 --- a/src/oci/database_migration/models/__init__.py +++ b/src/oci/database_migration/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/database_migration/models/admin_credentials.py b/src/oci/database_migration/models/admin_credentials.py index 751d55ee46..2252805a6b 100644 --- a/src/oci/database_migration/models/admin_credentials.py +++ b/src/oci/database_migration/models/admin_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/advisor_report.py b/src/oci/database_migration/models/advisor_report.py index 1e79e9a4e2..aa26018d73 100644 --- a/src/oci/database_migration/models/advisor_report.py +++ b/src/oci/database_migration/models/advisor_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/advisor_report_bucket_details.py b/src/oci/database_migration/models/advisor_report_bucket_details.py index 2a437f9bb6..16d1d60fb9 100644 --- a/src/oci/database_migration/models/advisor_report_bucket_details.py +++ b/src/oci/database_migration/models/advisor_report_bucket_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/advisor_report_location_details.py b/src/oci/database_migration/models/advisor_report_location_details.py index 4ddaedbe7d..4ae34627bb 100644 --- a/src/oci/database_migration/models/advisor_report_location_details.py +++ b/src/oci/database_migration/models/advisor_report_location_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/advisor_settings.py b/src/oci/database_migration/models/advisor_settings.py index e10c4165a4..32425caee3 100644 --- a/src/oci/database_migration/models/advisor_settings.py +++ b/src/oci/database_migration/models/advisor_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/agent.py b/src/oci/database_migration/models/agent.py index 1e86d31b6e..9f24e08d8c 100644 --- a/src/oci/database_migration/models/agent.py +++ b/src/oci/database_migration/models/agent.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/agent_collection.py b/src/oci/database_migration/models/agent_collection.py index e283ca48dd..b83e8f6eb9 100644 --- a/src/oci/database_migration/models/agent_collection.py +++ b/src/oci/database_migration/models/agent_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/agent_image_collection.py b/src/oci/database_migration/models/agent_image_collection.py index 302f87746e..24d8907636 100644 --- a/src/oci/database_migration/models/agent_image_collection.py +++ b/src/oci/database_migration/models/agent_image_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/agent_image_summary.py b/src/oci/database_migration/models/agent_image_summary.py index f4611b37ea..b72b975ff3 100644 --- a/src/oci/database_migration/models/agent_image_summary.py +++ b/src/oci/database_migration/models/agent_image_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/agent_summary.py b/src/oci/database_migration/models/agent_summary.py index e5ba657fc9..a760e06b7d 100644 --- a/src/oci/database_migration/models/agent_summary.py +++ b/src/oci/database_migration/models/agent_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/change_agent_compartment_details.py b/src/oci/database_migration/models/change_agent_compartment_details.py index 884324a3af..c29711edaf 100644 --- a/src/oci/database_migration/models/change_agent_compartment_details.py +++ b/src/oci/database_migration/models/change_agent_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/change_connection_compartment_details.py b/src/oci/database_migration/models/change_connection_compartment_details.py index edfbe7d79c..f259f0ea90 100644 --- a/src/oci/database_migration/models/change_connection_compartment_details.py +++ b/src/oci/database_migration/models/change_connection_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/change_migration_compartment_details.py b/src/oci/database_migration/models/change_migration_compartment_details.py index 87cdc577ef..838d7d53a5 100644 --- a/src/oci/database_migration/models/change_migration_compartment_details.py +++ b/src/oci/database_migration/models/change_migration_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/clone_migration_details.py b/src/oci/database_migration/models/clone_migration_details.py index add819e50c..24c6e91e0f 100644 --- a/src/oci/database_migration/models/clone_migration_details.py +++ b/src/oci/database_migration/models/clone_migration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/connect_descriptor.py b/src/oci/database_migration/models/connect_descriptor.py index 8d1629032a..6f52a56720 100644 --- a/src/oci/database_migration/models/connect_descriptor.py +++ b/src/oci/database_migration/models/connect_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/connection.py b/src/oci/database_migration/models/connection.py index 2a445bb1ca..c4ac715d69 100644 --- a/src/oci/database_migration/models/connection.py +++ b/src/oci/database_migration/models/connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/connection_collection.py b/src/oci/database_migration/models/connection_collection.py index c72d76742c..1911e5c778 100644 --- a/src/oci/database_migration/models/connection_collection.py +++ b/src/oci/database_migration/models/connection_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/connection_summary.py b/src/oci/database_migration/models/connection_summary.py index e14306edae..c68300c4f7 100644 --- a/src/oci/database_migration/models/connection_summary.py +++ b/src/oci/database_migration/models/connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_admin_credentials.py b/src/oci/database_migration/models/create_admin_credentials.py index 4631d3e0bd..e500ab5b79 100644 --- a/src/oci/database_migration/models/create_admin_credentials.py +++ b/src/oci/database_migration/models/create_admin_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_advisor_settings.py b/src/oci/database_migration/models/create_advisor_settings.py index d2c0133c54..03a48a41fa 100644 --- a/src/oci/database_migration/models/create_advisor_settings.py +++ b/src/oci/database_migration/models/create_advisor_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_agent_details.py b/src/oci/database_migration/models/create_agent_details.py index 574ab8806d..e0d8eb2743 100644 --- a/src/oci/database_migration/models/create_agent_details.py +++ b/src/oci/database_migration/models/create_agent_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_connect_descriptor.py b/src/oci/database_migration/models/create_connect_descriptor.py index 8c148fb8cf..f847b564b6 100644 --- a/src/oci/database_migration/models/create_connect_descriptor.py +++ b/src/oci/database_migration/models/create_connect_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_connection_details.py b/src/oci/database_migration/models/create_connection_details.py index bd1a4a7df3..2b5d17df5f 100644 --- a/src/oci/database_migration/models/create_connection_details.py +++ b/src/oci/database_migration/models/create_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_curl_transfer_details.py b/src/oci/database_migration/models/create_curl_transfer_details.py index 6ab9a852e8..a5d038bc78 100644 --- a/src/oci/database_migration/models/create_curl_transfer_details.py +++ b/src/oci/database_migration/models/create_curl_transfer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_host_dump_transfer_details import CreateHostDumpTransferDetails diff --git a/src/oci/database_migration/models/create_data_pump_parameters.py b/src/oci/database_migration/models/create_data_pump_parameters.py index 8c993efd7d..cd39808b41 100644 --- a/src/oci/database_migration/models/create_data_pump_parameters.py +++ b/src/oci/database_migration/models/create_data_pump_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_data_pump_settings.py b/src/oci/database_migration/models/create_data_pump_settings.py index 73276b2c8e..ce10ff24b3 100644 --- a/src/oci/database_migration/models/create_data_pump_settings.py +++ b/src/oci/database_migration/models/create_data_pump_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_data_transfer_medium_details.py b/src/oci/database_migration/models/create_data_transfer_medium_details.py index 7c9fd03532..287acd15f1 100644 --- a/src/oci/database_migration/models/create_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/create_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_database_link_details.py b/src/oci/database_migration/models/create_database_link_details.py index d892473a5b..e42b6b19e7 100644 --- a/src/oci/database_migration/models/create_database_link_details.py +++ b/src/oci/database_migration/models/create_database_link_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_directory_object.py b/src/oci/database_migration/models/create_directory_object.py index 73e24ac5b2..620aacafb4 100644 --- a/src/oci/database_migration/models/create_directory_object.py +++ b/src/oci/database_migration/models/create_directory_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_dump_transfer_details.py b/src/oci/database_migration/models/create_dump_transfer_details.py index 07adacdd4f..bafa983726 100644 --- a/src/oci/database_migration/models/create_dump_transfer_details.py +++ b/src/oci/database_migration/models/create_dump_transfer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_extract.py b/src/oci/database_migration/models/create_extract.py index 6a1590f1c0..a0a3a3cf1c 100644 --- a/src/oci/database_migration/models/create_extract.py +++ b/src/oci/database_migration/models/create_extract.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_golden_gate_details.py b/src/oci/database_migration/models/create_golden_gate_details.py index 28282059bf..bcc290d43a 100644 --- a/src/oci/database_migration/models/create_golden_gate_details.py +++ b/src/oci/database_migration/models/create_golden_gate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_golden_gate_hub.py b/src/oci/database_migration/models/create_golden_gate_hub.py index a290ba5c95..2435e154f7 100644 --- a/src/oci/database_migration/models/create_golden_gate_hub.py +++ b/src/oci/database_migration/models/create_golden_gate_hub.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_golden_gate_settings.py b/src/oci/database_migration/models/create_golden_gate_settings.py index 32fc12d330..b44b2e1bbf 100644 --- a/src/oci/database_migration/models/create_golden_gate_settings.py +++ b/src/oci/database_migration/models/create_golden_gate_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_host_dump_transfer_details.py b/src/oci/database_migration/models/create_host_dump_transfer_details.py index 7360038093..63e975b86d 100644 --- a/src/oci/database_migration/models/create_host_dump_transfer_details.py +++ b/src/oci/database_migration/models/create_host_dump_transfer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_migration_details.py b/src/oci/database_migration/models/create_migration_details.py index 47b41d4acf..e7ac4cbde2 100644 --- a/src/oci/database_migration/models/create_migration_details.py +++ b/src/oci/database_migration/models/create_migration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_object_store_bucket.py b/src/oci/database_migration/models/create_object_store_bucket.py index 1570cd68a2..6abc7f0147 100644 --- a/src/oci/database_migration/models/create_object_store_bucket.py +++ b/src/oci/database_migration/models/create_object_store_bucket.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_oci_cli_dump_transfer_details.py b/src/oci/database_migration/models/create_oci_cli_dump_transfer_details.py index d49e78ece6..5d98aae451 100644 --- a/src/oci/database_migration/models/create_oci_cli_dump_transfer_details.py +++ b/src/oci/database_migration/models/create_oci_cli_dump_transfer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_host_dump_transfer_details import CreateHostDumpTransferDetails diff --git a/src/oci/database_migration/models/create_private_endpoint.py b/src/oci/database_migration/models/create_private_endpoint.py index 2294825b19..4e541535a5 100644 --- a/src/oci/database_migration/models/create_private_endpoint.py +++ b/src/oci/database_migration/models/create_private_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_replicat.py b/src/oci/database_migration/models/create_replicat.py index 6d011d2f51..f6d314b509 100644 --- a/src/oci/database_migration/models/create_replicat.py +++ b/src/oci/database_migration/models/create_replicat.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_ssh_details.py b/src/oci/database_migration/models/create_ssh_details.py index 5880a1ae4e..e43a2415aa 100644 --- a/src/oci/database_migration/models/create_ssh_details.py +++ b/src/oci/database_migration/models/create_ssh_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/create_vault_details.py b/src/oci/database_migration/models/create_vault_details.py index 6b2c7185c7..ef665fb711 100644 --- a/src/oci/database_migration/models/create_vault_details.py +++ b/src/oci/database_migration/models/create_vault_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/curl_transfer_details.py b/src/oci/database_migration/models/curl_transfer_details.py index 174b04aeb4..72ebd569dd 100644 --- a/src/oci/database_migration/models/curl_transfer_details.py +++ b/src/oci/database_migration/models/curl_transfer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_dump_transfer_details import HostDumpTransferDetails diff --git a/src/oci/database_migration/models/data_pump_parameters.py b/src/oci/database_migration/models/data_pump_parameters.py index 92a17fc8cd..6cd614a95b 100644 --- a/src/oci/database_migration/models/data_pump_parameters.py +++ b/src/oci/database_migration/models/data_pump_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/data_pump_settings.py b/src/oci/database_migration/models/data_pump_settings.py index f57938eb84..d9d34cb145 100644 --- a/src/oci/database_migration/models/data_pump_settings.py +++ b/src/oci/database_migration/models/data_pump_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/data_transfer_medium_details.py b/src/oci/database_migration/models/data_transfer_medium_details.py index 5863180d0c..75ea6c13d9 100644 --- a/src/oci/database_migration/models/data_transfer_medium_details.py +++ b/src/oci/database_migration/models/data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/database_link_details.py b/src/oci/database_migration/models/database_link_details.py index 94c8e6873a..590ba6cd3a 100644 --- a/src/oci/database_migration/models/database_link_details.py +++ b/src/oci/database_migration/models/database_link_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/database_object.py b/src/oci/database_migration/models/database_object.py index 63f31aa343..aa0bef6be8 100644 --- a/src/oci/database_migration/models/database_object.py +++ b/src/oci/database_migration/models/database_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/directory_object.py b/src/oci/database_migration/models/directory_object.py index e0a5b99a28..450bedc2c8 100644 --- a/src/oci/database_migration/models/directory_object.py +++ b/src/oci/database_migration/models/directory_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/dump_transfer_details.py b/src/oci/database_migration/models/dump_transfer_details.py index a60fba8f37..5923d965d4 100644 --- a/src/oci/database_migration/models/dump_transfer_details.py +++ b/src/oci/database_migration/models/dump_transfer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/extract.py b/src/oci/database_migration/models/extract.py index fd49dab3e8..da8ff59135 100644 --- a/src/oci/database_migration/models/extract.py +++ b/src/oci/database_migration/models/extract.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/generate_token.py b/src/oci/database_migration/models/generate_token.py index 52ab4c3246..4c3b0023a7 100644 --- a/src/oci/database_migration/models/generate_token.py +++ b/src/oci/database_migration/models/generate_token.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/golden_gate_details.py b/src/oci/database_migration/models/golden_gate_details.py index 3153c536fe..9ea94502eb 100644 --- a/src/oci/database_migration/models/golden_gate_details.py +++ b/src/oci/database_migration/models/golden_gate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/golden_gate_hub.py b/src/oci/database_migration/models/golden_gate_hub.py index 901cb88f6f..227e95ea34 100644 --- a/src/oci/database_migration/models/golden_gate_hub.py +++ b/src/oci/database_migration/models/golden_gate_hub.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/golden_gate_settings.py b/src/oci/database_migration/models/golden_gate_settings.py index 8241397c11..62c3393e54 100644 --- a/src/oci/database_migration/models/golden_gate_settings.py +++ b/src/oci/database_migration/models/golden_gate_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/host_dump_transfer_details.py b/src/oci/database_migration/models/host_dump_transfer_details.py index cb115a7caf..039b7d98f2 100644 --- a/src/oci/database_migration/models/host_dump_transfer_details.py +++ b/src/oci/database_migration/models/host_dump_transfer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/job.py b/src/oci/database_migration/models/job.py index 06f2528411..52d1f82106 100644 --- a/src/oci/database_migration/models/job.py +++ b/src/oci/database_migration/models/job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/job_collection.py b/src/oci/database_migration/models/job_collection.py index 570a830a73..16fccf0a7b 100644 --- a/src/oci/database_migration/models/job_collection.py +++ b/src/oci/database_migration/models/job_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/job_output_summary.py b/src/oci/database_migration/models/job_output_summary.py index 81b941608c..832acfa2f1 100644 --- a/src/oci/database_migration/models/job_output_summary.py +++ b/src/oci/database_migration/models/job_output_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/job_output_summary_collection.py b/src/oci/database_migration/models/job_output_summary_collection.py index fb36afebbe..a0bbd45c99 100644 --- a/src/oci/database_migration/models/job_output_summary_collection.py +++ b/src/oci/database_migration/models/job_output_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/job_summary.py b/src/oci/database_migration/models/job_summary.py index ac88581b62..a0ca8c4d95 100644 --- a/src/oci/database_migration/models/job_summary.py +++ b/src/oci/database_migration/models/job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/log_location_bucket_details.py b/src/oci/database_migration/models/log_location_bucket_details.py index 6c2fd47e5a..457a136b81 100644 --- a/src/oci/database_migration/models/log_location_bucket_details.py +++ b/src/oci/database_migration/models/log_location_bucket_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/metadata_remap.py b/src/oci/database_migration/models/metadata_remap.py index 46a6b68c78..49880e8909 100644 --- a/src/oci/database_migration/models/metadata_remap.py +++ b/src/oci/database_migration/models/metadata_remap.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/migration.py b/src/oci/database_migration/models/migration.py index 1cb364c87b..c7b87a32a4 100644 --- a/src/oci/database_migration/models/migration.py +++ b/src/oci/database_migration/models/migration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/migration_collection.py b/src/oci/database_migration/models/migration_collection.py index ac7df043a1..978f343084 100644 --- a/src/oci/database_migration/models/migration_collection.py +++ b/src/oci/database_migration/models/migration_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/migration_job_progress_resource.py b/src/oci/database_migration/models/migration_job_progress_resource.py index 1cd2db8cb1..dc2703debe 100644 --- a/src/oci/database_migration/models/migration_job_progress_resource.py +++ b/src/oci/database_migration/models/migration_job_progress_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/migration_job_progress_summary.py b/src/oci/database_migration/models/migration_job_progress_summary.py index 85b23a6ee2..63dcc813b3 100644 --- a/src/oci/database_migration/models/migration_job_progress_summary.py +++ b/src/oci/database_migration/models/migration_job_progress_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/migration_object_type_summary.py b/src/oci/database_migration/models/migration_object_type_summary.py index 1de6e577cb..734df534b0 100644 --- a/src/oci/database_migration/models/migration_object_type_summary.py +++ b/src/oci/database_migration/models/migration_object_type_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/migration_object_type_summary_collection.py b/src/oci/database_migration/models/migration_object_type_summary_collection.py index 0105de2bf8..c0ac7c31b1 100644 --- a/src/oci/database_migration/models/migration_object_type_summary_collection.py +++ b/src/oci/database_migration/models/migration_object_type_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/migration_phase_collection.py b/src/oci/database_migration/models/migration_phase_collection.py index 1fb98d503e..3998219cd5 100644 --- a/src/oci/database_migration/models/migration_phase_collection.py +++ b/src/oci/database_migration/models/migration_phase_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/migration_phase_summary.py b/src/oci/database_migration/models/migration_phase_summary.py index c3f72bebf6..c7e1211a8f 100644 --- a/src/oci/database_migration/models/migration_phase_summary.py +++ b/src/oci/database_migration/models/migration_phase_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/migration_summary.py b/src/oci/database_migration/models/migration_summary.py index ae5693cb52..52f24433e3 100644 --- a/src/oci/database_migration/models/migration_summary.py +++ b/src/oci/database_migration/models/migration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/object_store_bucket.py b/src/oci/database_migration/models/object_store_bucket.py index ef002f4a20..5e3df94672 100644 --- a/src/oci/database_migration/models/object_store_bucket.py +++ b/src/oci/database_migration/models/object_store_bucket.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/oci_cli_dump_transfer_details.py b/src/oci/database_migration/models/oci_cli_dump_transfer_details.py index 9619c2d5db..8aa7bb54e6 100644 --- a/src/oci/database_migration/models/oci_cli_dump_transfer_details.py +++ b/src/oci/database_migration/models/oci_cli_dump_transfer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_dump_transfer_details import HostDumpTransferDetails diff --git a/src/oci/database_migration/models/par_link.py b/src/oci/database_migration/models/par_link.py index f34ed91556..2a9299dc64 100644 --- a/src/oci/database_migration/models/par_link.py +++ b/src/oci/database_migration/models/par_link.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/phase_extract_entry.py b/src/oci/database_migration/models/phase_extract_entry.py index d8f23f54e0..7affcd6351 100644 --- a/src/oci/database_migration/models/phase_extract_entry.py +++ b/src/oci/database_migration/models/phase_extract_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/phase_status.py b/src/oci/database_migration/models/phase_status.py index 550b4314ca..98cf8ea00d 100644 --- a/src/oci/database_migration/models/phase_status.py +++ b/src/oci/database_migration/models/phase_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/private_endpoint_details.py b/src/oci/database_migration/models/private_endpoint_details.py index 9b743280fe..7c00db9362 100644 --- a/src/oci/database_migration/models/private_endpoint_details.py +++ b/src/oci/database_migration/models/private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/replicat.py b/src/oci/database_migration/models/replicat.py index 9b8123a27b..42801884d0 100644 --- a/src/oci/database_migration/models/replicat.py +++ b/src/oci/database_migration/models/replicat.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/resume_job_details.py b/src/oci/database_migration/models/resume_job_details.py index 8ad9cfe36b..84b8187f05 100644 --- a/src/oci/database_migration/models/resume_job_details.py +++ b/src/oci/database_migration/models/resume_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/ssh_details.py b/src/oci/database_migration/models/ssh_details.py index 1341a21c4c..214fb9564d 100644 --- a/src/oci/database_migration/models/ssh_details.py +++ b/src/oci/database_migration/models/ssh_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/start_migration_details.py b/src/oci/database_migration/models/start_migration_details.py index 97f599e5a1..da3e68f9f7 100644 --- a/src/oci/database_migration/models/start_migration_details.py +++ b/src/oci/database_migration/models/start_migration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/unsupported_database_object.py b/src/oci/database_migration/models/unsupported_database_object.py index 70c6965b91..7a1beb7f6e 100644 --- a/src/oci/database_migration/models/unsupported_database_object.py +++ b/src/oci/database_migration/models/unsupported_database_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_admin_credentials.py b/src/oci/database_migration/models/update_admin_credentials.py index 4bb6fd6bf4..8c53eac94c 100644 --- a/src/oci/database_migration/models/update_admin_credentials.py +++ b/src/oci/database_migration/models/update_admin_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_advisor_settings.py b/src/oci/database_migration/models/update_advisor_settings.py index de3408f6ea..52cea20ec8 100644 --- a/src/oci/database_migration/models/update_advisor_settings.py +++ b/src/oci/database_migration/models/update_advisor_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_agent_details.py b/src/oci/database_migration/models/update_agent_details.py index 86e4b3bd49..1f95458361 100644 --- a/src/oci/database_migration/models/update_agent_details.py +++ b/src/oci/database_migration/models/update_agent_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_connect_descriptor.py b/src/oci/database_migration/models/update_connect_descriptor.py index 503d5b5c16..7895b1b45f 100644 --- a/src/oci/database_migration/models/update_connect_descriptor.py +++ b/src/oci/database_migration/models/update_connect_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_connection_details.py b/src/oci/database_migration/models/update_connection_details.py index 51433e62bb..af845ebf6b 100644 --- a/src/oci/database_migration/models/update_connection_details.py +++ b/src/oci/database_migration/models/update_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_curl_transfer_details.py b/src/oci/database_migration/models/update_curl_transfer_details.py index 1a5833da41..63317a36c5 100644 --- a/src/oci/database_migration/models/update_curl_transfer_details.py +++ b/src/oci/database_migration/models/update_curl_transfer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_host_dump_transfer_details import UpdateHostDumpTransferDetails diff --git a/src/oci/database_migration/models/update_data_pump_parameters.py b/src/oci/database_migration/models/update_data_pump_parameters.py index e490c9e124..54d82f3dcd 100644 --- a/src/oci/database_migration/models/update_data_pump_parameters.py +++ b/src/oci/database_migration/models/update_data_pump_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_data_pump_settings.py b/src/oci/database_migration/models/update_data_pump_settings.py index cff4216fbb..9783e21642 100644 --- a/src/oci/database_migration/models/update_data_pump_settings.py +++ b/src/oci/database_migration/models/update_data_pump_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_data_transfer_medium_details.py b/src/oci/database_migration/models/update_data_transfer_medium_details.py index b7ed86a43f..b0184fb321 100644 --- a/src/oci/database_migration/models/update_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/update_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_database_link_details.py b/src/oci/database_migration/models/update_database_link_details.py index 3263cd69dc..1ff57a0198 100644 --- a/src/oci/database_migration/models/update_database_link_details.py +++ b/src/oci/database_migration/models/update_database_link_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_directory_object.py b/src/oci/database_migration/models/update_directory_object.py index 670158d867..cdecb66f44 100644 --- a/src/oci/database_migration/models/update_directory_object.py +++ b/src/oci/database_migration/models/update_directory_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_dump_transfer_details.py b/src/oci/database_migration/models/update_dump_transfer_details.py index 59bcb122be..49ceea28d3 100644 --- a/src/oci/database_migration/models/update_dump_transfer_details.py +++ b/src/oci/database_migration/models/update_dump_transfer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_extract.py b/src/oci/database_migration/models/update_extract.py index 3af3af5150..27ec8af3f0 100644 --- a/src/oci/database_migration/models/update_extract.py +++ b/src/oci/database_migration/models/update_extract.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_golden_gate_details.py b/src/oci/database_migration/models/update_golden_gate_details.py index a10d666e4b..82f2ac0d6b 100644 --- a/src/oci/database_migration/models/update_golden_gate_details.py +++ b/src/oci/database_migration/models/update_golden_gate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_golden_gate_hub.py b/src/oci/database_migration/models/update_golden_gate_hub.py index d5cbfbc9f5..d66a99cf93 100644 --- a/src/oci/database_migration/models/update_golden_gate_hub.py +++ b/src/oci/database_migration/models/update_golden_gate_hub.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_golden_gate_settings.py b/src/oci/database_migration/models/update_golden_gate_settings.py index af2f448356..f0b28a699f 100644 --- a/src/oci/database_migration/models/update_golden_gate_settings.py +++ b/src/oci/database_migration/models/update_golden_gate_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_host_dump_transfer_details.py b/src/oci/database_migration/models/update_host_dump_transfer_details.py index 923babd3d0..f7f47e5254 100644 --- a/src/oci/database_migration/models/update_host_dump_transfer_details.py +++ b/src/oci/database_migration/models/update_host_dump_transfer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_job_details.py b/src/oci/database_migration/models/update_job_details.py index d6837255df..13efce4444 100644 --- a/src/oci/database_migration/models/update_job_details.py +++ b/src/oci/database_migration/models/update_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_migration_details.py b/src/oci/database_migration/models/update_migration_details.py index 8596c3aab9..a20555b1e1 100644 --- a/src/oci/database_migration/models/update_migration_details.py +++ b/src/oci/database_migration/models/update_migration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_object_store_bucket.py b/src/oci/database_migration/models/update_object_store_bucket.py index a6f05de074..94e99c876e 100644 --- a/src/oci/database_migration/models/update_object_store_bucket.py +++ b/src/oci/database_migration/models/update_object_store_bucket.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_oci_cli_dump_transfer_details.py b/src/oci/database_migration/models/update_oci_cli_dump_transfer_details.py index bd2c181522..31a47e02f3 100644 --- a/src/oci/database_migration/models/update_oci_cli_dump_transfer_details.py +++ b/src/oci/database_migration/models/update_oci_cli_dump_transfer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_host_dump_transfer_details import UpdateHostDumpTransferDetails diff --git a/src/oci/database_migration/models/update_private_endpoint.py b/src/oci/database_migration/models/update_private_endpoint.py index 22b0f8374c..e0be223509 100644 --- a/src/oci/database_migration/models/update_private_endpoint.py +++ b/src/oci/database_migration/models/update_private_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_replicat.py b/src/oci/database_migration/models/update_replicat.py index 7e9c15b145..75492e1626 100644 --- a/src/oci/database_migration/models/update_replicat.py +++ b/src/oci/database_migration/models/update_replicat.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_ssh_details.py b/src/oci/database_migration/models/update_ssh_details.py index e5b5d6d2eb..e98fa8213d 100644 --- a/src/oci/database_migration/models/update_ssh_details.py +++ b/src/oci/database_migration/models/update_ssh_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/update_vault_details.py b/src/oci/database_migration/models/update_vault_details.py index 827f84874e..10b9326da4 100644 --- a/src/oci/database_migration/models/update_vault_details.py +++ b/src/oci/database_migration/models/update_vault_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/vault_details.py b/src/oci/database_migration/models/vault_details.py index ff1906d913..c22bbef849 100644 --- a/src/oci/database_migration/models/vault_details.py +++ b/src/oci/database_migration/models/vault_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/work_request.py b/src/oci/database_migration/models/work_request.py index 1bcd98427b..dddad3b839 100644 --- a/src/oci/database_migration/models/work_request.py +++ b/src/oci/database_migration/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/work_request_collection.py b/src/oci/database_migration/models/work_request_collection.py index e98c471e5d..128c8dff89 100644 --- a/src/oci/database_migration/models/work_request_collection.py +++ b/src/oci/database_migration/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/work_request_error.py b/src/oci/database_migration/models/work_request_error.py index 826aee9706..085848aaa2 100644 --- a/src/oci/database_migration/models/work_request_error.py +++ b/src/oci/database_migration/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/work_request_error_collection.py b/src/oci/database_migration/models/work_request_error_collection.py index a474b24c28..03f14aadfd 100644 --- a/src/oci/database_migration/models/work_request_error_collection.py +++ b/src/oci/database_migration/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/work_request_log_entry.py b/src/oci/database_migration/models/work_request_log_entry.py index 6571320664..06830c1b73 100644 --- a/src/oci/database_migration/models/work_request_log_entry.py +++ b/src/oci/database_migration/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/work_request_log_entry_collection.py b/src/oci/database_migration/models/work_request_log_entry_collection.py index 0d08219efd..c4e2282bbb 100644 --- a/src/oci/database_migration/models/work_request_log_entry_collection.py +++ b/src/oci/database_migration/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/work_request_resource.py b/src/oci/database_migration/models/work_request_resource.py index 20a5ccc2ce..af6f6e521c 100644 --- a/src/oci/database_migration/models/work_request_resource.py +++ b/src/oci/database_migration/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_migration/models/work_request_summary.py b/src/oci/database_migration/models/work_request_summary.py index 82a7b7e4e9..efe8e1271d 100644 --- a/src/oci/database_migration/models/work_request_summary.py +++ b/src/oci/database_migration/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/__init__.py b/src/oci/database_tools/__init__.py index 3a9dadbaa1..a7b3f47819 100644 --- a/src/oci/database_tools/__init__.py +++ b/src/oci/database_tools/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/database_tools/database_tools_client.py b/src/oci/database_tools/database_tools_client.py index 807de9f9de..16d48c64e1 100644 --- a/src/oci/database_tools/database_tools_client.py +++ b/src/oci/database_tools/database_tools_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("database_tools", config, signer, database_tools_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -140,6 +146,10 @@ def change_database_tools_connection_compartment(self, database_tools_connection To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -151,6 +161,7 @@ def change_database_tools_connection_compartment(self, database_tools_connection # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -247,6 +258,10 @@ def change_database_tools_private_endpoint_compartment(self, database_tools_priv To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -258,6 +273,7 @@ def change_database_tools_private_endpoint_compartment(self, database_tools_priv # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -338,6 +354,10 @@ def create_database_tools_connection(self, create_database_tools_connection_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_tools.models.DatabaseToolsConnection` :rtype: :class:`~oci.response.Response` @@ -349,6 +369,7 @@ def create_database_tools_connection(self, create_database_tools_connection_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -417,6 +438,10 @@ def create_database_tools_private_endpoint(self, create_database_tools_private_e To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_tools.models.DatabaseToolsPrivateEndpoint` :rtype: :class:`~oci.response.Response` @@ -428,6 +453,7 @@ def create_database_tools_private_endpoint(self, create_database_tools_private_e # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -498,6 +524,10 @@ def delete_database_tools_connection(self, database_tools_connection_id, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -509,6 +539,7 @@ def delete_database_tools_connection(self, database_tools_connection_id, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -586,6 +617,10 @@ def delete_database_tools_private_endpoint(self, database_tools_private_endpoint To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -597,6 +632,7 @@ def delete_database_tools_private_endpoint(self, database_tools_private_endpoint # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -667,6 +703,10 @@ def get_database_tools_connection(self, database_tools_connection_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_tools.models.DatabaseToolsConnection` :rtype: :class:`~oci.response.Response` @@ -678,6 +718,7 @@ def get_database_tools_connection(self, database_tools_connection_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -748,6 +789,10 @@ def get_database_tools_endpoint_service(self, database_tools_endpoint_service_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_tools.models.DatabaseToolsEndpointService` :rtype: :class:`~oci.response.Response` @@ -759,6 +804,7 @@ def get_database_tools_endpoint_service(self, database_tools_endpoint_service_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -829,6 +875,10 @@ def get_database_tools_private_endpoint(self, database_tools_private_endpoint_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_tools.models.DatabaseToolsPrivateEndpoint` :rtype: :class:`~oci.response.Response` @@ -840,6 +890,7 @@ def get_database_tools_private_endpoint(self, database_tools_private_endpoint_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -908,6 +959,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_tools.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -919,6 +974,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1016,6 +1072,10 @@ def list_database_tools_connections(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_tools.models.DatabaseToolsConnectionCollection` :rtype: :class:`~oci.response.Response` @@ -1027,6 +1087,7 @@ def list_database_tools_connections(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "display_name", @@ -1160,6 +1221,10 @@ def list_database_tools_endpoint_services(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_tools.models.DatabaseToolsEndpointServiceCollection` :rtype: :class:`~oci.response.Response` @@ -1171,6 +1236,7 @@ def list_database_tools_endpoint_services(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -1299,6 +1365,10 @@ def list_database_tools_private_endpoints(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_tools.models.DatabaseToolsPrivateEndpointCollection` :rtype: :class:`~oci.response.Response` @@ -1310,6 +1380,7 @@ def list_database_tools_private_endpoints(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "subnet_id", "limit", @@ -1426,6 +1497,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_tools.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -1437,6 +1512,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "sort_order", @@ -1549,6 +1625,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_tools.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -1560,6 +1640,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "sort_order", @@ -1677,6 +1758,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_tools.models.WorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -1688,6 +1773,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "resource_identifier", "opc_request_id", @@ -1787,6 +1873,10 @@ def update_database_tools_connection(self, database_tools_connection_id, update_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1798,6 +1888,7 @@ def update_database_tools_connection(self, database_tools_connection_id, update_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1880,6 +1971,10 @@ def update_database_tools_private_endpoint(self, database_tools_private_endpoint To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1891,6 +1986,7 @@ def update_database_tools_private_endpoint(self, database_tools_private_endpoint # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1973,6 +2069,10 @@ def validate_database_tools_connection(self, database_tools_connection_id, valid To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database_tools.models.ValidateDatabaseToolsConnectionResult` :rtype: :class:`~oci.response.Response` @@ -1984,6 +2084,7 @@ def validate_database_tools_connection(self, database_tools_connection_id, valid # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/database_tools/database_tools_client_composite_operations.py b/src/oci/database_tools/database_tools_client_composite_operations.py index 05a89c230d..956a43ea4c 100644 --- a/src/oci/database_tools/database_tools_client_composite_operations.py +++ b/src/oci/database_tools/database_tools_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/database_tools/models/__init__.py b/src/oci/database_tools/models/__init__.py index f74729c837..f03c8586a7 100644 --- a/src/oci/database_tools/models/__init__.py +++ b/src/oci/database_tools/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/database_tools/models/change_database_tools_connection_compartment_details.py b/src/oci/database_tools/models/change_database_tools_connection_compartment_details.py index 8bf5ba5bdf..4935a2dea9 100644 --- a/src/oci/database_tools/models/change_database_tools_connection_compartment_details.py +++ b/src/oci/database_tools/models/change_database_tools_connection_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/change_database_tools_private_endpoint_compartment_details.py b/src/oci/database_tools/models/change_database_tools_private_endpoint_compartment_details.py index 54af402830..600da0a446 100644 --- a/src/oci/database_tools/models/change_database_tools_private_endpoint_compartment_details.py +++ b/src/oci/database_tools/models/change_database_tools_private_endpoint_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/create_database_tools_connection_details.py b/src/oci/database_tools/models/create_database_tools_connection_details.py index cc0106b45e..98b7ad80f1 100644 --- a/src/oci/database_tools/models/create_database_tools_connection_details.py +++ b/src/oci/database_tools/models/create_database_tools_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/create_database_tools_connection_oracle_database_details.py b/src/oci/database_tools/models/create_database_tools_connection_oracle_database_details.py index 2982f6d751..3407192b9e 100644 --- a/src/oci/database_tools/models/create_database_tools_connection_oracle_database_details.py +++ b/src/oci/database_tools/models/create_database_tools_connection_oracle_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_database_tools_connection_details import CreateDatabaseToolsConnectionDetails diff --git a/src/oci/database_tools/models/create_database_tools_private_endpoint_details.py b/src/oci/database_tools/models/create_database_tools_private_endpoint_details.py index 5b5525cacf..cda076c913 100644 --- a/src/oci/database_tools/models/create_database_tools_private_endpoint_details.py +++ b/src/oci/database_tools/models/create_database_tools_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/create_database_tools_related_resource_details.py b/src/oci/database_tools/models/create_database_tools_related_resource_details.py index 22a2b1347b..144407907f 100644 --- a/src/oci/database_tools/models/create_database_tools_related_resource_details.py +++ b/src/oci/database_tools/models/create_database_tools_related_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_allowed_network_sources.py b/src/oci/database_tools/models/database_tools_allowed_network_sources.py index 762dd17953..3e8f837986 100644 --- a/src/oci/database_tools/models/database_tools_allowed_network_sources.py +++ b/src/oci/database_tools/models/database_tools_allowed_network_sources.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_connection.py b/src/oci/database_tools/models/database_tools_connection.py index 9558e19a06..5c983a1f6c 100644 --- a/src/oci/database_tools/models/database_tools_connection.py +++ b/src/oci/database_tools/models/database_tools_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_connection_collection.py b/src/oci/database_tools/models/database_tools_connection_collection.py index dfb10f0dd3..518ced3241 100644 --- a/src/oci/database_tools/models/database_tools_connection_collection.py +++ b/src/oci/database_tools/models/database_tools_connection_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_connection_oracle_database.py b/src/oci/database_tools/models/database_tools_connection_oracle_database.py index 3da623b534..98c201df9d 100644 --- a/src/oci/database_tools/models/database_tools_connection_oracle_database.py +++ b/src/oci/database_tools/models/database_tools_connection_oracle_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_tools_connection import DatabaseToolsConnection diff --git a/src/oci/database_tools/models/database_tools_connection_oracle_database_summary.py b/src/oci/database_tools/models/database_tools_connection_oracle_database_summary.py index 0269e47c02..3d83737468 100644 --- a/src/oci/database_tools/models/database_tools_connection_oracle_database_summary.py +++ b/src/oci/database_tools/models/database_tools_connection_oracle_database_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_tools_connection_summary import DatabaseToolsConnectionSummary diff --git a/src/oci/database_tools/models/database_tools_connection_summary.py b/src/oci/database_tools/models/database_tools_connection_summary.py index c03dc631c9..de82198a87 100644 --- a/src/oci/database_tools/models/database_tools_connection_summary.py +++ b/src/oci/database_tools/models/database_tools_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_endpoint_service.py b/src/oci/database_tools/models/database_tools_endpoint_service.py index f6590b8530..b81d75dad1 100644 --- a/src/oci/database_tools/models/database_tools_endpoint_service.py +++ b/src/oci/database_tools/models/database_tools_endpoint_service.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_endpoint_service_collection.py b/src/oci/database_tools/models/database_tools_endpoint_service_collection.py index 3fd0622689..5017e8d97e 100644 --- a/src/oci/database_tools/models/database_tools_endpoint_service_collection.py +++ b/src/oci/database_tools/models/database_tools_endpoint_service_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_endpoint_service_summary.py b/src/oci/database_tools/models/database_tools_endpoint_service_summary.py index 85ef83908a..d1cf48bcac 100644 --- a/src/oci/database_tools/models/database_tools_endpoint_service_summary.py +++ b/src/oci/database_tools/models/database_tools_endpoint_service_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_key_store.py b/src/oci/database_tools/models/database_tools_key_store.py index 1b50c6816f..c3577e45e5 100644 --- a/src/oci/database_tools/models/database_tools_key_store.py +++ b/src/oci/database_tools/models/database_tools_key_store.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_key_store_content.py b/src/oci/database_tools/models/database_tools_key_store_content.py index 33878a7930..e77f83f462 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content.py +++ b/src/oci/database_tools/models/database_tools_key_store_content.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_key_store_content_details.py b/src/oci/database_tools/models/database_tools_key_store_content_details.py index b9b5669af0..d63afd8de8 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_key_store_content_secret_id.py b/src/oci/database_tools/models/database_tools_key_store_content_secret_id.py index c7353b09a2..ca58ef0ae4 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_secret_id.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_secret_id.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_tools_key_store_content import DatabaseToolsKeyStoreContent diff --git a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_details.py b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_details.py index 48c53f8d61..b361fe33ee 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_tools_key_store_content_details import DatabaseToolsKeyStoreContentDetails diff --git a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_summary.py b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_summary.py index 6255be459d..8bc10dfa32 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_tools_key_store_content_summary import DatabaseToolsKeyStoreContentSummary diff --git a/src/oci/database_tools/models/database_tools_key_store_content_summary.py b/src/oci/database_tools/models/database_tools_key_store_content_summary.py index 4adb628a07..9974cc6bea 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_key_store_details.py b/src/oci/database_tools/models/database_tools_key_store_details.py index 06c059f139..7857e54a13 100644 --- a/src/oci/database_tools/models/database_tools_key_store_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_key_store_password.py b/src/oci/database_tools/models/database_tools_key_store_password.py index ad8fa34fd3..9b2f3d0683 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password.py +++ b/src/oci/database_tools/models/database_tools_key_store_password.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_key_store_password_details.py b/src/oci/database_tools/models/database_tools_key_store_password_details.py index 2575a00b5c..2586e812fe 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_key_store_password_secret_id.py b/src/oci/database_tools/models/database_tools_key_store_password_secret_id.py index d260dcefac..1fa4cad266 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_secret_id.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_secret_id.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_tools_key_store_password import DatabaseToolsKeyStorePassword diff --git a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_details.py b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_details.py index 898358324c..a02942fd83 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_tools_key_store_password_details import DatabaseToolsKeyStorePasswordDetails diff --git a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_summary.py b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_summary.py index 8faf01f6ee..1b1a618547 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_tools_key_store_password_summary import DatabaseToolsKeyStorePasswordSummary diff --git a/src/oci/database_tools/models/database_tools_key_store_password_summary.py b/src/oci/database_tools/models/database_tools_key_store_password_summary.py index cdfa75542e..3121125d07 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_key_store_summary.py b/src/oci/database_tools/models/database_tools_key_store_summary.py index 1dfdd1898b..1df3bec3d5 100644 --- a/src/oci/database_tools/models/database_tools_key_store_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_private_endpoint.py b/src/oci/database_tools/models/database_tools_private_endpoint.py index b5bbc03c78..dc0dd200f6 100644 --- a/src/oci/database_tools/models/database_tools_private_endpoint.py +++ b/src/oci/database_tools/models/database_tools_private_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_private_endpoint_collection.py b/src/oci/database_tools/models/database_tools_private_endpoint_collection.py index 5bde69f16d..8cfa7684f3 100644 --- a/src/oci/database_tools/models/database_tools_private_endpoint_collection.py +++ b/src/oci/database_tools/models/database_tools_private_endpoint_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_private_endpoint_reverse_connection_configuration.py b/src/oci/database_tools/models/database_tools_private_endpoint_reverse_connection_configuration.py index bec8f46d50..5f67efb27f 100644 --- a/src/oci/database_tools/models/database_tools_private_endpoint_reverse_connection_configuration.py +++ b/src/oci/database_tools/models/database_tools_private_endpoint_reverse_connection_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_private_endpoint_reverse_connections_source_ip.py b/src/oci/database_tools/models/database_tools_private_endpoint_reverse_connections_source_ip.py index cbcff19ab8..46b08252ec 100644 --- a/src/oci/database_tools/models/database_tools_private_endpoint_reverse_connections_source_ip.py +++ b/src/oci/database_tools/models/database_tools_private_endpoint_reverse_connections_source_ip.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_private_endpoint_summary.py b/src/oci/database_tools/models/database_tools_private_endpoint_summary.py index 9a1ffc39e3..deb2aca4e6 100644 --- a/src/oci/database_tools/models/database_tools_private_endpoint_summary.py +++ b/src/oci/database_tools/models/database_tools_private_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_related_resource.py b/src/oci/database_tools/models/database_tools_related_resource.py index a84f69c0f2..4323375fdf 100644 --- a/src/oci/database_tools/models/database_tools_related_resource.py +++ b/src/oci/database_tools/models/database_tools_related_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_user_password.py b/src/oci/database_tools/models/database_tools_user_password.py index c707df29ca..bab3e927d4 100644 --- a/src/oci/database_tools/models/database_tools_user_password.py +++ b/src/oci/database_tools/models/database_tools_user_password.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_user_password_details.py b/src/oci/database_tools/models/database_tools_user_password_details.py index 910584a389..51307c9ce3 100644 --- a/src/oci/database_tools/models/database_tools_user_password_details.py +++ b/src/oci/database_tools/models/database_tools_user_password_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_user_password_secret_id.py b/src/oci/database_tools/models/database_tools_user_password_secret_id.py index 5de0331223..a6aa4a2bcd 100644 --- a/src/oci/database_tools/models/database_tools_user_password_secret_id.py +++ b/src/oci/database_tools/models/database_tools_user_password_secret_id.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_tools_user_password import DatabaseToolsUserPassword diff --git a/src/oci/database_tools/models/database_tools_user_password_secret_id_details.py b/src/oci/database_tools/models/database_tools_user_password_secret_id_details.py index 8679779b02..524124d4df 100644 --- a/src/oci/database_tools/models/database_tools_user_password_secret_id_details.py +++ b/src/oci/database_tools/models/database_tools_user_password_secret_id_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_tools_user_password_details import DatabaseToolsUserPasswordDetails diff --git a/src/oci/database_tools/models/database_tools_user_password_secret_id_summary.py b/src/oci/database_tools/models/database_tools_user_password_secret_id_summary.py index 500f77fc80..298d9045b7 100644 --- a/src/oci/database_tools/models/database_tools_user_password_secret_id_summary.py +++ b/src/oci/database_tools/models/database_tools_user_password_secret_id_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_tools_user_password_summary import DatabaseToolsUserPasswordSummary diff --git a/src/oci/database_tools/models/database_tools_user_password_summary.py b/src/oci/database_tools/models/database_tools_user_password_summary.py index ef8b5fe41c..d6861a1bfa 100644 --- a/src/oci/database_tools/models/database_tools_user_password_summary.py +++ b/src/oci/database_tools/models/database_tools_user_password_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/database_tools_virtual_source.py b/src/oci/database_tools/models/database_tools_virtual_source.py index 324cc53051..b37141f5cb 100644 --- a/src/oci/database_tools/models/database_tools_virtual_source.py +++ b/src/oci/database_tools/models/database_tools_virtual_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/update_database_tools_connection_details.py b/src/oci/database_tools/models/update_database_tools_connection_details.py index 706fa3b47f..ee22c353dd 100644 --- a/src/oci/database_tools/models/update_database_tools_connection_details.py +++ b/src/oci/database_tools/models/update_database_tools_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/update_database_tools_connection_oracle_database_details.py b/src/oci/database_tools/models/update_database_tools_connection_oracle_database_details.py index e2cddbb950..988df494f0 100644 --- a/src/oci/database_tools/models/update_database_tools_connection_oracle_database_details.py +++ b/src/oci/database_tools/models/update_database_tools_connection_oracle_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_database_tools_connection_details import UpdateDatabaseToolsConnectionDetails diff --git a/src/oci/database_tools/models/update_database_tools_private_endpoint_details.py b/src/oci/database_tools/models/update_database_tools_private_endpoint_details.py index 1cdb411152..60149c96f0 100644 --- a/src/oci/database_tools/models/update_database_tools_private_endpoint_details.py +++ b/src/oci/database_tools/models/update_database_tools_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/update_database_tools_related_resource_details.py b/src/oci/database_tools/models/update_database_tools_related_resource_details.py index ff1fe1c540..0698a44a2a 100644 --- a/src/oci/database_tools/models/update_database_tools_related_resource_details.py +++ b/src/oci/database_tools/models/update_database_tools_related_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/validate_database_tools_connection_details.py b/src/oci/database_tools/models/validate_database_tools_connection_details.py index e96c6396da..4291ba4216 100644 --- a/src/oci/database_tools/models/validate_database_tools_connection_details.py +++ b/src/oci/database_tools/models/validate_database_tools_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/validate_database_tools_connection_oracle_database_details.py b/src/oci/database_tools/models/validate_database_tools_connection_oracle_database_details.py index a2c93d999e..e76120f4ea 100644 --- a/src/oci/database_tools/models/validate_database_tools_connection_oracle_database_details.py +++ b/src/oci/database_tools/models/validate_database_tools_connection_oracle_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .validate_database_tools_connection_details import ValidateDatabaseToolsConnectionDetails diff --git a/src/oci/database_tools/models/validate_database_tools_connection_oracle_database_result.py b/src/oci/database_tools/models/validate_database_tools_connection_oracle_database_result.py index 7818a71e0c..c71142f7c4 100644 --- a/src/oci/database_tools/models/validate_database_tools_connection_oracle_database_result.py +++ b/src/oci/database_tools/models/validate_database_tools_connection_oracle_database_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .validate_database_tools_connection_result import ValidateDatabaseToolsConnectionResult diff --git a/src/oci/database_tools/models/validate_database_tools_connection_result.py b/src/oci/database_tools/models/validate_database_tools_connection_result.py index 2f0284d0e8..44226414cc 100644 --- a/src/oci/database_tools/models/validate_database_tools_connection_result.py +++ b/src/oci/database_tools/models/validate_database_tools_connection_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/work_request.py b/src/oci/database_tools/models/work_request.py index d10cfc0645..2b75377c7c 100644 --- a/src/oci/database_tools/models/work_request.py +++ b/src/oci/database_tools/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/work_request_collection.py b/src/oci/database_tools/models/work_request_collection.py index 1d3962bf07..239eb91277 100644 --- a/src/oci/database_tools/models/work_request_collection.py +++ b/src/oci/database_tools/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/work_request_error.py b/src/oci/database_tools/models/work_request_error.py index 04dde83e08..26ac6a8cc9 100644 --- a/src/oci/database_tools/models/work_request_error.py +++ b/src/oci/database_tools/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/work_request_error_collection.py b/src/oci/database_tools/models/work_request_error_collection.py index 4b235c2ab8..ef1392214d 100644 --- a/src/oci/database_tools/models/work_request_error_collection.py +++ b/src/oci/database_tools/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/work_request_log_entry.py b/src/oci/database_tools/models/work_request_log_entry.py index 8d02a6a994..7b37ab8d12 100644 --- a/src/oci/database_tools/models/work_request_log_entry.py +++ b/src/oci/database_tools/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/work_request_log_entry_collection.py b/src/oci/database_tools/models/work_request_log_entry_collection.py index 0c2b789121..a5322a9d1d 100644 --- a/src/oci/database_tools/models/work_request_log_entry_collection.py +++ b/src/oci/database_tools/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/work_request_resource.py b/src/oci/database_tools/models/work_request_resource.py index 6decbf1282..4a492bf1d8 100644 --- a/src/oci/database_tools/models/work_request_resource.py +++ b/src/oci/database_tools/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/database_tools/models/work_request_summary.py b/src/oci/database_tools/models/work_request_summary.py index fd1d9b5578..872494b6b4 100644 --- a/src/oci/database_tools/models/work_request_summary.py +++ b/src/oci/database_tools/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/decorators.py b/src/oci/decorators.py index 3a0cd37a44..b8d4ce3fcc 100644 --- a/src/oci/decorators.py +++ b/src/oci/decorators.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/__init__.py b/src/oci/devops/__init__.py index b7b578c53a..dbc6d12794 100644 --- a/src/oci/devops/__init__.py +++ b/src/oci/devops/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/devops/devops_client.py b/src/oci/devops/devops_client.py index af77dd8dcb..8c85fb2ff7 100644 --- a/src/oci/devops/devops_client.py +++ b/src/oci/devops/devops_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("devops", config, signer, devops_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -126,6 +132,10 @@ def approve_deployment(self, deployment_id, approve_deployment_details, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.Deployment` :rtype: :class:`~oci.response.Response` @@ -137,6 +147,7 @@ def approve_deployment(self, deployment_id, approve_deployment_details, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -223,6 +234,10 @@ def cancel_build_run(self, cancel_build_run_details, build_run_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.BuildRun` :rtype: :class:`~oci.response.Response` @@ -234,6 +249,7 @@ def cancel_build_run(self, cancel_build_run_details, build_run_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -320,6 +336,10 @@ def cancel_deployment(self, deployment_id, cancel_deployment_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.Deployment` :rtype: :class:`~oci.response.Response` @@ -331,6 +351,7 @@ def cancel_deployment(self, deployment_id, cancel_deployment_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -417,6 +438,10 @@ def change_project_compartment(self, project_id, change_project_compartment_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -428,6 +453,7 @@ def change_project_compartment(self, project_id, change_project_compartment_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -506,6 +532,10 @@ def create_build_pipeline(self, create_build_pipeline_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.BuildPipeline` :rtype: :class:`~oci.response.Response` @@ -517,6 +547,7 @@ def create_build_pipeline(self, create_build_pipeline_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -583,6 +614,10 @@ def create_build_pipeline_stage(self, create_build_pipeline_stage_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.BuildPipelineStage` :rtype: :class:`~oci.response.Response` @@ -594,6 +629,7 @@ def create_build_pipeline_stage(self, create_build_pipeline_stage_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -663,6 +699,10 @@ def create_build_run(self, create_build_run_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.BuildRun` :rtype: :class:`~oci.response.Response` @@ -674,6 +714,7 @@ def create_build_run(self, create_build_run_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -742,6 +783,10 @@ def create_connection(self, create_connection_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.Connection` :rtype: :class:`~oci.response.Response` @@ -753,6 +798,7 @@ def create_connection(self, create_connection_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -819,6 +865,10 @@ def create_deploy_artifact(self, create_deploy_artifact_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DeployArtifact` :rtype: :class:`~oci.response.Response` @@ -830,6 +880,7 @@ def create_deploy_artifact(self, create_deploy_artifact_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -896,6 +947,10 @@ def create_deploy_environment(self, create_deploy_environment_details, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DeployEnvironment` :rtype: :class:`~oci.response.Response` @@ -907,6 +962,7 @@ def create_deploy_environment(self, create_deploy_environment_details, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -973,6 +1029,10 @@ def create_deploy_pipeline(self, create_deploy_pipeline_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DeployPipeline` :rtype: :class:`~oci.response.Response` @@ -984,6 +1044,7 @@ def create_deploy_pipeline(self, create_deploy_pipeline_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1050,6 +1111,10 @@ def create_deploy_stage(self, create_deploy_stage_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DeployStage` :rtype: :class:`~oci.response.Response` @@ -1061,6 +1126,7 @@ def create_deploy_stage(self, create_deploy_stage_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1127,6 +1193,10 @@ def create_deployment(self, create_deployment_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.Deployment` :rtype: :class:`~oci.response.Response` @@ -1138,6 +1208,7 @@ def create_deployment(self, create_deployment_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1204,6 +1275,10 @@ def create_project(self, create_project_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.Project` :rtype: :class:`~oci.response.Response` @@ -1215,6 +1290,7 @@ def create_project(self, create_project_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1281,6 +1357,10 @@ def create_repository(self, create_repository_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.Repository` :rtype: :class:`~oci.response.Response` @@ -1292,6 +1372,7 @@ def create_repository(self, create_repository_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1358,6 +1439,10 @@ def create_trigger(self, create_trigger_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.TriggerCreateResult` :rtype: :class:`~oci.response.Response` @@ -1369,6 +1454,7 @@ def create_trigger(self, create_trigger_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1435,6 +1521,10 @@ def delete_build_pipeline(self, build_pipeline_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1446,6 +1536,7 @@ def delete_build_pipeline(self, build_pipeline_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1519,6 +1610,10 @@ def delete_build_pipeline_stage(self, build_pipeline_stage_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1530,6 +1625,7 @@ def delete_build_pipeline_stage(self, build_pipeline_stage_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1603,6 +1699,10 @@ def delete_connection(self, connection_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1614,6 +1714,7 @@ def delete_connection(self, connection_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1687,6 +1788,10 @@ def delete_deploy_artifact(self, deploy_artifact_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1698,6 +1803,7 @@ def delete_deploy_artifact(self, deploy_artifact_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1771,6 +1877,10 @@ def delete_deploy_environment(self, deploy_environment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1782,6 +1892,7 @@ def delete_deploy_environment(self, deploy_environment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1855,6 +1966,10 @@ def delete_deploy_pipeline(self, deploy_pipeline_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1866,6 +1981,7 @@ def delete_deploy_pipeline(self, deploy_pipeline_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1939,6 +2055,10 @@ def delete_deploy_stage(self, deploy_stage_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1950,6 +2070,7 @@ def delete_deploy_stage(self, deploy_stage_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2023,6 +2144,10 @@ def delete_project(self, project_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2034,6 +2159,7 @@ def delete_project(self, project_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2113,6 +2239,10 @@ def delete_ref(self, repository_id, ref_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2124,6 +2254,7 @@ def delete_ref(self, repository_id, ref_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -2201,6 +2332,10 @@ def delete_repository(self, repository_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2212,6 +2347,7 @@ def delete_repository(self, repository_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2285,6 +2421,10 @@ def delete_trigger(self, trigger_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2296,6 +2436,7 @@ def delete_trigger(self, trigger_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2366,6 +2507,10 @@ def get_build_pipeline(self, build_pipeline_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.BuildPipeline` :rtype: :class:`~oci.response.Response` @@ -2377,6 +2522,7 @@ def get_build_pipeline(self, build_pipeline_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2447,6 +2593,10 @@ def get_build_pipeline_stage(self, build_pipeline_stage_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.BuildPipelineStage` :rtype: :class:`~oci.response.Response` @@ -2458,6 +2608,7 @@ def get_build_pipeline_stage(self, build_pipeline_stage_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2528,6 +2679,10 @@ def get_build_run(self, build_run_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.BuildRun` :rtype: :class:`~oci.response.Response` @@ -2539,6 +2694,7 @@ def get_build_run(self, build_run_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2612,6 +2768,10 @@ def get_commit(self, repository_id, commit_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.RepositoryCommit` :rtype: :class:`~oci.response.Response` @@ -2623,6 +2783,7 @@ def get_commit(self, repository_id, commit_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2703,6 +2864,10 @@ def get_commit_diff(self, repository_id, target_version, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DiffResponse` :rtype: :class:`~oci.response.Response` @@ -2714,6 +2879,7 @@ def get_commit_diff(self, repository_id, target_version, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "base_version", "is_comparison_from_merge_base", @@ -2795,6 +2961,10 @@ def get_connection(self, connection_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.Connection` :rtype: :class:`~oci.response.Response` @@ -2806,6 +2976,7 @@ def get_connection(self, connection_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2876,6 +3047,10 @@ def get_deploy_artifact(self, deploy_artifact_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DeployArtifact` :rtype: :class:`~oci.response.Response` @@ -2887,6 +3062,7 @@ def get_deploy_artifact(self, deploy_artifact_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2957,6 +3133,10 @@ def get_deploy_environment(self, deploy_environment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DeployEnvironment` :rtype: :class:`~oci.response.Response` @@ -2968,6 +3148,7 @@ def get_deploy_environment(self, deploy_environment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3038,6 +3219,10 @@ def get_deploy_pipeline(self, deploy_pipeline_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DeployPipeline` :rtype: :class:`~oci.response.Response` @@ -3049,6 +3234,7 @@ def get_deploy_pipeline(self, deploy_pipeline_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3119,6 +3305,10 @@ def get_deploy_stage(self, deploy_stage_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DeployStage` :rtype: :class:`~oci.response.Response` @@ -3130,6 +3320,7 @@ def get_deploy_stage(self, deploy_stage_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3200,6 +3391,10 @@ def get_deployment(self, deployment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.Deployment` :rtype: :class:`~oci.response.Response` @@ -3211,6 +3406,7 @@ def get_deployment(self, deployment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3293,6 +3489,10 @@ def get_file_diff(self, repository_id, file_path, base_version, target_version, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.FileDiffResponse` :rtype: :class:`~oci.response.Response` @@ -3304,6 +3504,7 @@ def get_file_diff(self, repository_id, file_path, base_version, target_version, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "is_comparison_from_merge_base", "opc_request_id" @@ -3392,6 +3593,10 @@ def get_mirror_record(self, repository_id, mirror_record_type, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.RepositoryMirrorRecord` :rtype: :class:`~oci.response.Response` @@ -3403,6 +3608,7 @@ def get_mirror_record(self, repository_id, mirror_record_type, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3480,6 +3686,10 @@ def get_object(self, repository_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.RepositoryObject` :rtype: :class:`~oci.response.Response` @@ -3491,6 +3701,7 @@ def get_object(self, repository_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "file_path", "ref_name", @@ -3577,6 +3788,10 @@ def get_object_content(self, repository_id, sha, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -3588,6 +3803,7 @@ def get_object_content(self, repository_id, sha, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "file_path", "opc_request_id" @@ -3667,6 +3883,10 @@ def get_project(self, project_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.Project` :rtype: :class:`~oci.response.Response` @@ -3678,6 +3898,7 @@ def get_project(self, project_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3751,6 +3972,10 @@ def get_ref(self, repository_id, ref_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.RepositoryRef` :rtype: :class:`~oci.response.Response` @@ -3762,6 +3987,7 @@ def get_ref(self, repository_id, ref_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3838,6 +4064,10 @@ def get_repository(self, repository_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.Repository` :rtype: :class:`~oci.response.Response` @@ -3849,6 +4079,7 @@ def get_repository(self, repository_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "fields" @@ -3941,6 +4172,10 @@ def get_repository_archive_content(self, repository_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -3952,6 +4187,7 @@ def get_repository_archive_content(self, repository_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "ref_name", "format", @@ -4044,6 +4280,10 @@ def get_repository_file_lines(self, repository_id, file_path, revision, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.RepositoryFileLines` :rtype: :class:`~oci.response.Response` @@ -4055,6 +4295,7 @@ def get_repository_file_lines(self, repository_id, file_path, revision, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "start_line_number", "limit", @@ -4137,6 +4378,10 @@ def get_trigger(self, trigger_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.Trigger` :rtype: :class:`~oci.response.Response` @@ -4148,6 +4393,7 @@ def get_trigger(self, trigger_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -4218,6 +4464,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -4229,6 +4479,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -4313,6 +4564,10 @@ def list_authors(self, repository_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.RepositoryAuthorCollection` :rtype: :class:`~oci.response.Response` @@ -4324,6 +4579,7 @@ def list_authors(self, repository_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "ref_name", "limit", @@ -4445,6 +4701,10 @@ def list_build_pipeline_stages(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.BuildPipelineStageCollection` :rtype: :class:`~oci.response.Response` @@ -4456,6 +4716,7 @@ def list_build_pipeline_stages(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "build_pipeline_id", @@ -4589,6 +4850,10 @@ def list_build_pipelines(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.BuildPipelineCollection` :rtype: :class:`~oci.response.Response` @@ -4600,6 +4865,7 @@ def list_build_pipelines(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "project_id", @@ -4736,6 +5002,10 @@ def list_build_runs(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.BuildRunSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -4747,6 +5017,7 @@ def list_build_runs(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "build_pipeline_id", @@ -4867,6 +5138,10 @@ def list_commit_diffs(self, repository_id, base_version, target_version, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DiffCollection` :rtype: :class:`~oci.response.Response` @@ -4878,6 +5153,7 @@ def list_commit_diffs(self, repository_id, base_version, target_version, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "is_comparison_from_merge_base", "limit", @@ -4989,6 +5265,10 @@ def list_commits(self, repository_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.RepositoryCommitCollection` :rtype: :class:`~oci.response.Response` @@ -5000,6 +5280,7 @@ def list_commits(self, repository_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "ref_name", "exclude_ref_name", @@ -5129,6 +5410,10 @@ def list_connections(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.ConnectionCollection` :rtype: :class:`~oci.response.Response` @@ -5140,6 +5425,7 @@ def list_connections(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "project_id", @@ -5282,6 +5568,10 @@ def list_deploy_artifacts(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DeployArtifactCollection` :rtype: :class:`~oci.response.Response` @@ -5293,6 +5583,7 @@ def list_deploy_artifacts(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "project_id", @@ -5426,6 +5717,10 @@ def list_deploy_environments(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DeployEnvironmentCollection` :rtype: :class:`~oci.response.Response` @@ -5437,6 +5732,7 @@ def list_deploy_environments(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "project_id", "compartment_id", @@ -5570,6 +5866,10 @@ def list_deploy_pipelines(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DeployPipelineCollection` :rtype: :class:`~oci.response.Response` @@ -5581,6 +5881,7 @@ def list_deploy_pipelines(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "project_id", @@ -5714,6 +6015,10 @@ def list_deploy_stages(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DeployStageCollection` :rtype: :class:`~oci.response.Response` @@ -5725,6 +6030,7 @@ def list_deploy_stages(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "deploy_pipeline_id", @@ -5871,6 +6177,10 @@ def list_deployments(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DeploymentCollection` :rtype: :class:`~oci.response.Response` @@ -5882,6 +6192,7 @@ def list_deployments(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "deploy_pipeline_id", "id", @@ -6002,6 +6313,10 @@ def list_mirror_records(self, repository_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.RepositoryMirrorRecordCollection` :rtype: :class:`~oci.response.Response` @@ -6013,6 +6328,7 @@ def list_mirror_records(self, repository_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -6131,6 +6447,10 @@ def list_paths(self, repository_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.RepositoryPathCollection` :rtype: :class:`~oci.response.Response` @@ -6142,6 +6462,7 @@ def list_paths(self, repository_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "ref", "paths_in_subtree", @@ -6275,6 +6596,10 @@ def list_projects(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.ProjectCollection` :rtype: :class:`~oci.response.Response` @@ -6286,6 +6611,7 @@ def list_projects(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "lifecycle_state", @@ -6413,6 +6739,10 @@ def list_refs(self, repository_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.RepositoryRefCollection` :rtype: :class:`~oci.response.Response` @@ -6424,6 +6754,7 @@ def list_refs(self, repository_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "ref_type", "commit_id", @@ -6565,6 +6896,10 @@ def list_repositories(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.RepositoryCollection` :rtype: :class:`~oci.response.Response` @@ -6576,6 +6911,7 @@ def list_repositories(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "project_id", @@ -6709,6 +7045,10 @@ def list_triggers(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.TriggerCollection` :rtype: :class:`~oci.response.Response` @@ -6720,6 +7060,7 @@ def list_triggers(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "project_id", @@ -6839,6 +7180,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -6850,6 +7195,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -6964,6 +7310,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -6975,6 +7325,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -7100,6 +7451,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.WorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -7111,6 +7466,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "work_request_id", "status", @@ -7214,6 +7570,10 @@ def mirror_repository(self, repository_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7225,6 +7585,7 @@ def mirror_repository(self, repository_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -7307,6 +7668,10 @@ def put_repository_ref(self, repository_id, ref_name, put_repository_ref_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.RepositoryRef` :rtype: :class:`~oci.response.Response` @@ -7318,6 +7683,7 @@ def put_repository_ref(self, repository_id, ref_name, put_repository_ref_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -7402,6 +7768,10 @@ def update_build_pipeline(self, build_pipeline_id, update_build_pipeline_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.BuildPipeline` :rtype: :class:`~oci.response.Response` @@ -7413,6 +7783,7 @@ def update_build_pipeline(self, build_pipeline_id, update_build_pipeline_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -7493,6 +7864,10 @@ def update_build_pipeline_stage(self, build_pipeline_stage_id, update_build_pipe To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.BuildPipelineStage` :rtype: :class:`~oci.response.Response` @@ -7504,6 +7879,7 @@ def update_build_pipeline_stage(self, build_pipeline_stage_id, update_build_pipe # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -7584,6 +7960,10 @@ def update_build_run(self, build_run_id, update_build_run_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.BuildRun` :rtype: :class:`~oci.response.Response` @@ -7595,6 +7975,7 @@ def update_build_run(self, build_run_id, update_build_run_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -7675,6 +8056,10 @@ def update_connection(self, connection_id, update_connection_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.Connection` :rtype: :class:`~oci.response.Response` @@ -7686,6 +8071,7 @@ def update_connection(self, connection_id, update_connection_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -7766,6 +8152,10 @@ def update_deploy_artifact(self, deploy_artifact_id, update_deploy_artifact_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DeployArtifact` :rtype: :class:`~oci.response.Response` @@ -7777,6 +8167,7 @@ def update_deploy_artifact(self, deploy_artifact_id, update_deploy_artifact_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -7857,6 +8248,10 @@ def update_deploy_environment(self, deploy_environment_id, update_deploy_environ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DeployEnvironment` :rtype: :class:`~oci.response.Response` @@ -7868,6 +8263,7 @@ def update_deploy_environment(self, deploy_environment_id, update_deploy_environ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -7948,6 +8344,10 @@ def update_deploy_pipeline(self, deploy_pipeline_id, update_deploy_pipeline_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DeployPipeline` :rtype: :class:`~oci.response.Response` @@ -7959,6 +8359,7 @@ def update_deploy_pipeline(self, deploy_pipeline_id, update_deploy_pipeline_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -8039,6 +8440,10 @@ def update_deploy_stage(self, deploy_stage_id, update_deploy_stage_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.DeployStage` :rtype: :class:`~oci.response.Response` @@ -8050,6 +8455,7 @@ def update_deploy_stage(self, deploy_stage_id, update_deploy_stage_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -8130,6 +8536,10 @@ def update_deployment(self, deployment_id, update_deployment_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.Deployment` :rtype: :class:`~oci.response.Response` @@ -8141,6 +8551,7 @@ def update_deployment(self, deployment_id, update_deployment_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -8221,6 +8632,10 @@ def update_project(self, project_id, update_project_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.Project` :rtype: :class:`~oci.response.Response` @@ -8232,6 +8647,7 @@ def update_project(self, project_id, update_project_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -8312,6 +8728,10 @@ def update_repository(self, repository_id, update_repository_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.Repository` :rtype: :class:`~oci.response.Response` @@ -8323,6 +8743,7 @@ def update_repository(self, repository_id, update_repository_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -8403,6 +8824,10 @@ def update_trigger(self, trigger_id, update_trigger_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.devops.models.Trigger` :rtype: :class:`~oci.response.Response` @@ -8414,6 +8839,7 @@ def update_trigger(self, trigger_id, update_trigger_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/devops/devops_client_composite_operations.py b/src/oci/devops/devops_client_composite_operations.py index 915721946e..5784c2cf83 100644 --- a/src/oci/devops/devops_client_composite_operations.py +++ b/src/oci/devops/devops_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/devops/models/__init__.py b/src/oci/devops/models/__init__.py index 7e0f2af882..00a0dc6626 100644 --- a/src/oci/devops/models/__init__.py +++ b/src/oci/devops/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/devops/models/absolute_wait_criteria.py b/src/oci/devops/models/absolute_wait_criteria.py index 8a55ff0a08..cd57255283 100644 --- a/src/oci/devops/models/absolute_wait_criteria.py +++ b/src/oci/devops/models/absolute_wait_criteria.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .wait_criteria import WaitCriteria diff --git a/src/oci/devops/models/absolute_wait_criteria_summary.py b/src/oci/devops/models/absolute_wait_criteria_summary.py index 361575fe3c..5abd54f8d0 100644 --- a/src/oci/devops/models/absolute_wait_criteria_summary.py +++ b/src/oci/devops/models/absolute_wait_criteria_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .wait_criteria_summary import WaitCriteriaSummary diff --git a/src/oci/devops/models/actual_build_runner_shape_config.py b/src/oci/devops/models/actual_build_runner_shape_config.py index 075b46dc21..03d5b799f7 100644 --- a/src/oci/devops/models/actual_build_runner_shape_config.py +++ b/src/oci/devops/models/actual_build_runner_shape_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/approval_action.py b/src/oci/devops/models/approval_action.py index 60ec4c78f2..e1dc3dc2c1 100644 --- a/src/oci/devops/models/approval_action.py +++ b/src/oci/devops/models/approval_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/approval_policy.py b/src/oci/devops/models/approval_policy.py index 1969b100b3..f04b4db0c2 100644 --- a/src/oci/devops/models/approval_policy.py +++ b/src/oci/devops/models/approval_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/approve_deployment_details.py b/src/oci/devops/models/approve_deployment_details.py index b5aca3fa17..71288c91a3 100644 --- a/src/oci/devops/models/approve_deployment_details.py +++ b/src/oci/devops/models/approve_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/automated_deploy_stage_rollback_policy.py b/src/oci/devops/models/automated_deploy_stage_rollback_policy.py index 1ac3be4f79..584ccfdc69 100644 --- a/src/oci/devops/models/automated_deploy_stage_rollback_policy.py +++ b/src/oci/devops/models/automated_deploy_stage_rollback_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_rollback_policy import DeployStageRollbackPolicy diff --git a/src/oci/devops/models/backend_set_ip_collection.py b/src/oci/devops/models/backend_set_ip_collection.py index ec9c069db0..f19f053504 100644 --- a/src/oci/devops/models/backend_set_ip_collection.py +++ b/src/oci/devops/models/backend_set_ip_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_outputs.py b/src/oci/devops/models/build_outputs.py index f2a0dadcf5..e64a04c2bd 100644 --- a/src/oci/devops/models/build_outputs.py +++ b/src/oci/devops/models/build_outputs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_pipeline.py b/src/oci/devops/models/build_pipeline.py index 6b0ed7f800..1780bc391d 100644 --- a/src/oci/devops/models/build_pipeline.py +++ b/src/oci/devops/models/build_pipeline.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_pipeline_collection.py b/src/oci/devops/models/build_pipeline_collection.py index 6c22bede3b..6ada3681d6 100644 --- a/src/oci/devops/models/build_pipeline_collection.py +++ b/src/oci/devops/models/build_pipeline_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_pipeline_parameter.py b/src/oci/devops/models/build_pipeline_parameter.py index f01acc44e1..96bf4687ef 100644 --- a/src/oci/devops/models/build_pipeline_parameter.py +++ b/src/oci/devops/models/build_pipeline_parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_pipeline_parameter_collection.py b/src/oci/devops/models/build_pipeline_parameter_collection.py index 5f5687402f..be79c0b37b 100644 --- a/src/oci/devops/models/build_pipeline_parameter_collection.py +++ b/src/oci/devops/models/build_pipeline_parameter_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_pipeline_stage.py b/src/oci/devops/models/build_pipeline_stage.py index 0cecfa583f..8b46af15ba 100644 --- a/src/oci/devops/models/build_pipeline_stage.py +++ b/src/oci/devops/models/build_pipeline_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_pipeline_stage_collection.py b/src/oci/devops/models/build_pipeline_stage_collection.py index c6c247b767..675209a020 100644 --- a/src/oci/devops/models/build_pipeline_stage_collection.py +++ b/src/oci/devops/models/build_pipeline_stage_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_pipeline_stage_predecessor.py b/src/oci/devops/models/build_pipeline_stage_predecessor.py index 47779d6c1d..dafbcc8391 100644 --- a/src/oci/devops/models/build_pipeline_stage_predecessor.py +++ b/src/oci/devops/models/build_pipeline_stage_predecessor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_pipeline_stage_predecessor_collection.py b/src/oci/devops/models/build_pipeline_stage_predecessor_collection.py index 2f392da124..7d1e808039 100644 --- a/src/oci/devops/models/build_pipeline_stage_predecessor_collection.py +++ b/src/oci/devops/models/build_pipeline_stage_predecessor_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_pipeline_stage_run_progress.py b/src/oci/devops/models/build_pipeline_stage_run_progress.py index 70dfa336e0..b03fe50964 100644 --- a/src/oci/devops/models/build_pipeline_stage_run_progress.py +++ b/src/oci/devops/models/build_pipeline_stage_run_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_pipeline_stage_summary.py b/src/oci/devops/models/build_pipeline_stage_summary.py index 04f645d0ff..ca85eb6afc 100644 --- a/src/oci/devops/models/build_pipeline_stage_summary.py +++ b/src/oci/devops/models/build_pipeline_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_pipeline_summary.py b/src/oci/devops/models/build_pipeline_summary.py index 68441861a3..ec0dd42e6a 100644 --- a/src/oci/devops/models/build_pipeline_summary.py +++ b/src/oci/devops/models/build_pipeline_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_run.py b/src/oci/devops/models/build_run.py index 829b37fb79..2be3fed616 100644 --- a/src/oci/devops/models/build_run.py +++ b/src/oci/devops/models/build_run.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_run_argument.py b/src/oci/devops/models/build_run_argument.py index 044ce06564..ff95df0b7a 100644 --- a/src/oci/devops/models/build_run_argument.py +++ b/src/oci/devops/models/build_run_argument.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_run_argument_collection.py b/src/oci/devops/models/build_run_argument_collection.py index 319348693c..804fad71e6 100644 --- a/src/oci/devops/models/build_run_argument_collection.py +++ b/src/oci/devops/models/build_run_argument_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_run_progress.py b/src/oci/devops/models/build_run_progress.py index 10e3b1d9a5..fc8a612ca6 100644 --- a/src/oci/devops/models/build_run_progress.py +++ b/src/oci/devops/models/build_run_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_run_progress_summary.py b/src/oci/devops/models/build_run_progress_summary.py index 292efb2bc1..b2c1800abe 100644 --- a/src/oci/devops/models/build_run_progress_summary.py +++ b/src/oci/devops/models/build_run_progress_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_run_source.py b/src/oci/devops/models/build_run_source.py index 98adb70fa4..8b41504c90 100644 --- a/src/oci/devops/models/build_run_source.py +++ b/src/oci/devops/models/build_run_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_run_summary.py b/src/oci/devops/models/build_run_summary.py index a3bc5ffd5a..8e38bb8872 100644 --- a/src/oci/devops/models/build_run_summary.py +++ b/src/oci/devops/models/build_run_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_run_summary_collection.py b/src/oci/devops/models/build_run_summary_collection.py index 2ff22a2076..742c2e31c7 100644 --- a/src/oci/devops/models/build_run_summary_collection.py +++ b/src/oci/devops/models/build_run_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_source.py b/src/oci/devops/models/build_source.py index 6f9d50ee87..acbc2646e8 100644 --- a/src/oci/devops/models/build_source.py +++ b/src/oci/devops/models/build_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_source_collection.py b/src/oci/devops/models/build_source_collection.py index b4608043ba..1d3c1cd14d 100644 --- a/src/oci/devops/models/build_source_collection.py +++ b/src/oci/devops/models/build_source_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_stage.py b/src/oci/devops/models/build_stage.py index 4f2ebe6ee5..06a6992f7c 100644 --- a/src/oci/devops/models/build_stage.py +++ b/src/oci/devops/models/build_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_pipeline_stage import BuildPipelineStage diff --git a/src/oci/devops/models/build_stage_run_progress.py b/src/oci/devops/models/build_stage_run_progress.py index d8540e13ed..dc8ec8bf6b 100644 --- a/src/oci/devops/models/build_stage_run_progress.py +++ b/src/oci/devops/models/build_stage_run_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_pipeline_stage_run_progress import BuildPipelineStageRunProgress diff --git a/src/oci/devops/models/build_stage_run_step.py b/src/oci/devops/models/build_stage_run_step.py index 3f4c533432..df60e3bb29 100644 --- a/src/oci/devops/models/build_stage_run_step.py +++ b/src/oci/devops/models/build_stage_run_step.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/build_stage_summary.py b/src/oci/devops/models/build_stage_summary.py index 0b16496512..78025245a8 100644 --- a/src/oci/devops/models/build_stage_summary.py +++ b/src/oci/devops/models/build_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_pipeline_stage_summary import BuildPipelineStageSummary diff --git a/src/oci/devops/models/cancel_build_run_details.py b/src/oci/devops/models/cancel_build_run_details.py index 8c6a39c536..cc99ba26df 100644 --- a/src/oci/devops/models/cancel_build_run_details.py +++ b/src/oci/devops/models/cancel_build_run_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/cancel_deployment_details.py b/src/oci/devops/models/cancel_deployment_details.py index b59e4444aa..745e1a58f7 100644 --- a/src/oci/devops/models/cancel_deployment_details.py +++ b/src/oci/devops/models/cancel_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/change_project_compartment_details.py b/src/oci/devops/models/change_project_compartment_details.py index f1e85bf53b..74fe5967e5 100644 --- a/src/oci/devops/models/change_project_compartment_details.py +++ b/src/oci/devops/models/change_project_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/commit_info.py b/src/oci/devops/models/commit_info.py index 63bee9eb71..96caf5a2e8 100644 --- a/src/oci/devops/models/commit_info.py +++ b/src/oci/devops/models/commit_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/compute_instance_group_blue_green_deploy_stage_execution_progress.py b/src/oci/devops/models/compute_instance_group_blue_green_deploy_stage_execution_progress.py index ced9798607..500a320df9 100644 --- a/src/oci/devops/models/compute_instance_group_blue_green_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/compute_instance_group_blue_green_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_execution_progress import DeployStageExecutionProgress diff --git a/src/oci/devops/models/compute_instance_group_blue_green_traffic_shift_deploy_stage_execution_progress.py b/src/oci/devops/models/compute_instance_group_blue_green_traffic_shift_deploy_stage_execution_progress.py index 78873c5a92..7c2d5d65b8 100644 --- a/src/oci/devops/models/compute_instance_group_blue_green_traffic_shift_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/compute_instance_group_blue_green_traffic_shift_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_execution_progress import DeployStageExecutionProgress diff --git a/src/oci/devops/models/compute_instance_group_by_ids_selector.py b/src/oci/devops/models/compute_instance_group_by_ids_selector.py index 8427187d81..18ad3adf95 100644 --- a/src/oci/devops/models/compute_instance_group_by_ids_selector.py +++ b/src/oci/devops/models/compute_instance_group_by_ids_selector.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .compute_instance_group_selector import ComputeInstanceGroupSelector diff --git a/src/oci/devops/models/compute_instance_group_by_query_selector.py b/src/oci/devops/models/compute_instance_group_by_query_selector.py index 4a5e6a81b8..02882415f9 100644 --- a/src/oci/devops/models/compute_instance_group_by_query_selector.py +++ b/src/oci/devops/models/compute_instance_group_by_query_selector.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .compute_instance_group_selector import ComputeInstanceGroupSelector diff --git a/src/oci/devops/models/compute_instance_group_canary_approval_deploy_stage_execution_progress.py b/src/oci/devops/models/compute_instance_group_canary_approval_deploy_stage_execution_progress.py index 5d5d504ad5..284b52b177 100644 --- a/src/oci/devops/models/compute_instance_group_canary_approval_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/compute_instance_group_canary_approval_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_execution_progress import DeployStageExecutionProgress diff --git a/src/oci/devops/models/compute_instance_group_canary_deploy_stage_execution_progress.py b/src/oci/devops/models/compute_instance_group_canary_deploy_stage_execution_progress.py index 1a5cffb57e..3f6853fde9 100644 --- a/src/oci/devops/models/compute_instance_group_canary_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/compute_instance_group_canary_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_execution_progress import DeployStageExecutionProgress diff --git a/src/oci/devops/models/compute_instance_group_canary_traffic_shift_deploy_stage_execution_progress.py b/src/oci/devops/models/compute_instance_group_canary_traffic_shift_deploy_stage_execution_progress.py index 08d37b7662..10d085f45a 100644 --- a/src/oci/devops/models/compute_instance_group_canary_traffic_shift_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/compute_instance_group_canary_traffic_shift_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_execution_progress import DeployStageExecutionProgress diff --git a/src/oci/devops/models/compute_instance_group_deploy_environment.py b/src/oci/devops/models/compute_instance_group_deploy_environment.py index d0846fd441..f9fc02c695 100644 --- a/src/oci/devops/models/compute_instance_group_deploy_environment.py +++ b/src/oci/devops/models/compute_instance_group_deploy_environment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_environment import DeployEnvironment diff --git a/src/oci/devops/models/compute_instance_group_deploy_environment_summary.py b/src/oci/devops/models/compute_instance_group_deploy_environment_summary.py index f59628ff55..3af884a8fc 100644 --- a/src/oci/devops/models/compute_instance_group_deploy_environment_summary.py +++ b/src/oci/devops/models/compute_instance_group_deploy_environment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_environment_summary import DeployEnvironmentSummary diff --git a/src/oci/devops/models/compute_instance_group_deploy_stage.py b/src/oci/devops/models/compute_instance_group_deploy_stage.py index e9e1682c9e..26c9447061 100644 --- a/src/oci/devops/models/compute_instance_group_deploy_stage.py +++ b/src/oci/devops/models/compute_instance_group_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage import DeployStage diff --git a/src/oci/devops/models/compute_instance_group_deploy_stage_execution_progress.py b/src/oci/devops/models/compute_instance_group_deploy_stage_execution_progress.py index 5bb73a1105..1214ae5c66 100644 --- a/src/oci/devops/models/compute_instance_group_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/compute_instance_group_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_execution_progress import DeployStageExecutionProgress diff --git a/src/oci/devops/models/compute_instance_group_deploy_stage_summary.py b/src/oci/devops/models/compute_instance_group_deploy_stage_summary.py index 05aed744ff..ab9b960500 100644 --- a/src/oci/devops/models/compute_instance_group_deploy_stage_summary.py +++ b/src/oci/devops/models/compute_instance_group_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_summary import DeployStageSummary diff --git a/src/oci/devops/models/compute_instance_group_failure_policy.py b/src/oci/devops/models/compute_instance_group_failure_policy.py index 1da32e1b94..83d106a2b5 100644 --- a/src/oci/devops/models/compute_instance_group_failure_policy.py +++ b/src/oci/devops/models/compute_instance_group_failure_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/compute_instance_group_failure_policy_by_count.py b/src/oci/devops/models/compute_instance_group_failure_policy_by_count.py index 16d592ef1d..f72f62ec9a 100644 --- a/src/oci/devops/models/compute_instance_group_failure_policy_by_count.py +++ b/src/oci/devops/models/compute_instance_group_failure_policy_by_count.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .compute_instance_group_failure_policy import ComputeInstanceGroupFailurePolicy diff --git a/src/oci/devops/models/compute_instance_group_failure_policy_by_percentage.py b/src/oci/devops/models/compute_instance_group_failure_policy_by_percentage.py index 429bb60c67..2d30cfdd53 100644 --- a/src/oci/devops/models/compute_instance_group_failure_policy_by_percentage.py +++ b/src/oci/devops/models/compute_instance_group_failure_policy_by_percentage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .compute_instance_group_failure_policy import ComputeInstanceGroupFailurePolicy diff --git a/src/oci/devops/models/compute_instance_group_linear_rollout_policy_by_count.py b/src/oci/devops/models/compute_instance_group_linear_rollout_policy_by_count.py index a395c87b3d..9b49d93bc6 100644 --- a/src/oci/devops/models/compute_instance_group_linear_rollout_policy_by_count.py +++ b/src/oci/devops/models/compute_instance_group_linear_rollout_policy_by_count.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .compute_instance_group_rollout_policy import ComputeInstanceGroupRolloutPolicy diff --git a/src/oci/devops/models/compute_instance_group_linear_rollout_policy_by_percentage.py b/src/oci/devops/models/compute_instance_group_linear_rollout_policy_by_percentage.py index ee9d684762..7ffbce78a7 100644 --- a/src/oci/devops/models/compute_instance_group_linear_rollout_policy_by_percentage.py +++ b/src/oci/devops/models/compute_instance_group_linear_rollout_policy_by_percentage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .compute_instance_group_rollout_policy import ComputeInstanceGroupRolloutPolicy diff --git a/src/oci/devops/models/compute_instance_group_rollout_policy.py b/src/oci/devops/models/compute_instance_group_rollout_policy.py index 53fe3e98ee..8f24f5f64e 100644 --- a/src/oci/devops/models/compute_instance_group_rollout_policy.py +++ b/src/oci/devops/models/compute_instance_group_rollout_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/compute_instance_group_selector.py b/src/oci/devops/models/compute_instance_group_selector.py index a144d89e6e..9cafa7961b 100644 --- a/src/oci/devops/models/compute_instance_group_selector.py +++ b/src/oci/devops/models/compute_instance_group_selector.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/compute_instance_group_selector_collection.py b/src/oci/devops/models/compute_instance_group_selector_collection.py index 7912409cb8..877f141083 100644 --- a/src/oci/devops/models/compute_instance_group_selector_collection.py +++ b/src/oci/devops/models/compute_instance_group_selector_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/connection.py b/src/oci/devops/models/connection.py index acd1c24669..d1498ef235 100644 --- a/src/oci/devops/models/connection.py +++ b/src/oci/devops/models/connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/connection_collection.py b/src/oci/devops/models/connection_collection.py index 877576ceb4..74afe0dd11 100644 --- a/src/oci/devops/models/connection_collection.py +++ b/src/oci/devops/models/connection_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/connection_summary.py b/src/oci/devops/models/connection_summary.py index 495ab4c94a..a2ba77f967 100644 --- a/src/oci/devops/models/connection_summary.py +++ b/src/oci/devops/models/connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/container_registry_delivered_artifact.py b/src/oci/devops/models/container_registry_delivered_artifact.py index 39f8792d5f..42a26e3bf4 100644 --- a/src/oci/devops/models/container_registry_delivered_artifact.py +++ b/src/oci/devops/models/container_registry_delivered_artifact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .delivered_artifact import DeliveredArtifact diff --git a/src/oci/devops/models/count_based_approval_policy.py b/src/oci/devops/models/count_based_approval_policy.py index e883dbb369..8c6029fd9d 100644 --- a/src/oci/devops/models/count_based_approval_policy.py +++ b/src/oci/devops/models/count_based_approval_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .approval_policy import ApprovalPolicy diff --git a/src/oci/devops/models/create_absolute_wait_criteria_details.py b/src/oci/devops/models/create_absolute_wait_criteria_details.py index 817a70e897..4d5d8141ab 100644 --- a/src/oci/devops/models/create_absolute_wait_criteria_details.py +++ b/src/oci/devops/models/create_absolute_wait_criteria_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_wait_criteria_details import CreateWaitCriteriaDetails diff --git a/src/oci/devops/models/create_build_pipeline_details.py b/src/oci/devops/models/create_build_pipeline_details.py index 4189396f20..2518eaad23 100644 --- a/src/oci/devops/models/create_build_pipeline_details.py +++ b/src/oci/devops/models/create_build_pipeline_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/create_build_pipeline_stage_details.py b/src/oci/devops/models/create_build_pipeline_stage_details.py index 02c2f751de..245da0fdc1 100644 --- a/src/oci/devops/models/create_build_pipeline_stage_details.py +++ b/src/oci/devops/models/create_build_pipeline_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/create_build_run_details.py b/src/oci/devops/models/create_build_run_details.py index 0239c7c094..65945e1802 100644 --- a/src/oci/devops/models/create_build_run_details.py +++ b/src/oci/devops/models/create_build_run_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/create_build_stage_details.py b/src/oci/devops/models/create_build_stage_details.py index 8a23fb12fd..b064f42b64 100644 --- a/src/oci/devops/models/create_build_stage_details.py +++ b/src/oci/devops/models/create_build_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_build_pipeline_stage_details import CreateBuildPipelineStageDetails diff --git a/src/oci/devops/models/create_compute_instance_group_deploy_environment_details.py b/src/oci/devops/models/create_compute_instance_group_deploy_environment_details.py index 91cd1584c7..7c5ec7947e 100644 --- a/src/oci/devops/models/create_compute_instance_group_deploy_environment_details.py +++ b/src/oci/devops/models/create_compute_instance_group_deploy_environment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_deploy_environment_details import CreateDeployEnvironmentDetails diff --git a/src/oci/devops/models/create_compute_instance_group_deploy_stage_details.py b/src/oci/devops/models/create_compute_instance_group_deploy_stage_details.py index e78e7b4637..b8f9d9075e 100644 --- a/src/oci/devops/models/create_compute_instance_group_deploy_stage_details.py +++ b/src/oci/devops/models/create_compute_instance_group_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_deploy_stage_details import CreateDeployStageDetails diff --git a/src/oci/devops/models/create_connection_details.py b/src/oci/devops/models/create_connection_details.py index 9991dcea70..f4212a6c83 100644 --- a/src/oci/devops/models/create_connection_details.py +++ b/src/oci/devops/models/create_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/create_deliver_artifact_stage_details.py b/src/oci/devops/models/create_deliver_artifact_stage_details.py index 8cbd1a8ce5..c21c57e4ff 100644 --- a/src/oci/devops/models/create_deliver_artifact_stage_details.py +++ b/src/oci/devops/models/create_deliver_artifact_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_build_pipeline_stage_details import CreateBuildPipelineStageDetails diff --git a/src/oci/devops/models/create_deploy_artifact_details.py b/src/oci/devops/models/create_deploy_artifact_details.py index 89331d5c12..2fa3c345dd 100644 --- a/src/oci/devops/models/create_deploy_artifact_details.py +++ b/src/oci/devops/models/create_deploy_artifact_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/create_deploy_environment_details.py b/src/oci/devops/models/create_deploy_environment_details.py index 530c408b7a..489744587b 100644 --- a/src/oci/devops/models/create_deploy_environment_details.py +++ b/src/oci/devops/models/create_deploy_environment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/create_deploy_pipeline_deployment_details.py b/src/oci/devops/models/create_deploy_pipeline_deployment_details.py index 2764c0dc74..2820a0c47f 100644 --- a/src/oci/devops/models/create_deploy_pipeline_deployment_details.py +++ b/src/oci/devops/models/create_deploy_pipeline_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_deployment_details import CreateDeploymentDetails diff --git a/src/oci/devops/models/create_deploy_pipeline_details.py b/src/oci/devops/models/create_deploy_pipeline_details.py index c73e377e3f..b06f79747f 100644 --- a/src/oci/devops/models/create_deploy_pipeline_details.py +++ b/src/oci/devops/models/create_deploy_pipeline_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/create_deploy_pipeline_redeployment_details.py b/src/oci/devops/models/create_deploy_pipeline_redeployment_details.py index 42750e7ccf..2d0d84079a 100644 --- a/src/oci/devops/models/create_deploy_pipeline_redeployment_details.py +++ b/src/oci/devops/models/create_deploy_pipeline_redeployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_deployment_details import CreateDeploymentDetails diff --git a/src/oci/devops/models/create_deploy_stage_details.py b/src/oci/devops/models/create_deploy_stage_details.py index b4e90f4f4b..35df0734af 100644 --- a/src/oci/devops/models/create_deploy_stage_details.py +++ b/src/oci/devops/models/create_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/create_deployment_details.py b/src/oci/devops/models/create_deployment_details.py index 3cb7b43727..790cd3fcce 100644 --- a/src/oci/devops/models/create_deployment_details.py +++ b/src/oci/devops/models/create_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/create_devops_code_repository_trigger_details.py b/src/oci/devops/models/create_devops_code_repository_trigger_details.py index c05c6fb874..315cc4ead3 100644 --- a/src/oci/devops/models/create_devops_code_repository_trigger_details.py +++ b/src/oci/devops/models/create_devops_code_repository_trigger_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_trigger_details import CreateTriggerDetails diff --git a/src/oci/devops/models/create_function_deploy_environment_details.py b/src/oci/devops/models/create_function_deploy_environment_details.py index c9f5a68f78..d3180826ec 100644 --- a/src/oci/devops/models/create_function_deploy_environment_details.py +++ b/src/oci/devops/models/create_function_deploy_environment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_deploy_environment_details import CreateDeployEnvironmentDetails diff --git a/src/oci/devops/models/create_function_deploy_stage_details.py b/src/oci/devops/models/create_function_deploy_stage_details.py index f9a430dbb0..748963ad72 100644 --- a/src/oci/devops/models/create_function_deploy_stage_details.py +++ b/src/oci/devops/models/create_function_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_deploy_stage_details import CreateDeployStageDetails diff --git a/src/oci/devops/models/create_github_access_token_connection_details.py b/src/oci/devops/models/create_github_access_token_connection_details.py index f03d64a8e0..16b8c74597 100644 --- a/src/oci/devops/models/create_github_access_token_connection_details.py +++ b/src/oci/devops/models/create_github_access_token_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_connection_details import CreateConnectionDetails diff --git a/src/oci/devops/models/create_github_trigger_details.py b/src/oci/devops/models/create_github_trigger_details.py index 5e38c7ee21..ac7e0cc4d6 100644 --- a/src/oci/devops/models/create_github_trigger_details.py +++ b/src/oci/devops/models/create_github_trigger_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_trigger_details import CreateTriggerDetails diff --git a/src/oci/devops/models/create_gitlab_access_token_connection_details.py b/src/oci/devops/models/create_gitlab_access_token_connection_details.py index 4fa9a1911c..1488730fde 100644 --- a/src/oci/devops/models/create_gitlab_access_token_connection_details.py +++ b/src/oci/devops/models/create_gitlab_access_token_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_connection_details import CreateConnectionDetails diff --git a/src/oci/devops/models/create_gitlab_trigger_details.py b/src/oci/devops/models/create_gitlab_trigger_details.py index 1552e92404..0425b0e2ea 100644 --- a/src/oci/devops/models/create_gitlab_trigger_details.py +++ b/src/oci/devops/models/create_gitlab_trigger_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_trigger_details import CreateTriggerDetails diff --git a/src/oci/devops/models/create_invoke_function_deploy_stage_details.py b/src/oci/devops/models/create_invoke_function_deploy_stage_details.py index 8c2802123e..d7f2bf923f 100644 --- a/src/oci/devops/models/create_invoke_function_deploy_stage_details.py +++ b/src/oci/devops/models/create_invoke_function_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_deploy_stage_details import CreateDeployStageDetails diff --git a/src/oci/devops/models/create_load_balancer_traffic_shift_deploy_stage_details.py b/src/oci/devops/models/create_load_balancer_traffic_shift_deploy_stage_details.py index da510983b2..cbf373b377 100644 --- a/src/oci/devops/models/create_load_balancer_traffic_shift_deploy_stage_details.py +++ b/src/oci/devops/models/create_load_balancer_traffic_shift_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_deploy_stage_details import CreateDeployStageDetails diff --git a/src/oci/devops/models/create_manual_approval_deploy_stage_details.py b/src/oci/devops/models/create_manual_approval_deploy_stage_details.py index 6c1c470a3f..635bfddab7 100644 --- a/src/oci/devops/models/create_manual_approval_deploy_stage_details.py +++ b/src/oci/devops/models/create_manual_approval_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_deploy_stage_details import CreateDeployStageDetails diff --git a/src/oci/devops/models/create_oke_cluster_deploy_environment_details.py b/src/oci/devops/models/create_oke_cluster_deploy_environment_details.py index dee0fcd56b..9a43dafb30 100644 --- a/src/oci/devops/models/create_oke_cluster_deploy_environment_details.py +++ b/src/oci/devops/models/create_oke_cluster_deploy_environment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_deploy_environment_details import CreateDeployEnvironmentDetails diff --git a/src/oci/devops/models/create_oke_deploy_stage_details.py b/src/oci/devops/models/create_oke_deploy_stage_details.py index 13fbbe6332..243a6d9c11 100644 --- a/src/oci/devops/models/create_oke_deploy_stage_details.py +++ b/src/oci/devops/models/create_oke_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_deploy_stage_details import CreateDeployStageDetails diff --git a/src/oci/devops/models/create_project_details.py b/src/oci/devops/models/create_project_details.py index a11bb3648d..dd30dd7d61 100644 --- a/src/oci/devops/models/create_project_details.py +++ b/src/oci/devops/models/create_project_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/create_repository_details.py b/src/oci/devops/models/create_repository_details.py index 9fdf411b4d..bbd264dbbc 100644 --- a/src/oci/devops/models/create_repository_details.py +++ b/src/oci/devops/models/create_repository_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/create_single_deploy_stage_deployment_details.py b/src/oci/devops/models/create_single_deploy_stage_deployment_details.py index 32393b235a..517791d511 100644 --- a/src/oci/devops/models/create_single_deploy_stage_deployment_details.py +++ b/src/oci/devops/models/create_single_deploy_stage_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_deployment_details import CreateDeploymentDetails diff --git a/src/oci/devops/models/create_trigger_deployment_stage_details.py b/src/oci/devops/models/create_trigger_deployment_stage_details.py index a195541071..57acd40e7f 100644 --- a/src/oci/devops/models/create_trigger_deployment_stage_details.py +++ b/src/oci/devops/models/create_trigger_deployment_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_build_pipeline_stage_details import CreateBuildPipelineStageDetails diff --git a/src/oci/devops/models/create_trigger_details.py b/src/oci/devops/models/create_trigger_details.py index 998e95d69b..e156d1c159 100644 --- a/src/oci/devops/models/create_trigger_details.py +++ b/src/oci/devops/models/create_trigger_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/create_wait_criteria_details.py b/src/oci/devops/models/create_wait_criteria_details.py index d95cc600c3..ab59cf1bd6 100644 --- a/src/oci/devops/models/create_wait_criteria_details.py +++ b/src/oci/devops/models/create_wait_criteria_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/create_wait_deploy_stage_details.py b/src/oci/devops/models/create_wait_deploy_stage_details.py index 00e0b07296..6c72f6bbd8 100644 --- a/src/oci/devops/models/create_wait_deploy_stage_details.py +++ b/src/oci/devops/models/create_wait_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_deploy_stage_details import CreateDeployStageDetails diff --git a/src/oci/devops/models/create_wait_stage_details.py b/src/oci/devops/models/create_wait_stage_details.py index c2065d3925..fbb8bf5431 100644 --- a/src/oci/devops/models/create_wait_stage_details.py +++ b/src/oci/devops/models/create_wait_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_build_pipeline_stage_details import CreateBuildPipelineStageDetails diff --git a/src/oci/devops/models/deliver_artifact.py b/src/oci/devops/models/deliver_artifact.py index e8f49b22ba..3b0d2b58a3 100644 --- a/src/oci/devops/models/deliver_artifact.py +++ b/src/oci/devops/models/deliver_artifact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deliver_artifact_collection.py b/src/oci/devops/models/deliver_artifact_collection.py index aeb075e36a..4decea1328 100644 --- a/src/oci/devops/models/deliver_artifact_collection.py +++ b/src/oci/devops/models/deliver_artifact_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deliver_artifact_stage.py b/src/oci/devops/models/deliver_artifact_stage.py index e8631f9141..3f595931ce 100644 --- a/src/oci/devops/models/deliver_artifact_stage.py +++ b/src/oci/devops/models/deliver_artifact_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_pipeline_stage import BuildPipelineStage diff --git a/src/oci/devops/models/deliver_artifact_stage_run_progress.py b/src/oci/devops/models/deliver_artifact_stage_run_progress.py index 660bc14037..90b5a0148d 100644 --- a/src/oci/devops/models/deliver_artifact_stage_run_progress.py +++ b/src/oci/devops/models/deliver_artifact_stage_run_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_pipeline_stage_run_progress import BuildPipelineStageRunProgress diff --git a/src/oci/devops/models/deliver_artifact_stage_summary.py b/src/oci/devops/models/deliver_artifact_stage_summary.py index 3005d40f8a..5b27b5cdc5 100644 --- a/src/oci/devops/models/deliver_artifact_stage_summary.py +++ b/src/oci/devops/models/deliver_artifact_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_pipeline_stage_summary import BuildPipelineStageSummary diff --git a/src/oci/devops/models/delivered_artifact.py b/src/oci/devops/models/delivered_artifact.py index ff56ad26a2..5ef43a9057 100644 --- a/src/oci/devops/models/delivered_artifact.py +++ b/src/oci/devops/models/delivered_artifact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/delivered_artifact_collection.py b/src/oci/devops/models/delivered_artifact_collection.py index c907bc3d53..b26da1d423 100644 --- a/src/oci/devops/models/delivered_artifact_collection.py +++ b/src/oci/devops/models/delivered_artifact_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_artifact.py b/src/oci/devops/models/deploy_artifact.py index 52d8d6d1b4..30a03f4239 100644 --- a/src/oci/devops/models/deploy_artifact.py +++ b/src/oci/devops/models/deploy_artifact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_artifact_collection.py b/src/oci/devops/models/deploy_artifact_collection.py index dcd6b00e85..1bf050e6d0 100644 --- a/src/oci/devops/models/deploy_artifact_collection.py +++ b/src/oci/devops/models/deploy_artifact_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_artifact_override_argument.py b/src/oci/devops/models/deploy_artifact_override_argument.py index 6d8c4df991..0f775f15d1 100644 --- a/src/oci/devops/models/deploy_artifact_override_argument.py +++ b/src/oci/devops/models/deploy_artifact_override_argument.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_artifact_override_argument_collection.py b/src/oci/devops/models/deploy_artifact_override_argument_collection.py index 0bab378b49..f1b3e95a62 100644 --- a/src/oci/devops/models/deploy_artifact_override_argument_collection.py +++ b/src/oci/devops/models/deploy_artifact_override_argument_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_artifact_source.py b/src/oci/devops/models/deploy_artifact_source.py index 88aea9b01d..bf517862f6 100644 --- a/src/oci/devops/models/deploy_artifact_source.py +++ b/src/oci/devops/models/deploy_artifact_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_artifact_summary.py b/src/oci/devops/models/deploy_artifact_summary.py index 31ce16e921..15b4b97c32 100644 --- a/src/oci/devops/models/deploy_artifact_summary.py +++ b/src/oci/devops/models/deploy_artifact_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_environment.py b/src/oci/devops/models/deploy_environment.py index 0a0ed8413b..a1bc046764 100644 --- a/src/oci/devops/models/deploy_environment.py +++ b/src/oci/devops/models/deploy_environment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_environment_collection.py b/src/oci/devops/models/deploy_environment_collection.py index 5a27ae19ba..9fa76a63ab 100644 --- a/src/oci/devops/models/deploy_environment_collection.py +++ b/src/oci/devops/models/deploy_environment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_environment_summary.py b/src/oci/devops/models/deploy_environment_summary.py index 3e963bf4e6..276271f5c4 100644 --- a/src/oci/devops/models/deploy_environment_summary.py +++ b/src/oci/devops/models/deploy_environment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_pipeline.py b/src/oci/devops/models/deploy_pipeline.py index d4afd5c638..63ecf97583 100644 --- a/src/oci/devops/models/deploy_pipeline.py +++ b/src/oci/devops/models/deploy_pipeline.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_pipeline_artifact.py b/src/oci/devops/models/deploy_pipeline_artifact.py index 1c2780c1ca..c750a1402c 100644 --- a/src/oci/devops/models/deploy_pipeline_artifact.py +++ b/src/oci/devops/models/deploy_pipeline_artifact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_pipeline_artifact_collection.py b/src/oci/devops/models/deploy_pipeline_artifact_collection.py index cc66040c17..6028f40dd3 100644 --- a/src/oci/devops/models/deploy_pipeline_artifact_collection.py +++ b/src/oci/devops/models/deploy_pipeline_artifact_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_pipeline_collection.py b/src/oci/devops/models/deploy_pipeline_collection.py index 5395b23e3b..217cfae43e 100644 --- a/src/oci/devops/models/deploy_pipeline_collection.py +++ b/src/oci/devops/models/deploy_pipeline_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_pipeline_deployment.py b/src/oci/devops/models/deploy_pipeline_deployment.py index e35e5fe894..107fa68bb8 100644 --- a/src/oci/devops/models/deploy_pipeline_deployment.py +++ b/src/oci/devops/models/deploy_pipeline_deployment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deployment import Deployment diff --git a/src/oci/devops/models/deploy_pipeline_deployment_summary.py b/src/oci/devops/models/deploy_pipeline_deployment_summary.py index 605da23511..07fd892e23 100644 --- a/src/oci/devops/models/deploy_pipeline_deployment_summary.py +++ b/src/oci/devops/models/deploy_pipeline_deployment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deployment_summary import DeploymentSummary diff --git a/src/oci/devops/models/deploy_pipeline_environment.py b/src/oci/devops/models/deploy_pipeline_environment.py index 704b187a8c..acac252b14 100644 --- a/src/oci/devops/models/deploy_pipeline_environment.py +++ b/src/oci/devops/models/deploy_pipeline_environment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_pipeline_environment_collection.py b/src/oci/devops/models/deploy_pipeline_environment_collection.py index 305eeaeb0c..ec14bb16c4 100644 --- a/src/oci/devops/models/deploy_pipeline_environment_collection.py +++ b/src/oci/devops/models/deploy_pipeline_environment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_pipeline_parameter.py b/src/oci/devops/models/deploy_pipeline_parameter.py index 83ba78d26e..287f5c550c 100644 --- a/src/oci/devops/models/deploy_pipeline_parameter.py +++ b/src/oci/devops/models/deploy_pipeline_parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_pipeline_parameter_collection.py b/src/oci/devops/models/deploy_pipeline_parameter_collection.py index 3631e2e9a4..e2cf58e8ea 100644 --- a/src/oci/devops/models/deploy_pipeline_parameter_collection.py +++ b/src/oci/devops/models/deploy_pipeline_parameter_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_pipeline_redeployment.py b/src/oci/devops/models/deploy_pipeline_redeployment.py index 9c2b372e11..b54dd69c83 100644 --- a/src/oci/devops/models/deploy_pipeline_redeployment.py +++ b/src/oci/devops/models/deploy_pipeline_redeployment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deployment import Deployment diff --git a/src/oci/devops/models/deploy_pipeline_redeployment_summary.py b/src/oci/devops/models/deploy_pipeline_redeployment_summary.py index c0fe0c80ab..852e49ead5 100644 --- a/src/oci/devops/models/deploy_pipeline_redeployment_summary.py +++ b/src/oci/devops/models/deploy_pipeline_redeployment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deployment_summary import DeploymentSummary diff --git a/src/oci/devops/models/deploy_pipeline_stage.py b/src/oci/devops/models/deploy_pipeline_stage.py index 44fab0b67c..5ad1698a0a 100644 --- a/src/oci/devops/models/deploy_pipeline_stage.py +++ b/src/oci/devops/models/deploy_pipeline_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_pipeline_stage_collection.py b/src/oci/devops/models/deploy_pipeline_stage_collection.py index 3bdf1af070..2b395f02d8 100644 --- a/src/oci/devops/models/deploy_pipeline_stage_collection.py +++ b/src/oci/devops/models/deploy_pipeline_stage_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_pipeline_summary.py b/src/oci/devops/models/deploy_pipeline_summary.py index 5dcb152a2d..6f05f3ce04 100644 --- a/src/oci/devops/models/deploy_pipeline_summary.py +++ b/src/oci/devops/models/deploy_pipeline_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_stage.py b/src/oci/devops/models/deploy_stage.py index 3ab091b97b..1b4ff98660 100644 --- a/src/oci/devops/models/deploy_stage.py +++ b/src/oci/devops/models/deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_stage_collection.py b/src/oci/devops/models/deploy_stage_collection.py index 231164268a..e5d4f70f61 100644 --- a/src/oci/devops/models/deploy_stage_collection.py +++ b/src/oci/devops/models/deploy_stage_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_stage_execution_progress.py b/src/oci/devops/models/deploy_stage_execution_progress.py index e0f04ccdab..82aff1cdb0 100644 --- a/src/oci/devops/models/deploy_stage_execution_progress.py +++ b/src/oci/devops/models/deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_stage_execution_progress_details.py b/src/oci/devops/models/deploy_stage_execution_progress_details.py index c405962693..2d76581018 100644 --- a/src/oci/devops/models/deploy_stage_execution_progress_details.py +++ b/src/oci/devops/models/deploy_stage_execution_progress_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_stage_execution_step.py b/src/oci/devops/models/deploy_stage_execution_step.py index f4252e2415..423c12a231 100644 --- a/src/oci/devops/models/deploy_stage_execution_step.py +++ b/src/oci/devops/models/deploy_stage_execution_step.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_stage_predecessor.py b/src/oci/devops/models/deploy_stage_predecessor.py index 01908bd87a..4b4cbfdd38 100644 --- a/src/oci/devops/models/deploy_stage_predecessor.py +++ b/src/oci/devops/models/deploy_stage_predecessor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_stage_predecessor_collection.py b/src/oci/devops/models/deploy_stage_predecessor_collection.py index 1ade62583f..ee69ec9e78 100644 --- a/src/oci/devops/models/deploy_stage_predecessor_collection.py +++ b/src/oci/devops/models/deploy_stage_predecessor_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_stage_rollback_policy.py b/src/oci/devops/models/deploy_stage_rollback_policy.py index b7a9f3a3c0..f696568053 100644 --- a/src/oci/devops/models/deploy_stage_rollback_policy.py +++ b/src/oci/devops/models/deploy_stage_rollback_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deploy_stage_summary.py b/src/oci/devops/models/deploy_stage_summary.py index f932860306..20158b0ce2 100644 --- a/src/oci/devops/models/deploy_stage_summary.py +++ b/src/oci/devops/models/deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deployment.py b/src/oci/devops/models/deployment.py index fadc0a30fd..02ec7c7a1b 100644 --- a/src/oci/devops/models/deployment.py +++ b/src/oci/devops/models/deployment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deployment_argument.py b/src/oci/devops/models/deployment_argument.py index 389b58f8b4..6dba311a5c 100644 --- a/src/oci/devops/models/deployment_argument.py +++ b/src/oci/devops/models/deployment_argument.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deployment_argument_collection.py b/src/oci/devops/models/deployment_argument_collection.py index a0bccd6851..8ee254585b 100644 --- a/src/oci/devops/models/deployment_argument_collection.py +++ b/src/oci/devops/models/deployment_argument_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deployment_collection.py b/src/oci/devops/models/deployment_collection.py index 4e70b6bf4d..6726bd58a8 100644 --- a/src/oci/devops/models/deployment_collection.py +++ b/src/oci/devops/models/deployment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deployment_execution_progress.py b/src/oci/devops/models/deployment_execution_progress.py index 43c54066e5..ab02a9b7bb 100644 --- a/src/oci/devops/models/deployment_execution_progress.py +++ b/src/oci/devops/models/deployment_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/deployment_summary.py b/src/oci/devops/models/deployment_summary.py index 7f3e4c71ae..849bc19e3a 100644 --- a/src/oci/devops/models/deployment_summary.py +++ b/src/oci/devops/models/deployment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/devops_code_repository_build_run_source.py b/src/oci/devops/models/devops_code_repository_build_run_source.py index b61343e6e7..4ddf335cb0 100644 --- a/src/oci/devops/models/devops_code_repository_build_run_source.py +++ b/src/oci/devops/models/devops_code_repository_build_run_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_run_source import BuildRunSource diff --git a/src/oci/devops/models/devops_code_repository_build_source.py b/src/oci/devops/models/devops_code_repository_build_source.py index e06e735967..a07e588277 100644 --- a/src/oci/devops/models/devops_code_repository_build_source.py +++ b/src/oci/devops/models/devops_code_repository_build_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_source import BuildSource diff --git a/src/oci/devops/models/devops_code_repository_filter.py b/src/oci/devops/models/devops_code_repository_filter.py index 2126f55734..539b30d9bc 100644 --- a/src/oci/devops/models/devops_code_repository_filter.py +++ b/src/oci/devops/models/devops_code_repository_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .filter import Filter diff --git a/src/oci/devops/models/devops_code_repository_filter_attributes.py b/src/oci/devops/models/devops_code_repository_filter_attributes.py index 5a5b4c5cf1..db00a340ce 100644 --- a/src/oci/devops/models/devops_code_repository_filter_attributes.py +++ b/src/oci/devops/models/devops_code_repository_filter_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/devops_code_repository_trigger.py b/src/oci/devops/models/devops_code_repository_trigger.py index 463f99c093..a4474cdba9 100644 --- a/src/oci/devops/models/devops_code_repository_trigger.py +++ b/src/oci/devops/models/devops_code_repository_trigger.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .trigger import Trigger diff --git a/src/oci/devops/models/devops_code_repository_trigger_create_result.py b/src/oci/devops/models/devops_code_repository_trigger_create_result.py index 21f48a669b..1c81d70054 100644 --- a/src/oci/devops/models/devops_code_repository_trigger_create_result.py +++ b/src/oci/devops/models/devops_code_repository_trigger_create_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .trigger_create_result import TriggerCreateResult diff --git a/src/oci/devops/models/devops_code_repository_trigger_summary.py b/src/oci/devops/models/devops_code_repository_trigger_summary.py index d63a4e4dcc..17fcde7dd8 100644 --- a/src/oci/devops/models/devops_code_repository_trigger_summary.py +++ b/src/oci/devops/models/devops_code_repository_trigger_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .trigger_summary import TriggerSummary diff --git a/src/oci/devops/models/diff_chunk.py b/src/oci/devops/models/diff_chunk.py index 9097f92b21..bf3a8f043c 100644 --- a/src/oci/devops/models/diff_chunk.py +++ b/src/oci/devops/models/diff_chunk.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/diff_collection.py b/src/oci/devops/models/diff_collection.py index cd7af4678e..b26e3d5cb1 100644 --- a/src/oci/devops/models/diff_collection.py +++ b/src/oci/devops/models/diff_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/diff_line_details.py b/src/oci/devops/models/diff_line_details.py index 5c5aba3db1..5ea3140609 100644 --- a/src/oci/devops/models/diff_line_details.py +++ b/src/oci/devops/models/diff_line_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/diff_response.py b/src/oci/devops/models/diff_response.py index de4049d633..53887efd9e 100644 --- a/src/oci/devops/models/diff_response.py +++ b/src/oci/devops/models/diff_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/diff_response_entry.py b/src/oci/devops/models/diff_response_entry.py index b51680896a..71a358d855 100644 --- a/src/oci/devops/models/diff_response_entry.py +++ b/src/oci/devops/models/diff_response_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/diff_section.py b/src/oci/devops/models/diff_section.py index e36d2df713..ae8e930d27 100644 --- a/src/oci/devops/models/diff_section.py +++ b/src/oci/devops/models/diff_section.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/diff_summary.py b/src/oci/devops/models/diff_summary.py index 82b7d04564..e5661606a0 100644 --- a/src/oci/devops/models/diff_summary.py +++ b/src/oci/devops/models/diff_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/exported_variable.py b/src/oci/devops/models/exported_variable.py index 9d59a2442f..f98a0efa5f 100644 --- a/src/oci/devops/models/exported_variable.py +++ b/src/oci/devops/models/exported_variable.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/exported_variable_collection.py b/src/oci/devops/models/exported_variable_collection.py index 38b5ddc813..579937ab60 100644 --- a/src/oci/devops/models/exported_variable_collection.py +++ b/src/oci/devops/models/exported_variable_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/file_diff_response.py b/src/oci/devops/models/file_diff_response.py index a700ec1ff4..dc86810f0e 100644 --- a/src/oci/devops/models/file_diff_response.py +++ b/src/oci/devops/models/file_diff_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/file_line_details.py b/src/oci/devops/models/file_line_details.py index 34e64e5efe..fe92554703 100644 --- a/src/oci/devops/models/file_line_details.py +++ b/src/oci/devops/models/file_line_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/filter.py b/src/oci/devops/models/filter.py index 42b0d97c03..3b1b1653eb 100644 --- a/src/oci/devops/models/filter.py +++ b/src/oci/devops/models/filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/function_deploy_environment.py b/src/oci/devops/models/function_deploy_environment.py index 2adfb65ef6..fd1bd8c78e 100644 --- a/src/oci/devops/models/function_deploy_environment.py +++ b/src/oci/devops/models/function_deploy_environment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_environment import DeployEnvironment diff --git a/src/oci/devops/models/function_deploy_environment_summary.py b/src/oci/devops/models/function_deploy_environment_summary.py index 7cf5ff8f29..269d07136f 100644 --- a/src/oci/devops/models/function_deploy_environment_summary.py +++ b/src/oci/devops/models/function_deploy_environment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_environment_summary import DeployEnvironmentSummary diff --git a/src/oci/devops/models/function_deploy_stage.py b/src/oci/devops/models/function_deploy_stage.py index 609820035f..2c04b5056a 100644 --- a/src/oci/devops/models/function_deploy_stage.py +++ b/src/oci/devops/models/function_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage import DeployStage diff --git a/src/oci/devops/models/function_deploy_stage_execution_progress.py b/src/oci/devops/models/function_deploy_stage_execution_progress.py index da827aaf9b..08b532df85 100644 --- a/src/oci/devops/models/function_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/function_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_execution_progress import DeployStageExecutionProgress diff --git a/src/oci/devops/models/function_deploy_stage_summary.py b/src/oci/devops/models/function_deploy_stage_summary.py index 6fe389011d..5a19b5f233 100644 --- a/src/oci/devops/models/function_deploy_stage_summary.py +++ b/src/oci/devops/models/function_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_summary import DeployStageSummary diff --git a/src/oci/devops/models/generic_delivered_artifact.py b/src/oci/devops/models/generic_delivered_artifact.py index 7b42aa1fa1..a31104e727 100644 --- a/src/oci/devops/models/generic_delivered_artifact.py +++ b/src/oci/devops/models/generic_delivered_artifact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .delivered_artifact import DeliveredArtifact diff --git a/src/oci/devops/models/generic_deploy_artifact_source.py b/src/oci/devops/models/generic_deploy_artifact_source.py index c4a3311c44..8fe8fddd35 100644 --- a/src/oci/devops/models/generic_deploy_artifact_source.py +++ b/src/oci/devops/models/generic_deploy_artifact_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_artifact_source import DeployArtifactSource diff --git a/src/oci/devops/models/github_access_token_connection.py b/src/oci/devops/models/github_access_token_connection.py index e4fe0fdf35..99090fd91e 100644 --- a/src/oci/devops/models/github_access_token_connection.py +++ b/src/oci/devops/models/github_access_token_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection import Connection diff --git a/src/oci/devops/models/github_access_token_connection_summary.py b/src/oci/devops/models/github_access_token_connection_summary.py index b20b378319..6b52a22961 100644 --- a/src/oci/devops/models/github_access_token_connection_summary.py +++ b/src/oci/devops/models/github_access_token_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_summary import ConnectionSummary diff --git a/src/oci/devops/models/github_build_run_source.py b/src/oci/devops/models/github_build_run_source.py index 7cef6acdfa..87d4ce089b 100644 --- a/src/oci/devops/models/github_build_run_source.py +++ b/src/oci/devops/models/github_build_run_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_run_source import BuildRunSource diff --git a/src/oci/devops/models/github_build_source.py b/src/oci/devops/models/github_build_source.py index 3fa6fdf969..c7084f9dc1 100644 --- a/src/oci/devops/models/github_build_source.py +++ b/src/oci/devops/models/github_build_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_source import BuildSource diff --git a/src/oci/devops/models/github_filter.py b/src/oci/devops/models/github_filter.py index 5f8419d751..3009dbfb89 100644 --- a/src/oci/devops/models/github_filter.py +++ b/src/oci/devops/models/github_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .filter import Filter diff --git a/src/oci/devops/models/github_filter_attributes.py b/src/oci/devops/models/github_filter_attributes.py index 345271c432..eeda6e4e67 100644 --- a/src/oci/devops/models/github_filter_attributes.py +++ b/src/oci/devops/models/github_filter_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/github_trigger.py b/src/oci/devops/models/github_trigger.py index ed45d9026f..c4528e1b50 100644 --- a/src/oci/devops/models/github_trigger.py +++ b/src/oci/devops/models/github_trigger.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .trigger import Trigger diff --git a/src/oci/devops/models/github_trigger_create_result.py b/src/oci/devops/models/github_trigger_create_result.py index 471be751fb..e2e0ebde32 100644 --- a/src/oci/devops/models/github_trigger_create_result.py +++ b/src/oci/devops/models/github_trigger_create_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .trigger_create_result import TriggerCreateResult diff --git a/src/oci/devops/models/github_trigger_summary.py b/src/oci/devops/models/github_trigger_summary.py index 2f00067db6..580f30bc7f 100644 --- a/src/oci/devops/models/github_trigger_summary.py +++ b/src/oci/devops/models/github_trigger_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .trigger_summary import TriggerSummary diff --git a/src/oci/devops/models/gitlab_access_token_connection.py b/src/oci/devops/models/gitlab_access_token_connection.py index fc154e313d..23846fd0f4 100644 --- a/src/oci/devops/models/gitlab_access_token_connection.py +++ b/src/oci/devops/models/gitlab_access_token_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection import Connection diff --git a/src/oci/devops/models/gitlab_access_token_connection_summary.py b/src/oci/devops/models/gitlab_access_token_connection_summary.py index ca8748ffd5..0f1b875a2e 100644 --- a/src/oci/devops/models/gitlab_access_token_connection_summary.py +++ b/src/oci/devops/models/gitlab_access_token_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .connection_summary import ConnectionSummary diff --git a/src/oci/devops/models/gitlab_build_run_source.py b/src/oci/devops/models/gitlab_build_run_source.py index a249b6b791..eab3e2f0e2 100644 --- a/src/oci/devops/models/gitlab_build_run_source.py +++ b/src/oci/devops/models/gitlab_build_run_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_run_source import BuildRunSource diff --git a/src/oci/devops/models/gitlab_build_source.py b/src/oci/devops/models/gitlab_build_source.py index 5bef528ca2..f01cbf1e5d 100644 --- a/src/oci/devops/models/gitlab_build_source.py +++ b/src/oci/devops/models/gitlab_build_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_source import BuildSource diff --git a/src/oci/devops/models/gitlab_filter.py b/src/oci/devops/models/gitlab_filter.py index 633c6070a4..e2690b89e0 100644 --- a/src/oci/devops/models/gitlab_filter.py +++ b/src/oci/devops/models/gitlab_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .filter import Filter diff --git a/src/oci/devops/models/gitlab_filter_attributes.py b/src/oci/devops/models/gitlab_filter_attributes.py index ad52839bb8..16b91cc43c 100644 --- a/src/oci/devops/models/gitlab_filter_attributes.py +++ b/src/oci/devops/models/gitlab_filter_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/gitlab_trigger.py b/src/oci/devops/models/gitlab_trigger.py index 8c8fb74728..a0adade591 100644 --- a/src/oci/devops/models/gitlab_trigger.py +++ b/src/oci/devops/models/gitlab_trigger.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .trigger import Trigger diff --git a/src/oci/devops/models/gitlab_trigger_create_result.py b/src/oci/devops/models/gitlab_trigger_create_result.py index 6f4d08a2f4..b51110a1f5 100644 --- a/src/oci/devops/models/gitlab_trigger_create_result.py +++ b/src/oci/devops/models/gitlab_trigger_create_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .trigger_create_result import TriggerCreateResult diff --git a/src/oci/devops/models/gitlab_trigger_summary.py b/src/oci/devops/models/gitlab_trigger_summary.py index 9d3a1849b2..202e0d4de9 100644 --- a/src/oci/devops/models/gitlab_trigger_summary.py +++ b/src/oci/devops/models/gitlab_trigger_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .trigger_summary import TriggerSummary diff --git a/src/oci/devops/models/inline_deploy_artifact_source.py b/src/oci/devops/models/inline_deploy_artifact_source.py index 6f1f45bf15..6219d3de62 100644 --- a/src/oci/devops/models/inline_deploy_artifact_source.py +++ b/src/oci/devops/models/inline_deploy_artifact_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_artifact_source import DeployArtifactSource diff --git a/src/oci/devops/models/invoke_function_deploy_stage.py b/src/oci/devops/models/invoke_function_deploy_stage.py index 500d071ef7..d2710eb4ea 100644 --- a/src/oci/devops/models/invoke_function_deploy_stage.py +++ b/src/oci/devops/models/invoke_function_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage import DeployStage diff --git a/src/oci/devops/models/invoke_function_deploy_stage_execution_progress.py b/src/oci/devops/models/invoke_function_deploy_stage_execution_progress.py index a2063d020b..40622589fb 100644 --- a/src/oci/devops/models/invoke_function_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/invoke_function_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_execution_progress import DeployStageExecutionProgress diff --git a/src/oci/devops/models/invoke_function_deploy_stage_summary.py b/src/oci/devops/models/invoke_function_deploy_stage_summary.py index 5d01f88578..3f95e9bc25 100644 --- a/src/oci/devops/models/invoke_function_deploy_stage_summary.py +++ b/src/oci/devops/models/invoke_function_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_summary import DeployStageSummary diff --git a/src/oci/devops/models/load_balancer_config.py b/src/oci/devops/models/load_balancer_config.py index a9d4cb2164..e638d128c5 100644 --- a/src/oci/devops/models/load_balancer_config.py +++ b/src/oci/devops/models/load_balancer_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/load_balancer_traffic_shift_deploy_stage.py b/src/oci/devops/models/load_balancer_traffic_shift_deploy_stage.py index 1f2b89c220..72006a1963 100644 --- a/src/oci/devops/models/load_balancer_traffic_shift_deploy_stage.py +++ b/src/oci/devops/models/load_balancer_traffic_shift_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage import DeployStage diff --git a/src/oci/devops/models/load_balancer_traffic_shift_deploy_stage_execution_progress.py b/src/oci/devops/models/load_balancer_traffic_shift_deploy_stage_execution_progress.py index e6a1d359d0..31f7a52719 100644 --- a/src/oci/devops/models/load_balancer_traffic_shift_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/load_balancer_traffic_shift_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_execution_progress import DeployStageExecutionProgress diff --git a/src/oci/devops/models/load_balancer_traffic_shift_deploy_stage_summary.py b/src/oci/devops/models/load_balancer_traffic_shift_deploy_stage_summary.py index e1c8e219fd..37ea5bcbd5 100644 --- a/src/oci/devops/models/load_balancer_traffic_shift_deploy_stage_summary.py +++ b/src/oci/devops/models/load_balancer_traffic_shift_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_summary import DeployStageSummary diff --git a/src/oci/devops/models/load_balancer_traffic_shift_rollout_policy.py b/src/oci/devops/models/load_balancer_traffic_shift_rollout_policy.py index bd562c28a2..aebec88fad 100644 --- a/src/oci/devops/models/load_balancer_traffic_shift_rollout_policy.py +++ b/src/oci/devops/models/load_balancer_traffic_shift_rollout_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/manual_approval_deploy_stage.py b/src/oci/devops/models/manual_approval_deploy_stage.py index f333ae6e47..83e41b1b86 100644 --- a/src/oci/devops/models/manual_approval_deploy_stage.py +++ b/src/oci/devops/models/manual_approval_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage import DeployStage diff --git a/src/oci/devops/models/manual_approval_deploy_stage_execution_progress.py b/src/oci/devops/models/manual_approval_deploy_stage_execution_progress.py index 01f006b49d..e66f70d07a 100644 --- a/src/oci/devops/models/manual_approval_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/manual_approval_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_execution_progress import DeployStageExecutionProgress diff --git a/src/oci/devops/models/manual_approval_deploy_stage_summary.py b/src/oci/devops/models/manual_approval_deploy_stage_summary.py index 533d15b075..f0ac4c88dd 100644 --- a/src/oci/devops/models/manual_approval_deploy_stage_summary.py +++ b/src/oci/devops/models/manual_approval_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_summary import DeployStageSummary diff --git a/src/oci/devops/models/manual_build_run_source.py b/src/oci/devops/models/manual_build_run_source.py index c88933c44f..7258dbb03d 100644 --- a/src/oci/devops/models/manual_build_run_source.py +++ b/src/oci/devops/models/manual_build_run_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_run_source import BuildRunSource diff --git a/src/oci/devops/models/mirror_repository_config.py b/src/oci/devops/models/mirror_repository_config.py index c9db90d9c4..454daf338e 100644 --- a/src/oci/devops/models/mirror_repository_config.py +++ b/src/oci/devops/models/mirror_repository_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/no_deploy_stage_rollback_policy.py b/src/oci/devops/models/no_deploy_stage_rollback_policy.py index 9593f74b5b..d369de221a 100644 --- a/src/oci/devops/models/no_deploy_stage_rollback_policy.py +++ b/src/oci/devops/models/no_deploy_stage_rollback_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_rollback_policy import DeployStageRollbackPolicy diff --git a/src/oci/devops/models/notification_config.py b/src/oci/devops/models/notification_config.py index 4549e9a360..a820018ce3 100644 --- a/src/oci/devops/models/notification_config.py +++ b/src/oci/devops/models/notification_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/ocir_deploy_artifact_source.py b/src/oci/devops/models/ocir_deploy_artifact_source.py index ec6293c6ac..b583346295 100644 --- a/src/oci/devops/models/ocir_deploy_artifact_source.py +++ b/src/oci/devops/models/ocir_deploy_artifact_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_artifact_source import DeployArtifactSource diff --git a/src/oci/devops/models/oke_cluster_deploy_environment.py b/src/oci/devops/models/oke_cluster_deploy_environment.py index dc65e7071c..63cfddc259 100644 --- a/src/oci/devops/models/oke_cluster_deploy_environment.py +++ b/src/oci/devops/models/oke_cluster_deploy_environment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_environment import DeployEnvironment diff --git a/src/oci/devops/models/oke_cluster_deploy_environment_summary.py b/src/oci/devops/models/oke_cluster_deploy_environment_summary.py index 28c34866e3..4bdb5d0ec2 100644 --- a/src/oci/devops/models/oke_cluster_deploy_environment_summary.py +++ b/src/oci/devops/models/oke_cluster_deploy_environment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_environment_summary import DeployEnvironmentSummary diff --git a/src/oci/devops/models/oke_deploy_stage.py b/src/oci/devops/models/oke_deploy_stage.py index 8b602a1373..ca6c1888e8 100644 --- a/src/oci/devops/models/oke_deploy_stage.py +++ b/src/oci/devops/models/oke_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage import DeployStage diff --git a/src/oci/devops/models/oke_deploy_stage_execution_progress.py b/src/oci/devops/models/oke_deploy_stage_execution_progress.py index 429c568343..5a1ad5861b 100644 --- a/src/oci/devops/models/oke_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/oke_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_execution_progress import DeployStageExecutionProgress diff --git a/src/oci/devops/models/oke_deploy_stage_summary.py b/src/oci/devops/models/oke_deploy_stage_summary.py index 9b95dcce04..e6a6e23142 100644 --- a/src/oci/devops/models/oke_deploy_stage_summary.py +++ b/src/oci/devops/models/oke_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_summary import DeployStageSummary diff --git a/src/oci/devops/models/project.py b/src/oci/devops/models/project.py index 53eccf67e1..58114909ac 100644 --- a/src/oci/devops/models/project.py +++ b/src/oci/devops/models/project.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/project_collection.py b/src/oci/devops/models/project_collection.py index e4867f90d4..9945c3eec3 100644 --- a/src/oci/devops/models/project_collection.py +++ b/src/oci/devops/models/project_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/project_summary.py b/src/oci/devops/models/project_summary.py index 7538aa5477..03463d6a36 100644 --- a/src/oci/devops/models/project_summary.py +++ b/src/oci/devops/models/project_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/put_repository_branch_details.py b/src/oci/devops/models/put_repository_branch_details.py index 1b5057e32e..b2a79797c0 100644 --- a/src/oci/devops/models/put_repository_branch_details.py +++ b/src/oci/devops/models/put_repository_branch_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .put_repository_ref_details import PutRepositoryRefDetails diff --git a/src/oci/devops/models/put_repository_ref_details.py b/src/oci/devops/models/put_repository_ref_details.py index 7e082fc87b..95106e2c2c 100644 --- a/src/oci/devops/models/put_repository_ref_details.py +++ b/src/oci/devops/models/put_repository_ref_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/put_repository_tag_details.py b/src/oci/devops/models/put_repository_tag_details.py index b347776fd2..ee50a4a713 100644 --- a/src/oci/devops/models/put_repository_tag_details.py +++ b/src/oci/devops/models/put_repository_tag_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .put_repository_ref_details import PutRepositoryRefDetails diff --git a/src/oci/devops/models/repository.py b/src/oci/devops/models/repository.py index 4f6a49b548..449ceaf3c7 100644 --- a/src/oci/devops/models/repository.py +++ b/src/oci/devops/models/repository.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/repository_author_collection.py b/src/oci/devops/models/repository_author_collection.py index d9e255a827..065b9f2d87 100644 --- a/src/oci/devops/models/repository_author_collection.py +++ b/src/oci/devops/models/repository_author_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/repository_author_summary.py b/src/oci/devops/models/repository_author_summary.py index a394a1aa2b..63d27c769a 100644 --- a/src/oci/devops/models/repository_author_summary.py +++ b/src/oci/devops/models/repository_author_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/repository_branch.py b/src/oci/devops/models/repository_branch.py index 0f742b8ee5..af59134cc2 100644 --- a/src/oci/devops/models/repository_branch.py +++ b/src/oci/devops/models/repository_branch.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .repository_ref import RepositoryRef diff --git a/src/oci/devops/models/repository_branch_summary.py b/src/oci/devops/models/repository_branch_summary.py index 92f102be6d..2b6be7fe4b 100644 --- a/src/oci/devops/models/repository_branch_summary.py +++ b/src/oci/devops/models/repository_branch_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .repository_ref_summary import RepositoryRefSummary diff --git a/src/oci/devops/models/repository_collection.py b/src/oci/devops/models/repository_collection.py index ac70de278a..27f0f2451d 100644 --- a/src/oci/devops/models/repository_collection.py +++ b/src/oci/devops/models/repository_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/repository_commit.py b/src/oci/devops/models/repository_commit.py index 2a86de9c48..b4bde213b9 100644 --- a/src/oci/devops/models/repository_commit.py +++ b/src/oci/devops/models/repository_commit.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/repository_commit_collection.py b/src/oci/devops/models/repository_commit_collection.py index b4d4812dd9..8ed8a73166 100644 --- a/src/oci/devops/models/repository_commit_collection.py +++ b/src/oci/devops/models/repository_commit_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/repository_commit_summary.py b/src/oci/devops/models/repository_commit_summary.py index 08b7e93f20..2009d260f6 100644 --- a/src/oci/devops/models/repository_commit_summary.py +++ b/src/oci/devops/models/repository_commit_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/repository_file_lines.py b/src/oci/devops/models/repository_file_lines.py index 6c5f45a834..9ffff45d3d 100644 --- a/src/oci/devops/models/repository_file_lines.py +++ b/src/oci/devops/models/repository_file_lines.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/repository_mirror_record.py b/src/oci/devops/models/repository_mirror_record.py index bd3f8a43c8..be4a766d00 100644 --- a/src/oci/devops/models/repository_mirror_record.py +++ b/src/oci/devops/models/repository_mirror_record.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/repository_mirror_record_collection.py b/src/oci/devops/models/repository_mirror_record_collection.py index 9565d81b41..32d6acfc46 100644 --- a/src/oci/devops/models/repository_mirror_record_collection.py +++ b/src/oci/devops/models/repository_mirror_record_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/repository_mirror_record_summary.py b/src/oci/devops/models/repository_mirror_record_summary.py index 686725d6b3..a4128dae31 100644 --- a/src/oci/devops/models/repository_mirror_record_summary.py +++ b/src/oci/devops/models/repository_mirror_record_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/repository_object.py b/src/oci/devops/models/repository_object.py index 98d49ef622..472ea96c0f 100644 --- a/src/oci/devops/models/repository_object.py +++ b/src/oci/devops/models/repository_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/repository_path_collection.py b/src/oci/devops/models/repository_path_collection.py index 3ac44d3f1e..9c95a1160d 100644 --- a/src/oci/devops/models/repository_path_collection.py +++ b/src/oci/devops/models/repository_path_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/repository_path_summary.py b/src/oci/devops/models/repository_path_summary.py index 47fa97c774..41fb626950 100644 --- a/src/oci/devops/models/repository_path_summary.py +++ b/src/oci/devops/models/repository_path_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/repository_ref.py b/src/oci/devops/models/repository_ref.py index afcff9b511..a1a2f021ca 100644 --- a/src/oci/devops/models/repository_ref.py +++ b/src/oci/devops/models/repository_ref.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/repository_ref_collection.py b/src/oci/devops/models/repository_ref_collection.py index 01650e954e..c10baa6da1 100644 --- a/src/oci/devops/models/repository_ref_collection.py +++ b/src/oci/devops/models/repository_ref_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/repository_ref_summary.py b/src/oci/devops/models/repository_ref_summary.py index b6a6c08a96..e8bfdcd05b 100644 --- a/src/oci/devops/models/repository_ref_summary.py +++ b/src/oci/devops/models/repository_ref_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/repository_summary.py b/src/oci/devops/models/repository_summary.py index e021b6e61f..f70caba48a 100644 --- a/src/oci/devops/models/repository_summary.py +++ b/src/oci/devops/models/repository_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/repository_tag.py b/src/oci/devops/models/repository_tag.py index 9371b511ef..f49e3353b5 100644 --- a/src/oci/devops/models/repository_tag.py +++ b/src/oci/devops/models/repository_tag.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .repository_ref import RepositoryRef diff --git a/src/oci/devops/models/repository_tag_summary.py b/src/oci/devops/models/repository_tag_summary.py index dcc27f8804..a21870c11d 100644 --- a/src/oci/devops/models/repository_tag_summary.py +++ b/src/oci/devops/models/repository_tag_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .repository_ref_summary import RepositoryRefSummary diff --git a/src/oci/devops/models/run_pipeline_deploy_stage_execution_progress.py b/src/oci/devops/models/run_pipeline_deploy_stage_execution_progress.py index fb6e68f1ae..9268961f1f 100644 --- a/src/oci/devops/models/run_pipeline_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/run_pipeline_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_execution_progress import DeployStageExecutionProgress diff --git a/src/oci/devops/models/run_validation_test_on_compute_instance_deploy_stage_execution_progress.py b/src/oci/devops/models/run_validation_test_on_compute_instance_deploy_stage_execution_progress.py index 3655e802a0..1fdb29b9a4 100644 --- a/src/oci/devops/models/run_validation_test_on_compute_instance_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/run_validation_test_on_compute_instance_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_execution_progress import DeployStageExecutionProgress diff --git a/src/oci/devops/models/single_deploy_stage_deployment.py b/src/oci/devops/models/single_deploy_stage_deployment.py index 345b477cc8..75f299b297 100644 --- a/src/oci/devops/models/single_deploy_stage_deployment.py +++ b/src/oci/devops/models/single_deploy_stage_deployment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deployment import Deployment diff --git a/src/oci/devops/models/single_deploy_stage_deployment_summary.py b/src/oci/devops/models/single_deploy_stage_deployment_summary.py index 3d646af02d..14817b018d 100644 --- a/src/oci/devops/models/single_deploy_stage_deployment_summary.py +++ b/src/oci/devops/models/single_deploy_stage_deployment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deployment_summary import DeploymentSummary diff --git a/src/oci/devops/models/trigger.py b/src/oci/devops/models/trigger.py index 728364c4e8..292cb0a2ca 100644 --- a/src/oci/devops/models/trigger.py +++ b/src/oci/devops/models/trigger.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/trigger_action.py b/src/oci/devops/models/trigger_action.py index f02895c5be..6639425136 100644 --- a/src/oci/devops/models/trigger_action.py +++ b/src/oci/devops/models/trigger_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/trigger_build_pipeline_action.py b/src/oci/devops/models/trigger_build_pipeline_action.py index 68d7286e7d..be021433d8 100644 --- a/src/oci/devops/models/trigger_build_pipeline_action.py +++ b/src/oci/devops/models/trigger_build_pipeline_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .trigger_action import TriggerAction diff --git a/src/oci/devops/models/trigger_collection.py b/src/oci/devops/models/trigger_collection.py index e023984560..80486a3e51 100644 --- a/src/oci/devops/models/trigger_collection.py +++ b/src/oci/devops/models/trigger_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/trigger_create_result.py b/src/oci/devops/models/trigger_create_result.py index 78276e9454..914c629216 100644 --- a/src/oci/devops/models/trigger_create_result.py +++ b/src/oci/devops/models/trigger_create_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/trigger_deployment_pipeline_stage_run_progress.py b/src/oci/devops/models/trigger_deployment_pipeline_stage_run_progress.py index 348877256f..14c57ac755 100644 --- a/src/oci/devops/models/trigger_deployment_pipeline_stage_run_progress.py +++ b/src/oci/devops/models/trigger_deployment_pipeline_stage_run_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_pipeline_stage_run_progress import BuildPipelineStageRunProgress diff --git a/src/oci/devops/models/trigger_deployment_stage.py b/src/oci/devops/models/trigger_deployment_stage.py index 4ccc2bb364..1b18375d9d 100644 --- a/src/oci/devops/models/trigger_deployment_stage.py +++ b/src/oci/devops/models/trigger_deployment_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_pipeline_stage import BuildPipelineStage diff --git a/src/oci/devops/models/trigger_deployment_stage_summary.py b/src/oci/devops/models/trigger_deployment_stage_summary.py index 0dcd495bf7..664f501f07 100644 --- a/src/oci/devops/models/trigger_deployment_stage_summary.py +++ b/src/oci/devops/models/trigger_deployment_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_pipeline_stage_summary import BuildPipelineStageSummary diff --git a/src/oci/devops/models/trigger_info.py b/src/oci/devops/models/trigger_info.py index 2613c5727e..c8bff37f50 100644 --- a/src/oci/devops/models/trigger_info.py +++ b/src/oci/devops/models/trigger_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/trigger_schedule.py b/src/oci/devops/models/trigger_schedule.py index ac537dc817..9c1be60d5a 100644 --- a/src/oci/devops/models/trigger_schedule.py +++ b/src/oci/devops/models/trigger_schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/trigger_summary.py b/src/oci/devops/models/trigger_summary.py index ca1091b41c..ad52eb62dd 100644 --- a/src/oci/devops/models/trigger_summary.py +++ b/src/oci/devops/models/trigger_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/update_absolute_wait_criteria_details.py b/src/oci/devops/models/update_absolute_wait_criteria_details.py index aba60f2398..5c00d54690 100644 --- a/src/oci/devops/models/update_absolute_wait_criteria_details.py +++ b/src/oci/devops/models/update_absolute_wait_criteria_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_wait_criteria_details import UpdateWaitCriteriaDetails diff --git a/src/oci/devops/models/update_build_pipeline_details.py b/src/oci/devops/models/update_build_pipeline_details.py index dab67aa7ae..63e51512b3 100644 --- a/src/oci/devops/models/update_build_pipeline_details.py +++ b/src/oci/devops/models/update_build_pipeline_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/update_build_pipeline_stage_details.py b/src/oci/devops/models/update_build_pipeline_stage_details.py index 9e0836491e..13152a6f19 100644 --- a/src/oci/devops/models/update_build_pipeline_stage_details.py +++ b/src/oci/devops/models/update_build_pipeline_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/update_build_run_details.py b/src/oci/devops/models/update_build_run_details.py index 76f5549a85..8742c74d97 100644 --- a/src/oci/devops/models/update_build_run_details.py +++ b/src/oci/devops/models/update_build_run_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/update_build_stage_details.py b/src/oci/devops/models/update_build_stage_details.py index a615d377d0..d02ec8e9f8 100644 --- a/src/oci/devops/models/update_build_stage_details.py +++ b/src/oci/devops/models/update_build_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_build_pipeline_stage_details import UpdateBuildPipelineStageDetails diff --git a/src/oci/devops/models/update_compute_instance_group_deploy_environment_details.py b/src/oci/devops/models/update_compute_instance_group_deploy_environment_details.py index d7ef20e931..6e9d3e8f5e 100644 --- a/src/oci/devops/models/update_compute_instance_group_deploy_environment_details.py +++ b/src/oci/devops/models/update_compute_instance_group_deploy_environment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_deploy_environment_details import UpdateDeployEnvironmentDetails diff --git a/src/oci/devops/models/update_compute_instance_group_deploy_stage_details.py b/src/oci/devops/models/update_compute_instance_group_deploy_stage_details.py index ef0fab037e..3ad0817fd6 100644 --- a/src/oci/devops/models/update_compute_instance_group_deploy_stage_details.py +++ b/src/oci/devops/models/update_compute_instance_group_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_deploy_stage_details import UpdateDeployStageDetails diff --git a/src/oci/devops/models/update_connection_details.py b/src/oci/devops/models/update_connection_details.py index ba6a2e35c7..293e1437d0 100644 --- a/src/oci/devops/models/update_connection_details.py +++ b/src/oci/devops/models/update_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/update_deliver_artifact_stage_details.py b/src/oci/devops/models/update_deliver_artifact_stage_details.py index 48d27d3143..862ad853f9 100644 --- a/src/oci/devops/models/update_deliver_artifact_stage_details.py +++ b/src/oci/devops/models/update_deliver_artifact_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_build_pipeline_stage_details import UpdateBuildPipelineStageDetails diff --git a/src/oci/devops/models/update_deploy_artifact_details.py b/src/oci/devops/models/update_deploy_artifact_details.py index 22b635ae4d..cefb1acd70 100644 --- a/src/oci/devops/models/update_deploy_artifact_details.py +++ b/src/oci/devops/models/update_deploy_artifact_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/update_deploy_environment_details.py b/src/oci/devops/models/update_deploy_environment_details.py index 0196219715..9058148df2 100644 --- a/src/oci/devops/models/update_deploy_environment_details.py +++ b/src/oci/devops/models/update_deploy_environment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/update_deploy_pipeline_deployment_details.py b/src/oci/devops/models/update_deploy_pipeline_deployment_details.py index a9742b176a..7338408164 100644 --- a/src/oci/devops/models/update_deploy_pipeline_deployment_details.py +++ b/src/oci/devops/models/update_deploy_pipeline_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_deployment_details import UpdateDeploymentDetails diff --git a/src/oci/devops/models/update_deploy_pipeline_details.py b/src/oci/devops/models/update_deploy_pipeline_details.py index f307f3c9b5..09f5301664 100644 --- a/src/oci/devops/models/update_deploy_pipeline_details.py +++ b/src/oci/devops/models/update_deploy_pipeline_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/update_deploy_pipeline_redeployment_details.py b/src/oci/devops/models/update_deploy_pipeline_redeployment_details.py index 87cace6fdb..5d5c1227b1 100644 --- a/src/oci/devops/models/update_deploy_pipeline_redeployment_details.py +++ b/src/oci/devops/models/update_deploy_pipeline_redeployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_deployment_details import UpdateDeploymentDetails diff --git a/src/oci/devops/models/update_deploy_stage_details.py b/src/oci/devops/models/update_deploy_stage_details.py index c0dfc7e98b..8f5280302b 100644 --- a/src/oci/devops/models/update_deploy_stage_details.py +++ b/src/oci/devops/models/update_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/update_deployment_details.py b/src/oci/devops/models/update_deployment_details.py index 688e7effa2..27f2442e79 100644 --- a/src/oci/devops/models/update_deployment_details.py +++ b/src/oci/devops/models/update_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/update_devops_code_repository_trigger_details.py b/src/oci/devops/models/update_devops_code_repository_trigger_details.py index 30dff589b7..08211977f2 100644 --- a/src/oci/devops/models/update_devops_code_repository_trigger_details.py +++ b/src/oci/devops/models/update_devops_code_repository_trigger_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_trigger_details import UpdateTriggerDetails diff --git a/src/oci/devops/models/update_function_deploy_environment_details.py b/src/oci/devops/models/update_function_deploy_environment_details.py index 24aa5c8bfb..dadd1efa7c 100644 --- a/src/oci/devops/models/update_function_deploy_environment_details.py +++ b/src/oci/devops/models/update_function_deploy_environment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_deploy_environment_details import UpdateDeployEnvironmentDetails diff --git a/src/oci/devops/models/update_function_deploy_stage_details.py b/src/oci/devops/models/update_function_deploy_stage_details.py index 1eafe186ae..13be54a2f5 100644 --- a/src/oci/devops/models/update_function_deploy_stage_details.py +++ b/src/oci/devops/models/update_function_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_deploy_stage_details import UpdateDeployStageDetails diff --git a/src/oci/devops/models/update_github_access_token_connection_details.py b/src/oci/devops/models/update_github_access_token_connection_details.py index a2ca454266..d7320b5097 100644 --- a/src/oci/devops/models/update_github_access_token_connection_details.py +++ b/src/oci/devops/models/update_github_access_token_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_connection_details import UpdateConnectionDetails diff --git a/src/oci/devops/models/update_github_trigger_details.py b/src/oci/devops/models/update_github_trigger_details.py index df3c51d21f..7d2c6f5222 100644 --- a/src/oci/devops/models/update_github_trigger_details.py +++ b/src/oci/devops/models/update_github_trigger_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_trigger_details import UpdateTriggerDetails diff --git a/src/oci/devops/models/update_gitlab_access_token_connection_details.py b/src/oci/devops/models/update_gitlab_access_token_connection_details.py index 77d346905f..c1a5e92c00 100644 --- a/src/oci/devops/models/update_gitlab_access_token_connection_details.py +++ b/src/oci/devops/models/update_gitlab_access_token_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_connection_details import UpdateConnectionDetails diff --git a/src/oci/devops/models/update_gitlab_trigger_details.py b/src/oci/devops/models/update_gitlab_trigger_details.py index 70441a0091..a518d096b8 100644 --- a/src/oci/devops/models/update_gitlab_trigger_details.py +++ b/src/oci/devops/models/update_gitlab_trigger_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_trigger_details import UpdateTriggerDetails diff --git a/src/oci/devops/models/update_invoke_function_deploy_stage_details.py b/src/oci/devops/models/update_invoke_function_deploy_stage_details.py index c257d63f98..d1330eeb03 100644 --- a/src/oci/devops/models/update_invoke_function_deploy_stage_details.py +++ b/src/oci/devops/models/update_invoke_function_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_deploy_stage_details import UpdateDeployStageDetails diff --git a/src/oci/devops/models/update_load_balancer_traffic_shift_deploy_stage_details.py b/src/oci/devops/models/update_load_balancer_traffic_shift_deploy_stage_details.py index cdc0cc7352..10addeeabc 100644 --- a/src/oci/devops/models/update_load_balancer_traffic_shift_deploy_stage_details.py +++ b/src/oci/devops/models/update_load_balancer_traffic_shift_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_deploy_stage_details import UpdateDeployStageDetails diff --git a/src/oci/devops/models/update_manual_approval_deploy_stage_details.py b/src/oci/devops/models/update_manual_approval_deploy_stage_details.py index 2299fc3e9d..ff722c3f56 100644 --- a/src/oci/devops/models/update_manual_approval_deploy_stage_details.py +++ b/src/oci/devops/models/update_manual_approval_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_deploy_stage_details import UpdateDeployStageDetails diff --git a/src/oci/devops/models/update_oke_cluster_deploy_environment_details.py b/src/oci/devops/models/update_oke_cluster_deploy_environment_details.py index 589a9fd7fc..b9d86fb2ed 100644 --- a/src/oci/devops/models/update_oke_cluster_deploy_environment_details.py +++ b/src/oci/devops/models/update_oke_cluster_deploy_environment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_deploy_environment_details import UpdateDeployEnvironmentDetails diff --git a/src/oci/devops/models/update_oke_deploy_stage_details.py b/src/oci/devops/models/update_oke_deploy_stage_details.py index e7a28af36c..025e4348ad 100644 --- a/src/oci/devops/models/update_oke_deploy_stage_details.py +++ b/src/oci/devops/models/update_oke_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_deploy_stage_details import UpdateDeployStageDetails diff --git a/src/oci/devops/models/update_project_details.py b/src/oci/devops/models/update_project_details.py index 76296cd1cd..ceb24e5082 100644 --- a/src/oci/devops/models/update_project_details.py +++ b/src/oci/devops/models/update_project_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/update_repository_details.py b/src/oci/devops/models/update_repository_details.py index 2fb1716bec..5f5373afbc 100644 --- a/src/oci/devops/models/update_repository_details.py +++ b/src/oci/devops/models/update_repository_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/update_single_deploy_stage_deployment_details.py b/src/oci/devops/models/update_single_deploy_stage_deployment_details.py index f8ccab01ea..545aef56d4 100644 --- a/src/oci/devops/models/update_single_deploy_stage_deployment_details.py +++ b/src/oci/devops/models/update_single_deploy_stage_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_deployment_details import UpdateDeploymentDetails diff --git a/src/oci/devops/models/update_trigger_deployment_stage_details.py b/src/oci/devops/models/update_trigger_deployment_stage_details.py index 335bdeeba1..fbf38ecc70 100644 --- a/src/oci/devops/models/update_trigger_deployment_stage_details.py +++ b/src/oci/devops/models/update_trigger_deployment_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_build_pipeline_stage_details import UpdateBuildPipelineStageDetails diff --git a/src/oci/devops/models/update_trigger_details.py b/src/oci/devops/models/update_trigger_details.py index 81ab41d7f4..5e71a67930 100644 --- a/src/oci/devops/models/update_trigger_details.py +++ b/src/oci/devops/models/update_trigger_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/update_wait_criteria_details.py b/src/oci/devops/models/update_wait_criteria_details.py index f5873f2f56..74328158c0 100644 --- a/src/oci/devops/models/update_wait_criteria_details.py +++ b/src/oci/devops/models/update_wait_criteria_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/update_wait_deploy_stage_details.py b/src/oci/devops/models/update_wait_deploy_stage_details.py index f11f88d1fb..73455f50c5 100644 --- a/src/oci/devops/models/update_wait_deploy_stage_details.py +++ b/src/oci/devops/models/update_wait_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_deploy_stage_details import UpdateDeployStageDetails diff --git a/src/oci/devops/models/update_wait_stage_details.py b/src/oci/devops/models/update_wait_stage_details.py index 63500f4c99..c9ddedee8b 100644 --- a/src/oci/devops/models/update_wait_stage_details.py +++ b/src/oci/devops/models/update_wait_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_build_pipeline_stage_details import UpdateBuildPipelineStageDetails diff --git a/src/oci/devops/models/wait_criteria.py b/src/oci/devops/models/wait_criteria.py index 50911ceefb..7d6076c4cc 100644 --- a/src/oci/devops/models/wait_criteria.py +++ b/src/oci/devops/models/wait_criteria.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/wait_criteria_summary.py b/src/oci/devops/models/wait_criteria_summary.py index c9455b4e26..1a796953b4 100644 --- a/src/oci/devops/models/wait_criteria_summary.py +++ b/src/oci/devops/models/wait_criteria_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/wait_deploy_stage.py b/src/oci/devops/models/wait_deploy_stage.py index 99a91a122e..618da32563 100644 --- a/src/oci/devops/models/wait_deploy_stage.py +++ b/src/oci/devops/models/wait_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage import DeployStage diff --git a/src/oci/devops/models/wait_deploy_stage_execution_progress.py b/src/oci/devops/models/wait_deploy_stage_execution_progress.py index 8bc796b195..fe9457b06d 100644 --- a/src/oci/devops/models/wait_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/wait_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_execution_progress import DeployStageExecutionProgress diff --git a/src/oci/devops/models/wait_deploy_stage_summary.py b/src/oci/devops/models/wait_deploy_stage_summary.py index 7d29d0a559..2800a2376e 100644 --- a/src/oci/devops/models/wait_deploy_stage_summary.py +++ b/src/oci/devops/models/wait_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .deploy_stage_summary import DeployStageSummary diff --git a/src/oci/devops/models/wait_stage.py b/src/oci/devops/models/wait_stage.py index 2c7da4d3f3..dd175f7f00 100644 --- a/src/oci/devops/models/wait_stage.py +++ b/src/oci/devops/models/wait_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_pipeline_stage import BuildPipelineStage diff --git a/src/oci/devops/models/wait_stage_run_progress.py b/src/oci/devops/models/wait_stage_run_progress.py index e109c019fe..d0972fa194 100644 --- a/src/oci/devops/models/wait_stage_run_progress.py +++ b/src/oci/devops/models/wait_stage_run_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_pipeline_stage_run_progress import BuildPipelineStageRunProgress diff --git a/src/oci/devops/models/wait_stage_summary.py b/src/oci/devops/models/wait_stage_summary.py index bed1f24014..af6564f79c 100644 --- a/src/oci/devops/models/wait_stage_summary.py +++ b/src/oci/devops/models/wait_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .build_pipeline_stage_summary import BuildPipelineStageSummary diff --git a/src/oci/devops/models/work_request.py b/src/oci/devops/models/work_request.py index aa9b2a2ebc..8cac2cfabd 100644 --- a/src/oci/devops/models/work_request.py +++ b/src/oci/devops/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/work_request_collection.py b/src/oci/devops/models/work_request_collection.py index 3da816fc43..e69a037181 100644 --- a/src/oci/devops/models/work_request_collection.py +++ b/src/oci/devops/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/work_request_error.py b/src/oci/devops/models/work_request_error.py index f10d675663..6efa9f0eba 100644 --- a/src/oci/devops/models/work_request_error.py +++ b/src/oci/devops/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/work_request_error_collection.py b/src/oci/devops/models/work_request_error_collection.py index a833658a6f..84828c7585 100644 --- a/src/oci/devops/models/work_request_error_collection.py +++ b/src/oci/devops/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/work_request_log_entry.py b/src/oci/devops/models/work_request_log_entry.py index cf80b02328..3d2bf6ecc2 100644 --- a/src/oci/devops/models/work_request_log_entry.py +++ b/src/oci/devops/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/work_request_log_entry_collection.py b/src/oci/devops/models/work_request_log_entry_collection.py index 57482a51bc..ed8c5260a5 100644 --- a/src/oci/devops/models/work_request_log_entry_collection.py +++ b/src/oci/devops/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/work_request_resource.py b/src/oci/devops/models/work_request_resource.py index 995d9d84e1..84f26b01c8 100644 --- a/src/oci/devops/models/work_request_resource.py +++ b/src/oci/devops/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/devops/models/work_request_summary.py b/src/oci/devops/models/work_request_summary.py index 3626a6f86b..f1e8bb76f9 100644 --- a/src/oci/devops/models/work_request_summary.py +++ b/src/oci/devops/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/__init__.py b/src/oci/dns/__init__.py index 880a7d7486..6326dd7332 100644 --- a/src/oci/dns/__init__.py +++ b/src/oci/dns/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/dns/dns_client.py b/src/oci/dns/dns_client.py index 9941d25b08..7932109c2e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("dns", config, signer, dns_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -145,6 +151,10 @@ def change_resolver_compartment(self, resolver_id, change_resolver_compartment_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -156,6 +166,7 @@ def change_resolver_compartment(self, resolver_id, change_resolver_compartment_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -269,6 +280,10 @@ def change_steering_policy_compartment(self, steering_policy_id, change_steering To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -280,6 +295,7 @@ def change_steering_policy_compartment(self, steering_policy_id, change_steering # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -393,6 +409,10 @@ def change_tsig_key_compartment(self, tsig_key_id, change_tsig_key_compartment_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -404,6 +424,7 @@ def change_tsig_key_compartment(self, tsig_key_id, change_tsig_key_compartment_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -518,6 +539,10 @@ def change_view_compartment(self, view_id, change_view_compartment_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -529,6 +554,7 @@ def change_view_compartment(self, view_id, change_view_compartment_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -646,6 +672,10 @@ def change_zone_compartment(self, zone_id, change_zone_compartment_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -657,6 +687,7 @@ def change_zone_compartment(self, zone_id, change_zone_compartment_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -763,6 +794,10 @@ def create_resolver_endpoint(self, resolver_id, create_resolver_endpoint_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.ResolverEndpoint` :rtype: :class:`~oci.response.Response` @@ -774,6 +809,7 @@ def create_resolver_endpoint(self, resolver_id, create_resolver_endpoint_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -880,6 +916,10 @@ def create_steering_policy(self, create_steering_policy_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.SteeringPolicy` :rtype: :class:`~oci.response.Response` @@ -891,6 +931,7 @@ def create_steering_policy(self, create_steering_policy_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -987,6 +1028,10 @@ def create_steering_policy_attachment(self, create_steering_policy_attachment_de To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.SteeringPolicyAttachment` :rtype: :class:`~oci.response.Response` @@ -998,6 +1043,7 @@ def create_steering_policy_attachment(self, create_steering_policy_attachment_de # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -1082,6 +1128,10 @@ def create_tsig_key(self, create_tsig_key_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.TsigKey` :rtype: :class:`~oci.response.Response` @@ -1093,6 +1143,7 @@ def create_tsig_key(self, create_tsig_key_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "scope" @@ -1181,6 +1232,10 @@ def create_view(self, create_view_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.View` :rtype: :class:`~oci.response.Response` @@ -1192,6 +1247,7 @@ def create_view(self, create_view_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -1285,6 +1341,10 @@ def create_zone(self, create_zone_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.Zone` :rtype: :class:`~oci.response.Response` @@ -1296,6 +1356,7 @@ def create_zone(self, create_zone_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "compartment_id", @@ -1405,6 +1466,10 @@ def delete_domain_records(self, zone_name_or_id, domain, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1416,6 +1481,7 @@ def delete_domain_records(self, zone_name_or_id, domain, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -1533,6 +1599,10 @@ def delete_resolver_endpoint(self, resolver_id, resolver_endpoint_name, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1544,6 +1614,7 @@ def delete_resolver_endpoint(self, resolver_id, resolver_endpoint_name, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -1665,6 +1736,10 @@ def delete_rr_set(self, zone_name_or_id, domain, rtype, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1676,6 +1751,7 @@ def delete_rr_set(self, zone_name_or_id, domain, rtype, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -1791,6 +1867,10 @@ def delete_steering_policy(self, steering_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1802,6 +1882,7 @@ def delete_steering_policy(self, steering_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -1909,6 +1990,10 @@ def delete_steering_policy_attachment(self, steering_policy_attachment_id, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1920,6 +2005,7 @@ def delete_steering_policy_attachment(self, steering_policy_attachment_id, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -2026,6 +2112,10 @@ def delete_tsig_key(self, tsig_key_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2037,6 +2127,7 @@ def delete_tsig_key(self, tsig_key_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -2147,6 +2238,10 @@ def delete_view(self, view_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2158,6 +2253,7 @@ def delete_view(self, view_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -2273,6 +2369,10 @@ def delete_zone(self, zone_name_or_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2284,6 +2384,7 @@ def delete_zone(self, zone_name_or_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -2430,6 +2531,10 @@ def get_domain_records(self, zone_name_or_id, domain, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.RecordCollection` :rtype: :class:`~oci.response.Response` @@ -2441,6 +2546,7 @@ def get_domain_records(self, zone_name_or_id, domain, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_none_match", "if_modified_since", @@ -2580,6 +2686,10 @@ def get_resolver(self, resolver_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.Resolver` :rtype: :class:`~oci.response.Response` @@ -2591,6 +2701,7 @@ def get_resolver(self, resolver_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_modified_since", "if_none_match", @@ -2702,6 +2813,10 @@ def get_resolver_endpoint(self, resolver_id, resolver_endpoint_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.ResolverEndpoint` :rtype: :class:`~oci.response.Response` @@ -2713,6 +2828,7 @@ def get_resolver_endpoint(self, resolver_id, resolver_endpoint_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_modified_since", "if_none_match", @@ -2844,6 +2960,10 @@ def get_rr_set(self, zone_name_or_id, domain, rtype, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.RRSet` :rtype: :class:`~oci.response.Response` @@ -2855,6 +2975,7 @@ def get_rr_set(self, zone_name_or_id, domain, rtype, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_none_match", "if_modified_since", @@ -2973,6 +3094,10 @@ def get_steering_policy(self, steering_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.SteeringPolicy` :rtype: :class:`~oci.response.Response` @@ -2984,6 +3109,7 @@ def get_steering_policy(self, steering_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_none_match", "if_modified_since", @@ -3090,6 +3216,10 @@ def get_steering_policy_attachment(self, steering_policy_attachment_id, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.SteeringPolicyAttachment` :rtype: :class:`~oci.response.Response` @@ -3101,6 +3231,7 @@ def get_steering_policy_attachment(self, steering_policy_attachment_id, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_none_match", "if_modified_since", @@ -3207,6 +3338,10 @@ def get_tsig_key(self, tsig_key_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.TsigKey` :rtype: :class:`~oci.response.Response` @@ -3218,6 +3353,7 @@ def get_tsig_key(self, tsig_key_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_none_match", "if_modified_since", @@ -3326,6 +3462,10 @@ def get_view(self, view_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.View` :rtype: :class:`~oci.response.Response` @@ -3337,6 +3477,7 @@ def get_view(self, view_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_modified_since", "if_none_match", @@ -3451,6 +3592,10 @@ def get_zone(self, zone_name_or_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.Zone` :rtype: :class:`~oci.response.Response` @@ -3462,6 +3607,7 @@ def get_zone(self, zone_name_or_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_none_match", "if_modified_since", @@ -3575,6 +3721,10 @@ def get_zone_content(self, zone_name_or_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -3586,6 +3736,7 @@ def get_zone_content(self, zone_name_or_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_none_match", "if_modified_since", @@ -3739,6 +3890,10 @@ def get_zone_records(self, zone_name_or_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.RecordCollection` :rtype: :class:`~oci.response.Response` @@ -3750,6 +3905,7 @@ def get_zone_records(self, zone_name_or_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_none_match", "if_modified_since", @@ -3905,6 +4061,10 @@ def list_resolver_endpoints(self, resolver_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.dns.models.ResolverEndpointSummary` :rtype: :class:`~oci.response.Response` @@ -3916,6 +4076,7 @@ def list_resolver_endpoints(self, resolver_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "name", @@ -4071,6 +4232,10 @@ def list_resolvers(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.dns.models.ResolverSummary` :rtype: :class:`~oci.response.Response` @@ -4082,6 +4247,7 @@ def list_resolvers(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "display_name", @@ -4247,6 +4413,10 @@ def list_steering_policies(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.dns.models.SteeringPolicySummary` :rtype: :class:`~oci.response.Response` @@ -4258,6 +4428,7 @@ def list_steering_policies(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -4437,6 +4608,10 @@ def list_steering_policy_attachments(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.dns.models.SteeringPolicyAttachmentSummary` :rtype: :class:`~oci.response.Response` @@ -4448,6 +4623,7 @@ def list_steering_policy_attachments(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -4601,6 +4777,10 @@ def list_tsig_keys(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.dns.models.TsigKeySummary` :rtype: :class:`~oci.response.Response` @@ -4612,6 +4792,7 @@ def list_tsig_keys(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -4758,6 +4939,10 @@ def list_views(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.dns.models.ViewSummary` :rtype: :class:`~oci.response.Response` @@ -4769,6 +4954,7 @@ def list_views(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "display_name", @@ -4888,6 +5074,10 @@ def list_zone_transfer_servers(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.dns.models.ZoneTransferServer` :rtype: :class:`~oci.response.Response` @@ -4899,6 +5089,7 @@ def list_zone_transfer_servers(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "scope", @@ -5034,6 +5225,10 @@ def list_zones(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.dns.models.ZoneSummary` :rtype: :class:`~oci.response.Response` @@ -5045,6 +5240,7 @@ def list_zones(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -5206,6 +5402,10 @@ def patch_domain_records(self, zone_name_or_id, domain, patch_domain_records_det To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.RecordCollection` :rtype: :class:`~oci.response.Response` @@ -5217,6 +5417,7 @@ def patch_domain_records(self, zone_name_or_id, domain, patch_domain_records_det # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -5349,6 +5550,10 @@ def patch_rr_set(self, zone_name_or_id, domain, rtype, patch_rr_set_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.RecordCollection` :rtype: :class:`~oci.response.Response` @@ -5360,6 +5565,7 @@ def patch_rr_set(self, zone_name_or_id, domain, rtype, patch_rr_set_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -5489,6 +5695,10 @@ def patch_zone_records(self, zone_name_or_id, patch_zone_records_details, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.RecordCollection` :rtype: :class:`~oci.response.Response` @@ -5500,6 +5710,7 @@ def patch_zone_records(self, zone_name_or_id, patch_zone_records_details, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -5631,6 +5842,10 @@ def update_domain_records(self, zone_name_or_id, domain, update_domain_records_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.RecordCollection` :rtype: :class:`~oci.response.Response` @@ -5642,6 +5857,7 @@ def update_domain_records(self, zone_name_or_id, domain, update_domain_records_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -5760,6 +5976,10 @@ def update_resolver(self, resolver_id, update_resolver_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.Resolver` :rtype: :class:`~oci.response.Response` @@ -5771,6 +5991,7 @@ def update_resolver(self, resolver_id, update_resolver_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -5887,6 +6108,10 @@ def update_resolver_endpoint(self, resolver_id, resolver_endpoint_name, update_r To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.ResolverEndpoint` :rtype: :class:`~oci.response.Response` @@ -5898,6 +6123,7 @@ def update_resolver_endpoint(self, resolver_id, resolver_endpoint_name, update_r # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -6026,6 +6252,10 @@ def update_rr_set(self, zone_name_or_id, domain, rtype, update_rr_set_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.RecordCollection` :rtype: :class:`~oci.response.Response` @@ -6037,6 +6267,7 @@ def update_rr_set(self, zone_name_or_id, domain, rtype, update_rr_set_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -6156,6 +6387,10 @@ def update_steering_policy(self, steering_policy_id, update_steering_policy_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.SteeringPolicy` :rtype: :class:`~oci.response.Response` @@ -6167,6 +6402,7 @@ def update_steering_policy(self, steering_policy_id, update_steering_policy_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -6280,6 +6516,10 @@ def update_steering_policy_attachment(self, steering_policy_attachment_id, updat To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.SteeringPolicyAttachment` :rtype: :class:`~oci.response.Response` @@ -6291,6 +6531,7 @@ def update_steering_policy_attachment(self, steering_policy_attachment_id, updat # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -6404,6 +6645,10 @@ def update_tsig_key(self, tsig_key_id, update_tsig_key_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.TsigKey` :rtype: :class:`~oci.response.Response` @@ -6415,6 +6660,7 @@ def update_tsig_key(self, tsig_key_id, update_tsig_key_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -6528,6 +6774,10 @@ def update_view(self, view_id, update_view_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.View` :rtype: :class:`~oci.response.Response` @@ -6539,6 +6789,7 @@ def update_view(self, view_id, update_view_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -6664,6 +6915,10 @@ def update_zone(self, zone_name_or_id, update_zone_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.Zone` :rtype: :class:`~oci.response.Response` @@ -6675,6 +6930,7 @@ def update_zone(self, zone_name_or_id, update_zone_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", @@ -6803,6 +7059,10 @@ def update_zone_records(self, zone_name_or_id, update_zone_records_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dns.models.RecordCollection` :rtype: :class:`~oci.response.Response` @@ -6814,6 +7074,7 @@ def update_zone_records(self, zone_name_or_id, update_zone_records_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_unmodified_since", diff --git a/src/oci/dns/dns_client_composite_operations.py b/src/oci/dns/dns_client_composite_operations.py index 5575bcd388..1a947a1114 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/dns/models/__init__.py b/src/oci/dns/models/__init__.py index b81884529e..bb908154d4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/dns/models/attached_view.py b/src/oci/dns/models/attached_view.py index e2bfacabb9..f4f153ac21 100644 --- a/src/oci/dns/models/attached_view.py +++ b/src/oci/dns/models/attached_view.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/attached_view_details.py b/src/oci/dns/models/attached_view_details.py index 50e6cf608c..8d0b43e0a4 100644 --- a/src/oci/dns/models/attached_view_details.py +++ b/src/oci/dns/models/attached_view_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/change_resolver_compartment_details.py b/src/oci/dns/models/change_resolver_compartment_details.py index d8ee31380e..73d58ec36e 100644 --- a/src/oci/dns/models/change_resolver_compartment_details.py +++ b/src/oci/dns/models/change_resolver_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 9553e38a1b..4a6458e74c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 4af5330be3..373525f009 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/change_view_compartment_details.py b/src/oci/dns/models/change_view_compartment_details.py index 359e82be2e..5dbdf71acc 100644 --- a/src/oci/dns/models/change_view_compartment_details.py +++ b/src/oci/dns/models/change_view_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/change_zone_compartment_details.py b/src/oci/dns/models/change_zone_compartment_details.py index 3b76f86219..90929bca32 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 609ad9a340..3317397f8d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_zone_base_details import CreateZoneBaseDetails diff --git a/src/oci/dns/models/create_resolver_endpoint_details.py b/src/oci/dns/models/create_resolver_endpoint_details.py index 5ef9ce69ae..e4497d890b 100644 --- a/src/oci/dns/models/create_resolver_endpoint_details.py +++ b/src/oci/dns/models/create_resolver_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/create_resolver_vnic_endpoint_details.py b/src/oci/dns/models/create_resolver_vnic_endpoint_details.py index c488d49ece..327ac31d77 100644 --- a/src/oci/dns/models/create_resolver_vnic_endpoint_details.py +++ b/src/oci/dns/models/create_resolver_vnic_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_resolver_endpoint_details import CreateResolverEndpointDetails 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 5baeca7ff1..e946d9fbc2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/create_steering_policy_details.py b/src/oci/dns/models/create_steering_policy_details.py index ce4000364c..9cdac5ae8e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/create_tsig_key_details.py b/src/oci/dns/models/create_tsig_key_details.py index 1c75c13e2d..9b4bb916a4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/create_view_details.py b/src/oci/dns/models/create_view_details.py index a26f1cfa7c..167c8017bf 100644 --- a/src/oci/dns/models/create_view_details.py +++ b/src/oci/dns/models/create_view_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/create_zone_base_details.py b/src/oci/dns/models/create_zone_base_details.py index d807a0b39d..a02dde5cbb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/create_zone_details.py b/src/oci/dns/models/create_zone_details.py index 7dcfd2eaa8..a6ab50426a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_zone_base_details import CreateZoneBaseDetails diff --git a/src/oci/dns/models/dynect_migration_details.py b/src/oci/dns/models/dynect_migration_details.py index c67b27ca18..20efe41c2c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/external_master.py b/src/oci/dns/models/external_master.py index 7dfda8cef5..a7c7cb50d9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/migration_replacement.py b/src/oci/dns/models/migration_replacement.py index 95c6064aad..3ec76ba918 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/nameserver.py b/src/oci/dns/models/nameserver.py index 3e9b557701..4a6b685127 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/patch_domain_records_details.py b/src/oci/dns/models/patch_domain_records_details.py index 3546b64ae2..9939e7cdad 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/patch_rr_set_details.py b/src/oci/dns/models/patch_rr_set_details.py index c5c31018d0..24e8c385dc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/patch_zone_records_details.py b/src/oci/dns/models/patch_zone_records_details.py index d08633b258..1ed0767aca 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/record.py b/src/oci/dns/models/record.py index 84cd92e9c1..afaaca3e13 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/record_collection.py b/src/oci/dns/models/record_collection.py index 8c540e1d09..69d870ee5d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/record_details.py b/src/oci/dns/models/record_details.py index 0fcfd227e5..0ade2e5815 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/record_operation.py b/src/oci/dns/models/record_operation.py index f32db514da..03601efe96 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/resolver.py b/src/oci/dns/models/resolver.py index 88cb20ea8d..2b320e5bcf 100644 --- a/src/oci/dns/models/resolver.py +++ b/src/oci/dns/models/resolver.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/resolver_endpoint.py b/src/oci/dns/models/resolver_endpoint.py index 76e6a83a4d..20b229db88 100644 --- a/src/oci/dns/models/resolver_endpoint.py +++ b/src/oci/dns/models/resolver_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/resolver_endpoint_summary.py b/src/oci/dns/models/resolver_endpoint_summary.py index f3cf777b2e..d2deef317e 100644 --- a/src/oci/dns/models/resolver_endpoint_summary.py +++ b/src/oci/dns/models/resolver_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/resolver_forward_rule.py b/src/oci/dns/models/resolver_forward_rule.py index 3cbe1584d1..e24048af8e 100644 --- a/src/oci/dns/models/resolver_forward_rule.py +++ b/src/oci/dns/models/resolver_forward_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .resolver_rule import ResolverRule diff --git a/src/oci/dns/models/resolver_forward_rule_details.py b/src/oci/dns/models/resolver_forward_rule_details.py index fcec77e122..9a6b7edad3 100644 --- a/src/oci/dns/models/resolver_forward_rule_details.py +++ b/src/oci/dns/models/resolver_forward_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .resolver_rule_details import ResolverRuleDetails diff --git a/src/oci/dns/models/resolver_rule.py b/src/oci/dns/models/resolver_rule.py index 28085e2555..4c888d2799 100644 --- a/src/oci/dns/models/resolver_rule.py +++ b/src/oci/dns/models/resolver_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/resolver_rule_details.py b/src/oci/dns/models/resolver_rule_details.py index 3186259a27..8ce26cea1d 100644 --- a/src/oci/dns/models/resolver_rule_details.py +++ b/src/oci/dns/models/resolver_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/resolver_summary.py b/src/oci/dns/models/resolver_summary.py index 917d8a118d..207ed27d0b 100644 --- a/src/oci/dns/models/resolver_summary.py +++ b/src/oci/dns/models/resolver_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/resolver_vnic_endpoint.py b/src/oci/dns/models/resolver_vnic_endpoint.py index 17ce8a8549..701e2d02a5 100644 --- a/src/oci/dns/models/resolver_vnic_endpoint.py +++ b/src/oci/dns/models/resolver_vnic_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .resolver_endpoint import ResolverEndpoint diff --git a/src/oci/dns/models/resolver_vnic_endpoint_summary.py b/src/oci/dns/models/resolver_vnic_endpoint_summary.py index 191b54733c..e7eaea7cab 100644 --- a/src/oci/dns/models/resolver_vnic_endpoint_summary.py +++ b/src/oci/dns/models/resolver_vnic_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .resolver_endpoint_summary import ResolverEndpointSummary diff --git a/src/oci/dns/models/rr_set.py b/src/oci/dns/models/rr_set.py index 8649bb7d86..d4d02768e2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/steering_policy.py b/src/oci/dns/models/steering_policy.py index 14645ce618..2cb2e5265d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/steering_policy_answer.py b/src/oci/dns/models/steering_policy_answer.py index f6e205bcba..021d242ae8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/steering_policy_attachment.py b/src/oci/dns/models/steering_policy_attachment.py index ce00882a36..8316888eb7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/steering_policy_attachment_summary.py b/src/oci/dns/models/steering_policy_attachment_summary.py index 9dca3992a6..23c758b0d9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 450d89b54e..387d6fe5fd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/steering_policy_filter_rule.py b/src/oci/dns/models/steering_policy_filter_rule.py index cf62a0df11..0cb7869632 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .steering_policy_rule import SteeringPolicyRule 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 231a60dd34..0f5bdadd38 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/steering_policy_health_rule.py b/src/oci/dns/models/steering_policy_health_rule.py index 5ccb00b87f..8f20ae93cd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .steering_policy_rule import SteeringPolicyRule 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 314fe16739..2becc99437 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/steering_policy_limit_rule.py b/src/oci/dns/models/steering_policy_limit_rule.py index 71ed71ec45..2daf760d9b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .steering_policy_rule import SteeringPolicyRule 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 c10b062869..be3b6db279 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 80b89f420d..19095d60b2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/steering_policy_priority_rule.py b/src/oci/dns/models/steering_policy_priority_rule.py index c675203bb2..fffe057989 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .steering_policy_rule import SteeringPolicyRule 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 b2895398d0..932e790a3c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/steering_policy_rule.py b/src/oci/dns/models/steering_policy_rule.py index ba18acf7a7..749ab526f7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/steering_policy_summary.py b/src/oci/dns/models/steering_policy_summary.py index bce8a1c184..5b68c72ab0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 c19349396c..d1f1ba12bf 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/steering_policy_weighted_rule.py b/src/oci/dns/models/steering_policy_weighted_rule.py index c9671a55f3..3836f35d60 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .steering_policy_rule import SteeringPolicyRule 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 3f5394f175..6a317e148b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/tsig_key.py b/src/oci/dns/models/tsig_key.py index 8eeec4d468..03c3dacb13 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/tsig_key_summary.py b/src/oci/dns/models/tsig_key_summary.py index c5ee390ed5..ae27e15e4f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/update_domain_records_details.py b/src/oci/dns/models/update_domain_records_details.py index 707f9765a3..afb552c3f2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/update_resolver_details.py b/src/oci/dns/models/update_resolver_details.py index bb0edaf6c5..b33be41997 100644 --- a/src/oci/dns/models/update_resolver_details.py +++ b/src/oci/dns/models/update_resolver_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/update_resolver_endpoint_details.py b/src/oci/dns/models/update_resolver_endpoint_details.py index 04cbcdabe5..868019a3ba 100644 --- a/src/oci/dns/models/update_resolver_endpoint_details.py +++ b/src/oci/dns/models/update_resolver_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/update_resolver_vnic_endpoint_details.py b/src/oci/dns/models/update_resolver_vnic_endpoint_details.py index 202668dad8..4f755956ef 100644 --- a/src/oci/dns/models/update_resolver_vnic_endpoint_details.py +++ b/src/oci/dns/models/update_resolver_vnic_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_resolver_endpoint_details import UpdateResolverEndpointDetails diff --git a/src/oci/dns/models/update_rr_set_details.py b/src/oci/dns/models/update_rr_set_details.py index 3cc2625c0e..88e87d735a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 3697f55a48..b93c2a1320 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/update_steering_policy_details.py b/src/oci/dns/models/update_steering_policy_details.py index ba192dfb27..974f0ef736 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/update_tsig_key_details.py b/src/oci/dns/models/update_tsig_key_details.py index 3077a9f802..d3466e301b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/update_view_details.py b/src/oci/dns/models/update_view_details.py index 4caaa480f9..479e67bda8 100644 --- a/src/oci/dns/models/update_view_details.py +++ b/src/oci/dns/models/update_view_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/update_zone_details.py b/src/oci/dns/models/update_zone_details.py index 62b9ff23bc..efcb4c1cdc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/update_zone_records_details.py b/src/oci/dns/models/update_zone_records_details.py index 244a09b5ed..e5017b63bc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/view.py b/src/oci/dns/models/view.py index 70a4cf7ad4..ea225e37e4 100644 --- a/src/oci/dns/models/view.py +++ b/src/oci/dns/models/view.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/view_summary.py b/src/oci/dns/models/view_summary.py index ddec6f8542..c4a1ae5ca7 100644 --- a/src/oci/dns/models/view_summary.py +++ b/src/oci/dns/models/view_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/zone.py b/src/oci/dns/models/zone.py index 5c777c800a..fc1fc6835e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/zone_summary.py b/src/oci/dns/models/zone_summary.py index 296fbb85e0..76408414d6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dns/models/zone_transfer_server.py b/src/oci/dns/models/zone_transfer_server.py index 089ed89dea..78ea078302 100644 --- a/src/oci/dns/models/zone_transfer_server.py +++ b/src/oci/dns/models/zone_transfer_server.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/__init__.py b/src/oci/dts/__init__.py index b2948d17e4..e7bca9c8a1 100644 --- a/src/oci/dts/__init__.py +++ b/src/oci/dts/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/dts/appliance_export_job_client.py b/src/oci/dts/appliance_export_job_client.py index 3495d23d72..036311f7a8 100644 --- a/src/oci/dts/appliance_export_job_client.py +++ b/src/oci/dts/appliance_export_job_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("appliance_export_job", config, signer, dts_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -132,6 +138,10 @@ def change_appliance_export_job_compartment(self, appliance_export_job_id, chang To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -143,6 +153,7 @@ def change_appliance_export_job_compartment(self, appliance_export_job_id, chang # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -224,6 +235,10 @@ def create_appliance_export_job(self, create_appliance_export_job_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.ApplianceExportJob` :rtype: :class:`~oci.response.Response` @@ -235,6 +250,7 @@ def create_appliance_export_job(self, create_appliance_export_job_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -301,6 +317,10 @@ def delete_appliance_export_job(self, appliance_export_job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -312,6 +332,7 @@ def delete_appliance_export_job(self, appliance_export_job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -381,6 +402,10 @@ def get_appliance_export_job(self, appliance_export_job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.ApplianceExportJob` :rtype: :class:`~oci.response.Response` @@ -392,6 +417,7 @@ def get_appliance_export_job(self, appliance_export_job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -485,6 +511,10 @@ def list_appliance_export_jobs(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.dts.models.ApplianceExportJobSummary` :rtype: :class:`~oci.response.Response` @@ -496,6 +526,7 @@ def list_appliance_export_jobs(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "display_name", @@ -582,6 +613,10 @@ def update_appliance_export_job(self, appliance_export_job_id, update_appliance_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.ApplianceExportJob` :rtype: :class:`~oci.response.Response` @@ -593,6 +628,7 @@ def update_appliance_export_job(self, appliance_export_job_id, update_appliance_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/dts/appliance_export_job_client_composite_operations.py b/src/oci/dts/appliance_export_job_client_composite_operations.py index 54b5cf0e32..33f2fa690d 100644 --- a/src/oci/dts/appliance_export_job_client_composite_operations.py +++ b/src/oci/dts/appliance_export_job_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/dts/models/__init__.py b/src/oci/dts/models/__init__.py index 2cab32a863..d5d766eb5c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/dts/models/appliance_export_job.py b/src/oci/dts/models/appliance_export_job.py index 97a9617ce8..20d907b771 100644 --- a/src/oci/dts/models/appliance_export_job.py +++ b/src/oci/dts/models/appliance_export_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/appliance_export_job_summary.py b/src/oci/dts/models/appliance_export_job_summary.py index d8826f1596..7c1d97c0eb 100644 --- a/src/oci/dts/models/appliance_export_job_summary.py +++ b/src/oci/dts/models/appliance_export_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/attach_devices_details.py b/src/oci/dts/models/attach_devices_details.py index bdde567657..7fb8aa56ba 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/change_appliance_export_job_compartment_details.py b/src/oci/dts/models/change_appliance_export_job_compartment_details.py index f16bc4ce85..5f16531392 100644 --- a/src/oci/dts/models/change_appliance_export_job_compartment_details.py +++ b/src/oci/dts/models/change_appliance_export_job_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 6d8b5e7066..a45ff28aa1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/create_appliance_export_job_details.py b/src/oci/dts/models/create_appliance_export_job_details.py index df46e89650..7ad98fc3bf 100644 --- a/src/oci/dts/models/create_appliance_export_job_details.py +++ b/src/oci/dts/models/create_appliance_export_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/create_transfer_appliance_details.py b/src/oci/dts/models/create_transfer_appliance_details.py index bed769985b..e7ebf54333 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 b152851a4d..a5cec2402e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/create_transfer_device_details.py b/src/oci/dts/models/create_transfer_device_details.py index 081c3dd9a0..a588e5ea68 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/create_transfer_job_details.py b/src/oci/dts/models/create_transfer_job_details.py index d50aa93951..e023564c55 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/create_transfer_package_details.py b/src/oci/dts/models/create_transfer_package_details.py index 9a07c9d3a5..7f426282f8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/detach_devices_details.py b/src/oci/dts/models/detach_devices_details.py index 83dd8bd9c1..a01972ca8b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/multiple_transfer_appliances.py b/src/oci/dts/models/multiple_transfer_appliances.py index 69ad0c0ffa..ef5f5e3602 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/multiple_transfer_devices.py b/src/oci/dts/models/multiple_transfer_devices.py index 81cfc88408..162de423d3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/multiple_transfer_packages.py b/src/oci/dts/models/multiple_transfer_packages.py index ba061a6397..d631696857 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/new_transfer_device.py b/src/oci/dts/models/new_transfer_device.py index ffd2c90f4d..74db425341 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/shipping_address.py b/src/oci/dts/models/shipping_address.py index 453d9b97dc..4b4e6be7cb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/shipping_vendors.py b/src/oci/dts/models/shipping_vendors.py index 75beacac97..0ff6c73025 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/transfer_appliance.py b/src/oci/dts/models/transfer_appliance.py index 862e4707e6..9b607a3976 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/transfer_appliance_certificate.py b/src/oci/dts/models/transfer_appliance_certificate.py index 53c458f10b..ec944f7cd9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/transfer_appliance_encryption_passphrase.py b/src/oci/dts/models/transfer_appliance_encryption_passphrase.py index 0304af8e76..fc63e1efc1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/transfer_appliance_entitlement.py b/src/oci/dts/models/transfer_appliance_entitlement.py index 32796a88e9..fb9b836aeb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/transfer_appliance_entitlement_summary.py b/src/oci/dts/models/transfer_appliance_entitlement_summary.py index 61f4124d2f..b7d1309298 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/transfer_appliance_public_key.py b/src/oci/dts/models/transfer_appliance_public_key.py index 910e42846a..a496720b4b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/transfer_appliance_summary.py b/src/oci/dts/models/transfer_appliance_summary.py index 1418f16666..5ed53576e8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/transfer_device.py b/src/oci/dts/models/transfer_device.py index e7394c83c9..8f21ad5f67 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/transfer_device_summary.py b/src/oci/dts/models/transfer_device_summary.py index 741858f162..97f1f8436d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/transfer_job.py b/src/oci/dts/models/transfer_job.py index 5a397375a7..4145798297 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/transfer_job_summary.py b/src/oci/dts/models/transfer_job_summary.py index 899c072167..ae9dba54fc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/transfer_package.py b/src/oci/dts/models/transfer_package.py index 38473b334a..f46adca175 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/transfer_package_summary.py b/src/oci/dts/models/transfer_package_summary.py index 0e97596e43..2e93c243b5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/update_appliance_export_job_details.py b/src/oci/dts/models/update_appliance_export_job_details.py index 6e753171c5..2a80822be3 100644 --- a/src/oci/dts/models/update_appliance_export_job_details.py +++ b/src/oci/dts/models/update_appliance_export_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/update_transfer_appliance_details.py b/src/oci/dts/models/update_transfer_appliance_details.py index 43fbbb99ec..8c9e74ee86 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/update_transfer_device_details.py b/src/oci/dts/models/update_transfer_device_details.py index 7e46064e3d..e61d1118b6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/update_transfer_job_details.py b/src/oci/dts/models/update_transfer_job_details.py index 075634f68b..2dd2cb3a6c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/models/update_transfer_package_details.py b/src/oci/dts/models/update_transfer_package_details.py index 8fef9eb239..2048dbc465 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/dts/shipping_vendors_client.py b/src/oci/dts/shipping_vendors_client.py index 0ad2adc442..1633e5be86 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("shipping_vendors", config, signer, dts_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -111,6 +117,10 @@ def list_shipping_vendors(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.ShippingVendors` :rtype: :class:`~oci.response.Response` diff --git a/src/oci/dts/shipping_vendors_client_composite_operations.py b/src/oci/dts/shipping_vendors_client_composite_operations.py index 33994ce908..70d17ab96f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/dts/transfer_appliance_client.py b/src/oci/dts/transfer_appliance_client.py index 3d0e9de5fa..93a5601c9f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("transfer_appliance", config, signer, dts_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -119,6 +125,10 @@ def create_transfer_appliance(self, id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.TransferAppliance` :rtype: :class:`~oci.response.Response` @@ -130,6 +140,7 @@ def create_transfer_appliance(self, id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "create_transfer_appliance_details" @@ -204,6 +215,10 @@ def create_transfer_appliance_admin_credentials(self, id, transfer_appliance_lab To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.TransferApplianceCertificate` :rtype: :class:`~oci.response.Response` @@ -280,6 +295,10 @@ def delete_transfer_appliance(self, id, transfer_appliance_label, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -352,6 +371,10 @@ def get_transfer_appliance(self, id, transfer_appliance_label, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.TransferAppliance` :rtype: :class:`~oci.response.Response` @@ -426,6 +449,10 @@ def get_transfer_appliance_certificate_authority_certificate(self, id, transfer_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.TransferApplianceCertificate` :rtype: :class:`~oci.response.Response` @@ -500,6 +527,10 @@ def get_transfer_appliance_encryption_passphrase(self, id, transfer_appliance_la To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.TransferApplianceEncryptionPassphrase` :rtype: :class:`~oci.response.Response` @@ -576,6 +607,10 @@ def list_transfer_appliances(self, id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.MultipleTransferAppliances` :rtype: :class:`~oci.response.Response` @@ -587,6 +622,7 @@ def list_transfer_appliances(self, id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state" ] @@ -674,6 +710,10 @@ def update_transfer_appliance(self, id, transfer_appliance_label, update_transfe To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.TransferAppliance` :rtype: :class:`~oci.response.Response` @@ -685,6 +725,7 @@ def update_transfer_appliance(self, id, transfer_appliance_label, update_transfe # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] diff --git a/src/oci/dts/transfer_appliance_client_composite_operations.py b/src/oci/dts/transfer_appliance_client_composite_operations.py index 47458c643e..6d755947a4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/dts/transfer_appliance_entitlement_client.py b/src/oci/dts/transfer_appliance_entitlement_client.py index d563bc7746..f1e60c215d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("transfer_appliance_entitlement", config, signer, dts_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -125,6 +131,10 @@ def create_transfer_appliance_entitlement(self, create_transfer_appliance_entitl To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.TransferApplianceEntitlement` :rtype: :class:`~oci.response.Response` @@ -136,6 +146,7 @@ def create_transfer_appliance_entitlement(self, create_transfer_appliance_entitl # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -205,6 +216,10 @@ def get_transfer_appliance_entitlement(self, id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.TransferApplianceEntitlement` :rtype: :class:`~oci.response.Response` @@ -216,6 +231,7 @@ def get_transfer_appliance_entitlement(self, id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -294,6 +310,10 @@ def list_transfer_appliance_entitlement(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.dts.models.TransferApplianceEntitlementSummary` :rtype: :class:`~oci.response.Response` @@ -305,6 +325,7 @@ def list_transfer_appliance_entitlement(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "display_name", 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 aea3d3751b..7ed4f8788a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/dts/transfer_device_client.py b/src/oci/dts/transfer_device_client.py index 8cd05726e8..7698660717 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("transfer_device", config, signer, dts_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -119,6 +125,10 @@ def create_transfer_device(self, id, create_transfer_device_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.NewTransferDevice` :rtype: :class:`~oci.response.Response` @@ -130,6 +140,7 @@ def create_transfer_device(self, id, create_transfer_device_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -201,6 +212,10 @@ def delete_transfer_device(self, id, transfer_device_label, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -273,6 +288,10 @@ def get_transfer_device(self, id, transfer_device_label, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.TransferDevice` :rtype: :class:`~oci.response.Response` @@ -352,6 +371,10 @@ def list_transfer_devices(self, id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.MultipleTransferDevices` :rtype: :class:`~oci.response.Response` @@ -363,6 +386,7 @@ def list_transfer_devices(self, id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "display_name" @@ -452,6 +476,10 @@ def update_transfer_device(self, id, transfer_device_label, update_transfer_devi To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.TransferDevice` :rtype: :class:`~oci.response.Response` @@ -463,6 +491,7 @@ def update_transfer_device(self, id, transfer_device_label, update_transfer_devi # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] diff --git a/src/oci/dts/transfer_device_client_composite_operations.py b/src/oci/dts/transfer_device_client_composite_operations.py index 7915226c82..455ae96456 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/dts/transfer_job_client.py b/src/oci/dts/transfer_job_client.py index de86a2b8b9..6b12d1fe75 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("transfer_job", config, signer, dts_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -132,6 +138,10 @@ def change_transfer_job_compartment(self, transfer_job_id, change_transfer_job_c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -143,6 +153,7 @@ def change_transfer_job_compartment(self, transfer_job_id, change_transfer_job_c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -219,6 +230,10 @@ def create_transfer_job(self, create_transfer_job_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.TransferJob` :rtype: :class:`~oci.response.Response` @@ -230,6 +245,7 @@ def create_transfer_job(self, create_transfer_job_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -292,6 +308,10 @@ def delete_transfer_job(self, id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -303,6 +323,7 @@ def delete_transfer_job(self, id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -370,6 +391,10 @@ def get_transfer_job(self, id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.TransferJob` :rtype: :class:`~oci.response.Response` @@ -381,6 +406,7 @@ def get_transfer_job(self, id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -474,6 +500,10 @@ def list_transfer_jobs(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.dts.models.TransferJobSummary` :rtype: :class:`~oci.response.Response` @@ -485,6 +515,7 @@ def list_transfer_jobs(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "display_name", @@ -571,6 +602,10 @@ def update_transfer_job(self, id, update_transfer_job_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.TransferJob` :rtype: :class:`~oci.response.Response` @@ -582,6 +617,7 @@ def update_transfer_job(self, id, update_transfer_job_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/dts/transfer_job_client_composite_operations.py b/src/oci/dts/transfer_job_client_composite_operations.py index 49371a7eec..dd1881810c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/dts/transfer_package_client.py b/src/oci/dts/transfer_package_client.py index bbd274ea84..a2041a7819 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("transfer_package", config, signer, dts_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -120,6 +126,10 @@ def attach_devices_to_transfer_package(self, id, transfer_package_label, attach_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -196,6 +206,10 @@ def create_transfer_package(self, id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.TransferPackage` :rtype: :class:`~oci.response.Response` @@ -207,6 +221,7 @@ def create_transfer_package(self, id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "create_transfer_package_details" @@ -279,6 +294,10 @@ def delete_transfer_package(self, id, transfer_package_label, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -354,6 +373,10 @@ def detach_devices_from_transfer_package(self, id, transfer_package_label, detac To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -428,6 +451,10 @@ def get_transfer_package(self, id, transfer_package_label, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.TransferPackage` :rtype: :class:`~oci.response.Response` @@ -507,6 +534,10 @@ def list_transfer_packages(self, id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.MultipleTransferPackages` :rtype: :class:`~oci.response.Response` @@ -518,6 +549,7 @@ def list_transfer_packages(self, id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "display_name" @@ -607,6 +639,10 @@ def update_transfer_package(self, id, transfer_package_label, update_transfer_pa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.dts.models.TransferPackage` :rtype: :class:`~oci.response.Response` @@ -618,6 +654,7 @@ def update_transfer_package(self, id, transfer_package_label, update_transfer_pa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] diff --git a/src/oci/dts/transfer_package_client_composite_operations.py b/src/oci/dts/transfer_package_client_composite_operations.py index f56cac5ed7..72916a4a55 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/email/__init__.py b/src/oci/email/__init__.py index beec688627..711d0ce5f7 100644 --- a/src/oci/email/__init__.py +++ b/src/oci/email/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/email/email_client.py b/src/oci/email/email_client.py index 1c15b67075..6c69d6a7c5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -69,6 +69,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -99,6 +103,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("email", config, signer, email_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -146,6 +152,10 @@ def change_email_domain_compartment(self, email_domain_id, change_email_domain_c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -157,6 +167,7 @@ def change_email_domain_compartment(self, email_domain_id, change_email_domain_c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -238,6 +249,10 @@ def change_sender_compartment(self, sender_id, change_sender_compartment_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -249,6 +264,7 @@ def change_sender_compartment(self, sender_id, change_sender_compartment_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -330,6 +346,10 @@ def create_dkim(self, create_dkim_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.email.models.Dkim` :rtype: :class:`~oci.response.Response` @@ -341,6 +361,7 @@ def create_dkim(self, create_dkim_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -409,6 +430,10 @@ def create_email_domain(self, create_email_domain_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.email.models.EmailDomain` :rtype: :class:`~oci.response.Response` @@ -420,6 +445,7 @@ def create_email_domain(self, create_email_domain_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -481,6 +507,10 @@ def create_sender(self, create_sender_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.email.models.Sender` :rtype: :class:`~oci.response.Response` @@ -492,6 +522,7 @@ def create_sender(self, create_sender_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -553,6 +584,10 @@ def create_suppression(self, create_suppression_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.email.models.Suppression` :rtype: :class:`~oci.response.Response` @@ -564,6 +599,7 @@ def create_suppression(self, create_suppression_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -634,6 +670,10 @@ def delete_dkim(self, dkim_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -645,6 +685,7 @@ def delete_dkim(self, dkim_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -720,6 +761,10 @@ def delete_email_domain(self, email_domain_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -731,6 +776,7 @@ def delete_email_domain(self, email_domain_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -805,6 +851,10 @@ def delete_sender(self, sender_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -816,6 +866,7 @@ def delete_sender(self, sender_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -885,6 +936,10 @@ def delete_suppression(self, suppression_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -896,6 +951,7 @@ def delete_suppression(self, suppression_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -964,6 +1020,10 @@ def get_dkim(self, dkim_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.email.models.Dkim` :rtype: :class:`~oci.response.Response` @@ -975,6 +1035,7 @@ def get_dkim(self, dkim_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1045,6 +1106,10 @@ def get_email_domain(self, email_domain_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.email.models.EmailDomain` :rtype: :class:`~oci.response.Response` @@ -1056,6 +1121,7 @@ def get_email_domain(self, email_domain_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1124,6 +1190,10 @@ def get_sender(self, sender_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.email.models.Sender` :rtype: :class:`~oci.response.Response` @@ -1135,6 +1205,7 @@ def get_sender(self, sender_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1204,6 +1275,10 @@ def get_suppression(self, suppression_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.email.models.Suppression` :rtype: :class:`~oci.response.Response` @@ -1215,6 +1290,7 @@ def get_suppression(self, suppression_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1283,6 +1359,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.email.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -1294,6 +1374,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1405,6 +1486,10 @@ def list_dkims(self, email_domain_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.email.models.DkimCollection` :rtype: :class:`~oci.response.Response` @@ -1416,6 +1501,7 @@ def list_dkims(self, email_domain_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "id", @@ -1555,6 +1641,10 @@ def list_email_domains(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.email.models.EmailDomainCollection` :rtype: :class:`~oci.response.Response` @@ -1566,6 +1656,7 @@ def list_email_domains(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "id", @@ -1702,6 +1793,10 @@ def list_senders(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.email.models.SenderSummary` :rtype: :class:`~oci.response.Response` @@ -1713,6 +1808,7 @@ def list_senders(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "lifecycle_state", @@ -1863,6 +1959,10 @@ def list_suppressions(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.email.models.SuppressionSummary` :rtype: :class:`~oci.response.Response` @@ -1874,6 +1974,7 @@ def list_suppressions(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "email_address", @@ -1979,6 +2080,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.email.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -1990,6 +2095,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -2082,6 +2188,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.email.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -2093,6 +2203,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -2188,6 +2299,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.email.models.WorkRequestSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -2199,6 +2314,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "work_request_id", "opc_request_id", @@ -2278,6 +2394,10 @@ def update_dkim(self, dkim_id, update_dkim_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2289,6 +2409,7 @@ def update_dkim(self, dkim_id, update_dkim_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2369,6 +2490,10 @@ def update_email_domain(self, email_domain_id, update_email_domain_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2380,6 +2505,7 @@ def update_email_domain(self, email_domain_id, update_email_domain_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2463,6 +2589,10 @@ def update_sender(self, sender_id, update_sender_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.email.models.Sender` :rtype: :class:`~oci.response.Response` @@ -2474,6 +2604,7 @@ def update_sender(self, sender_id, update_sender_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/email/email_client_composite_operations.py b/src/oci/email/email_client_composite_operations.py index 6ddef8a823..b8783d2eb4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/email/models/__init__.py b/src/oci/email/models/__init__.py index 07eadc1b56..e97c3f790b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/email/models/change_email_domain_compartment_details.py b/src/oci/email/models/change_email_domain_compartment_details.py index 36941b78fb..a66781d98b 100644 --- a/src/oci/email/models/change_email_domain_compartment_details.py +++ b/src/oci/email/models/change_email_domain_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/change_sender_compartment_details.py b/src/oci/email/models/change_sender_compartment_details.py index 9c555b57af..d922eb7b50 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/create_dkim_details.py b/src/oci/email/models/create_dkim_details.py index 4ac52c8b1d..0b49462778 100644 --- a/src/oci/email/models/create_dkim_details.py +++ b/src/oci/email/models/create_dkim_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/create_email_domain_details.py b/src/oci/email/models/create_email_domain_details.py index 545b8a606c..36d693dbc0 100644 --- a/src/oci/email/models/create_email_domain_details.py +++ b/src/oci/email/models/create_email_domain_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/create_sender_details.py b/src/oci/email/models/create_sender_details.py index b7780a93b3..4c3f2477f3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/create_suppression_details.py b/src/oci/email/models/create_suppression_details.py index 5a51c342e5..eb9fc85245 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/dkim.py b/src/oci/email/models/dkim.py index 457fbb4f87..e1837ee9a3 100644 --- a/src/oci/email/models/dkim.py +++ b/src/oci/email/models/dkim.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/dkim_collection.py b/src/oci/email/models/dkim_collection.py index d908ba1de2..d540aad15f 100644 --- a/src/oci/email/models/dkim_collection.py +++ b/src/oci/email/models/dkim_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/dkim_summary.py b/src/oci/email/models/dkim_summary.py index 0affb38b7b..2c7dd5242c 100644 --- a/src/oci/email/models/dkim_summary.py +++ b/src/oci/email/models/dkim_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/email_domain.py b/src/oci/email/models/email_domain.py index 700be5e075..af12e915aa 100644 --- a/src/oci/email/models/email_domain.py +++ b/src/oci/email/models/email_domain.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/email_domain_collection.py b/src/oci/email/models/email_domain_collection.py index 5e286ac222..824c95f75e 100644 --- a/src/oci/email/models/email_domain_collection.py +++ b/src/oci/email/models/email_domain_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/email_domain_summary.py b/src/oci/email/models/email_domain_summary.py index 474c4316d2..3863c7547c 100644 --- a/src/oci/email/models/email_domain_summary.py +++ b/src/oci/email/models/email_domain_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/sender.py b/src/oci/email/models/sender.py index d180a1f9fe..e5559264dd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/sender_summary.py b/src/oci/email/models/sender_summary.py index 53df798dba..a618d03749 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/suppression.py b/src/oci/email/models/suppression.py index 4465ba26a8..eb4d388019 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/suppression_summary.py b/src/oci/email/models/suppression_summary.py index bc9e9daf2f..2eee569ffa 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/update_dkim_details.py b/src/oci/email/models/update_dkim_details.py index 1d82d98361..ae9f8c1621 100644 --- a/src/oci/email/models/update_dkim_details.py +++ b/src/oci/email/models/update_dkim_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/update_email_domain_details.py b/src/oci/email/models/update_email_domain_details.py index 56f32cff9f..fa6411a381 100644 --- a/src/oci/email/models/update_email_domain_details.py +++ b/src/oci/email/models/update_email_domain_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/update_sender_details.py b/src/oci/email/models/update_sender_details.py index 6ad911bdfb..ba9fd81be5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/work_request.py b/src/oci/email/models/work_request.py index 58db35d82c..adc278c540 100644 --- a/src/oci/email/models/work_request.py +++ b/src/oci/email/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/work_request_error.py b/src/oci/email/models/work_request_error.py index 04dde83e08..26ac6a8cc9 100644 --- a/src/oci/email/models/work_request_error.py +++ b/src/oci/email/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/work_request_error_collection.py b/src/oci/email/models/work_request_error_collection.py index f5dd20ba69..fbdeeab59d 100644 --- a/src/oci/email/models/work_request_error_collection.py +++ b/src/oci/email/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/work_request_log_entry.py b/src/oci/email/models/work_request_log_entry.py index 8d02a6a994..7b37ab8d12 100644 --- a/src/oci/email/models/work_request_log_entry.py +++ b/src/oci/email/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/work_request_log_entry_collection.py b/src/oci/email/models/work_request_log_entry_collection.py index add78db24b..cd8a72b36a 100644 --- a/src/oci/email/models/work_request_log_entry_collection.py +++ b/src/oci/email/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/work_request_resource.py b/src/oci/email/models/work_request_resource.py index 6decbf1282..4a492bf1d8 100644 --- a/src/oci/email/models/work_request_resource.py +++ b/src/oci/email/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/work_request_summary.py b/src/oci/email/models/work_request_summary.py index 14831c4562..9d85e2764f 100644 --- a/src/oci/email/models/work_request_summary.py +++ b/src/oci/email/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/email/models/work_request_summary_collection.py b/src/oci/email/models/work_request_summary_collection.py index 215c9a541c..957c9fe881 100644 --- a/src/oci/email/models/work_request_summary_collection.py +++ b/src/oci/email/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/encryption/__init__.py b/src/oci/encryption/__init__.py index 4e487c933b..62ed42b01e 100644 --- a/src/oci/encryption/__init__.py +++ b/src/oci/encryption/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from oci.encryption.encryption import ( diff --git a/src/oci/encryption/algorithms.py b/src/oci/encryption/algorithms.py index 174569fce2..fd0894f5ce 100644 --- a/src/oci/encryption/algorithms.py +++ b/src/oci/encryption/algorithms.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from cryptography.hazmat.primitives.ciphers import algorithms, modes diff --git a/src/oci/encryption/encryption.py b/src/oci/encryption/encryption.py index 18dab09138..750a49e2ac 100644 --- a/src/oci/encryption/encryption.py +++ b/src/oci/encryption/encryption.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from oci.encryption.internal.streaming import StreamEncryptor, StreamDecryptor diff --git a/src/oci/encryption/internal/__init__.py b/src/oci/encryption/internal/__init__.py index ec8d7deed5..0d1455fc96 100644 --- a/src/oci/encryption/internal/__init__.py +++ b/src/oci/encryption/internal/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/encryption/internal/defaults.py b/src/oci/encryption/internal/defaults.py index 14aa90694c..23a09dc5f9 100644 --- a/src/oci/encryption/internal/defaults.py +++ b/src/oci/encryption/internal/defaults.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from oci.encryption.algorithms import Algorithm diff --git a/src/oci/encryption/internal/models.py b/src/oci/encryption/internal/models.py index 6a8e0742a5..7588032e19 100644 --- a/src/oci/encryption/internal/models.py +++ b/src/oci/encryption/internal/models.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. ENCRYPTED_CONTENT_FORMAT_FULL_MESSAGE = 0 diff --git a/src/oci/encryption/internal/serialization.py b/src/oci/encryption/internal/serialization.py index 44593823c8..19484643e2 100644 --- a/src/oci/encryption/internal/serialization.py +++ b/src/oci/encryption/internal/serialization.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import struct diff --git a/src/oci/encryption/internal/streaming.py b/src/oci/encryption/internal/streaming.py index 8501e08e52..d077612edb 100644 --- a/src/oci/encryption/internal/streaming.py +++ b/src/oci/encryption/internal/streaming.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import os diff --git a/src/oci/encryption/internal/utils.py b/src/oci/encryption/internal/utils.py index 52cd35a0ec..dd93d66c6d 100644 --- a/src/oci/encryption/internal/utils.py +++ b/src/oci/encryption/internal/utils.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from oci._vendor import six diff --git a/src/oci/encryption/key_providers.py b/src/oci/encryption/key_providers.py index bf0d6f9314..69f9c2434a 100644 --- a/src/oci/encryption/key_providers.py +++ b/src/oci/encryption/key_providers.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from oci._vendor import six diff --git a/src/oci/encryption/models.py b/src/oci/encryption/models.py index 5192c0603a..ef43418276 100644 --- a/src/oci/encryption/models.py +++ b/src/oci/encryption/models.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from oci._vendor import six diff --git a/src/oci/events/__init__.py b/src/oci/events/__init__.py index 037c97ec07..129eaf42bd 100644 --- a/src/oci/events/__init__.py +++ b/src/oci/events/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/events/events_client.py b/src/oci/events/events_client.py index 0c0d20a95e..fde2125061 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("events", config, signer, events_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -138,6 +144,10 @@ def change_rule_compartment(self, rule_id, change_rule_compartment_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -149,6 +159,7 @@ def change_rule_compartment(self, rule_id, change_rule_compartment_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -230,6 +241,10 @@ def create_rule(self, create_rule_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.events.models.Rule` :rtype: :class:`~oci.response.Response` @@ -241,6 +256,7 @@ def create_rule(self, create_rule_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -310,6 +326,10 @@ def delete_rule(self, rule_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -321,6 +341,7 @@ def delete_rule(self, rule_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -392,6 +413,10 @@ def get_rule(self, rule_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.events.models.Rule` :rtype: :class:`~oci.response.Response` @@ -403,6 +428,7 @@ def get_rule(self, rule_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -517,6 +543,10 @@ def list_rules(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.events.models.RuleSummary` :rtype: :class:`~oci.response.Response` @@ -528,6 +558,7 @@ def list_rules(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -635,6 +666,10 @@ def update_rule(self, rule_id, update_rule_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.events.models.Rule` :rtype: :class:`~oci.response.Response` @@ -646,6 +681,7 @@ def update_rule(self, rule_id, update_rule_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/events/events_client_composite_operations.py b/src/oci/events/events_client_composite_operations.py index 7dc95a16f3..4c2617b2bc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/events/models/__init__.py b/src/oci/events/models/__init__.py index 273fea22f1..2b5506a291 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/events/models/action.py b/src/oci/events/models/action.py index e21e306410..8b4029d906 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/events/models/action_details.py b/src/oci/events/models/action_details.py index 43224aeaa3..fd4d12e2bf 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/events/models/action_details_list.py b/src/oci/events/models/action_details_list.py index 1712f35ecc..9322272a02 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/events/models/action_list.py b/src/oci/events/models/action_list.py index b0406718b6..5a3ddc6a3a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/events/models/change_rule_compartment_details.py b/src/oci/events/models/change_rule_compartment_details.py index e8e665eb99..23c15a7262 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 3973bbc7db..c1f01b2a3c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .action_details import ActionDetails 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 947afad25c..20b779e378 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .action_details import ActionDetails diff --git a/src/oci/events/models/create_rule_details.py b/src/oci/events/models/create_rule_details.py index e8554cdb8a..c72bb8cf61 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 7533f1b261..e1f9de7219 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .action_details import ActionDetails diff --git a/src/oci/events/models/faa_s_action.py b/src/oci/events/models/faa_s_action.py index 023cb43844..6c9fdae070 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .action import Action diff --git a/src/oci/events/models/notification_service_action.py b/src/oci/events/models/notification_service_action.py index 47602c21c6..9efe7f5942 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .action import Action diff --git a/src/oci/events/models/rule.py b/src/oci/events/models/rule.py index ea7ba2b997..33c44515a0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/events/models/rule_summary.py b/src/oci/events/models/rule_summary.py index e8a273b199..6435e3aaaa 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/events/models/streaming_service_action.py b/src/oci/events/models/streaming_service_action.py index 281e8a394f..cd97748087 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .action import Action diff --git a/src/oci/events/models/update_rule_details.py b/src/oci/events/models/update_rule_details.py index 304ef1269b..728983a5d8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/exceptions.py b/src/oci/exceptions.py index d98f744450..b0bb1ebdd0 100644 --- a/src/oci/exceptions.py +++ b/src/oci/exceptions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from oci._vendor.requests.exceptions import RequestException as BaseRequestException diff --git a/src/oci/file_storage/__init__.py b/src/oci/file_storage/__init__.py index 8ff37b4066..843bfc8608 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 ae5aec7056..04e97f911e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("file_storage", config, signer, file_storage_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -132,6 +138,10 @@ def change_file_system_compartment(self, file_system_id, change_file_system_comp To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -143,6 +153,7 @@ def change_file_system_compartment(self, file_system_id, change_file_system_comp # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -228,6 +239,10 @@ def change_mount_target_compartment(self, mount_target_id, change_mount_target_c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -239,6 +254,7 @@ def change_mount_target_compartment(self, mount_target_id, change_mount_target_c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -318,6 +334,10 @@ def create_export(self, create_export_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.file_storage.models.Export` :rtype: :class:`~oci.response.Response` @@ -329,6 +349,7 @@ def create_export(self, create_export_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -431,6 +452,10 @@ def create_file_system(self, create_file_system_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.file_storage.models.FileSystem` :rtype: :class:`~oci.response.Response` @@ -442,6 +467,7 @@ def create_file_system(self, create_file_system_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -546,6 +572,10 @@ def create_mount_target(self, create_mount_target_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.file_storage.models.MountTarget` :rtype: :class:`~oci.response.Response` @@ -557,6 +587,7 @@ def create_mount_target(self, create_mount_target_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -627,6 +658,10 @@ def create_snapshot(self, create_snapshot_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.file_storage.models.Snapshot` :rtype: :class:`~oci.response.Response` @@ -638,6 +673,7 @@ def create_snapshot(self, create_snapshot_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -709,6 +745,10 @@ def delete_export(self, export_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -720,6 +760,7 @@ def delete_export(self, export_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -800,6 +841,10 @@ def delete_file_system(self, file_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -811,6 +856,7 @@ def delete_file_system(self, file_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -890,6 +936,10 @@ def delete_mount_target(self, mount_target_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -901,6 +951,7 @@ def delete_mount_target(self, mount_target_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -979,6 +1030,10 @@ def delete_snapshot(self, snapshot_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -990,6 +1045,7 @@ def delete_snapshot(self, snapshot_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1061,6 +1117,10 @@ def get_export(self, export_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.file_storage.models.Export` :rtype: :class:`~oci.response.Response` @@ -1072,6 +1132,7 @@ def get_export(self, export_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1143,6 +1204,10 @@ def get_export_set(self, export_set_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.file_storage.models.ExportSet` :rtype: :class:`~oci.response.Response` @@ -1154,6 +1219,7 @@ def get_export_set(self, export_set_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1225,6 +1291,10 @@ def get_file_system(self, file_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.file_storage.models.FileSystem` :rtype: :class:`~oci.response.Response` @@ -1236,6 +1306,7 @@ def get_file_system(self, file_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1307,6 +1378,10 @@ def get_mount_target(self, mount_target_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.file_storage.models.MountTarget` :rtype: :class:`~oci.response.Response` @@ -1318,6 +1393,7 @@ def get_mount_target(self, mount_target_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1389,6 +1465,10 @@ def get_snapshot(self, snapshot_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.file_storage.models.Snapshot` :rtype: :class:`~oci.response.Response` @@ -1400,6 +1480,7 @@ def get_snapshot(self, snapshot_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1529,6 +1610,10 @@ def list_export_sets(self, compartment_id, availability_domain, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.file_storage.models.ExportSetSummary` :rtype: :class:`~oci.response.Response` @@ -1540,6 +1625,7 @@ def list_export_sets(self, compartment_id, availability_domain, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -1702,6 +1788,10 @@ def list_exports(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.file_storage.models.ExportSummary` :rtype: :class:`~oci.response.Response` @@ -1713,6 +1803,7 @@ def list_exports(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "limit", @@ -1887,6 +1978,10 @@ def list_file_systems(self, compartment_id, availability_domain, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.file_storage.models.FileSystemSummary` :rtype: :class:`~oci.response.Response` @@ -1898,6 +1993,7 @@ def list_file_systems(self, compartment_id, availability_domain, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -2067,6 +2163,10 @@ def list_mount_targets(self, compartment_id, availability_domain, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.file_storage.models.MountTargetSummary` :rtype: :class:`~oci.response.Response` @@ -2078,6 +2178,7 @@ def list_mount_targets(self, compartment_id, availability_domain, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -2222,6 +2323,10 @@ def list_snapshots(self, file_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.file_storage.models.SnapshotSummary` :rtype: :class:`~oci.response.Response` @@ -2233,6 +2338,7 @@ def list_snapshots(self, file_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -2333,6 +2439,10 @@ def update_export(self, export_id, update_export_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.file_storage.models.Export` :rtype: :class:`~oci.response.Response` @@ -2344,6 +2454,7 @@ def update_export(self, export_id, update_export_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2429,6 +2540,10 @@ def update_export_set(self, export_set_id, update_export_set_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.file_storage.models.ExportSet` :rtype: :class:`~oci.response.Response` @@ -2440,6 +2555,7 @@ def update_export_set(self, export_set_id, update_export_set_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2526,6 +2642,10 @@ def update_file_system(self, file_system_id, update_file_system_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.file_storage.models.FileSystem` :rtype: :class:`~oci.response.Response` @@ -2537,6 +2657,7 @@ def update_file_system(self, file_system_id, update_file_system_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2622,6 +2743,10 @@ def update_mount_target(self, mount_target_id, update_mount_target_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.file_storage.models.MountTarget` :rtype: :class:`~oci.response.Response` @@ -2633,6 +2758,7 @@ def update_mount_target(self, mount_target_id, update_mount_target_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2718,6 +2844,10 @@ def update_snapshot(self, snapshot_id, update_snapshot_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.file_storage.models.Snapshot` :rtype: :class:`~oci.response.Response` @@ -2729,6 +2859,7 @@ def update_snapshot(self, snapshot_id, update_snapshot_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" 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 62b5b43803..dbe3d4a326 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/file_storage/models/__init__.py b/src/oci/file_storage/models/__init__.py index 572237428d..f0c85870f4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 4c027a1e30..338d2a6ba8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 db56512446..6fae596961 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/file_storage/models/client_options.py b/src/oci/file_storage/models/client_options.py index de1926a867..91d08a0094 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/file_storage/models/create_export_details.py b/src/oci/file_storage/models/create_export_details.py index 5bf602bd78..1f662743b9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 8ca6d02b86..51cc72b084 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 d9f32d7231..f4bbe29698 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/file_storage/models/create_snapshot_details.py b/src/oci/file_storage/models/create_snapshot_details.py index f7a660c601..451d7adb72 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/file_storage/models/export.py b/src/oci/file_storage/models/export.py index c423a14fc5..86828a2e42 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/file_storage/models/export_set.py b/src/oci/file_storage/models/export_set.py index 1499b42b9c..3a785d9669 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/file_storage/models/export_set_summary.py b/src/oci/file_storage/models/export_set_summary.py index 1a8d52ce48..d304f479cc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/file_storage/models/export_summary.py b/src/oci/file_storage/models/export_summary.py index 8b99c6903f..94db625ccc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/file_storage/models/file_system.py b/src/oci/file_storage/models/file_system.py index 7894b61dd2..6dabbf9336 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/file_storage/models/file_system_summary.py b/src/oci/file_storage/models/file_system_summary.py index 1d9c6e2189..aea0199c21 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/file_storage/models/mount_target.py b/src/oci/file_storage/models/mount_target.py index bf5df071e8..5fdca560d6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/file_storage/models/mount_target_summary.py b/src/oci/file_storage/models/mount_target_summary.py index eac7e6f59e..9d86e6ba7b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/file_storage/models/snapshot.py b/src/oci/file_storage/models/snapshot.py index 9c6929cafc..1b43aced32 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/file_storage/models/snapshot_summary.py b/src/oci/file_storage/models/snapshot_summary.py index 2dac9e1ba3..f038e1f992 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/file_storage/models/source_details.py b/src/oci/file_storage/models/source_details.py index 1d3f926a54..ddeaa4d264 100644 --- a/src/oci/file_storage/models/source_details.py +++ b/src/oci/file_storage/models/source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/file_storage/models/update_export_details.py b/src/oci/file_storage/models/update_export_details.py index 57158373fd..e687ca9e85 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 4874406fcf..51ea79a15d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 f78e73b639..3f72f7822f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 bf1963fd5a..f7d619a9ab 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/file_storage/models/update_snapshot_details.py b/src/oci/file_storage/models/update_snapshot_details.py index 758a82842e..8aed05b242 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/fips.py b/src/oci/fips.py index cd5e190e27..dae5b57c7d 100644 --- a/src/oci/fips.py +++ b/src/oci/fips.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/functions/__init__.py b/src/oci/functions/__init__.py index e9191923be..8fc7158267 100644 --- a/src/oci/functions/__init__.py +++ b/src/oci/functions/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/functions/functions_invoke_client.py b/src/oci/functions/functions_invoke_client.py index e63b6fe80f..31a7b23a6b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("functions_invoke", config, signer, functions_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -135,6 +141,10 @@ def invoke_function(self, function_id, **kwargs): The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings :param int buffer_limit: (optional) A buffer limit for the stream to be buffered. buffer_limit is used to set the buffer size capacity. Streams will be read until the size of the buffer reaches the buffer_limit. If the stream size is greater than the buffer_limit, a BufferError exception will be thrown. @@ -154,6 +164,7 @@ def invoke_function(self, function_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "buffer_limit", "invoke_function_body", diff --git a/src/oci/functions/functions_invoke_client_composite_operations.py b/src/oci/functions/functions_invoke_client_composite_operations.py index 0acbf5606b..d89b97a84b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/functions/functions_management_client.py b/src/oci/functions/functions_management_client.py index 8bf80a3272..e524de51a9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("functions_management", config, signer, functions_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -131,6 +137,10 @@ def change_application_compartment(self, application_id, change_application_comp To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -142,6 +152,7 @@ def change_application_compartment(self, application_id, change_application_comp # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -215,6 +226,10 @@ def create_application(self, create_application_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.functions.models.Application` :rtype: :class:`~oci.response.Response` @@ -226,6 +241,7 @@ def create_application(self, create_application_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -287,6 +303,10 @@ def create_function(self, create_function_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.functions.models.Function` :rtype: :class:`~oci.response.Response` @@ -298,6 +318,7 @@ def create_function(self, create_function_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -366,6 +387,10 @@ def delete_application(self, application_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -377,6 +402,7 @@ def delete_application(self, application_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -455,6 +481,10 @@ def delete_function(self, function_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -466,6 +496,7 @@ def delete_function(self, function_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -539,6 +570,10 @@ def get_application(self, application_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.functions.models.Application` :rtype: :class:`~oci.response.Response` @@ -550,6 +585,7 @@ def get_application(self, application_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -623,6 +659,10 @@ def get_function(self, function_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.functions.models.Function` :rtype: :class:`~oci.response.Response` @@ -634,6 +674,7 @@ def get_function(self, function_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -746,6 +787,10 @@ def list_applications(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.functions.models.ApplicationSummary` :rtype: :class:`~oci.response.Response` @@ -757,6 +802,7 @@ def list_applications(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -899,6 +945,10 @@ def list_functions(self, application_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.functions.models.FunctionSummary` :rtype: :class:`~oci.response.Response` @@ -910,6 +960,7 @@ def list_functions(self, application_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -1021,6 +1072,10 @@ def update_application(self, application_id, update_application_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.functions.models.Application` :rtype: :class:`~oci.response.Response` @@ -1032,6 +1087,7 @@ def update_application(self, application_id, update_application_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1117,6 +1173,10 @@ def update_function(self, function_id, update_function_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.functions.models.Function` :rtype: :class:`~oci.response.Response` @@ -1128,6 +1188,7 @@ def update_function(self, function_id, update_function_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/functions/functions_management_client_composite_operations.py b/src/oci/functions/functions_management_client_composite_operations.py index 451114fb6b..ba5b1eb665 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/functions/models/__init__.py b/src/oci/functions/models/__init__.py index cf04e726af..75298867c2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/functions/models/application.py b/src/oci/functions/models/application.py index b894c1b7cb..110b3ea7e4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/functions/models/application_summary.py b/src/oci/functions/models/application_summary.py index 0d29eff549..8f09f58b1f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/functions/models/application_trace_config.py b/src/oci/functions/models/application_trace_config.py index e240b4d79e..f1cfeb5f72 100644 --- a/src/oci/functions/models/application_trace_config.py +++ b/src/oci/functions/models/application_trace_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/functions/models/change_application_compartment_details.py b/src/oci/functions/models/change_application_compartment_details.py index 06134aa3df..9830f44c39 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/functions/models/create_application_details.py b/src/oci/functions/models/create_application_details.py index e8db450485..6bbd491069 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/functions/models/create_function_details.py b/src/oci/functions/models/create_function_details.py index 1832231823..0fe44db2be 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/functions/models/function.py b/src/oci/functions/models/function.py index daf13bde27..d8472336d4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/functions/models/function_summary.py b/src/oci/functions/models/function_summary.py index 15d86542dd..73b150884a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/functions/models/function_trace_config.py b/src/oci/functions/models/function_trace_config.py index 70a7f2913c..8d59243e4d 100644 --- a/src/oci/functions/models/function_trace_config.py +++ b/src/oci/functions/models/function_trace_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/functions/models/image_policy_config.py b/src/oci/functions/models/image_policy_config.py index 4717ee8ef3..5326b41dc6 100644 --- a/src/oci/functions/models/image_policy_config.py +++ b/src/oci/functions/models/image_policy_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/functions/models/key_details.py b/src/oci/functions/models/key_details.py index 0c610a3088..c350631168 100644 --- a/src/oci/functions/models/key_details.py +++ b/src/oci/functions/models/key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/functions/models/update_application_details.py b/src/oci/functions/models/update_application_details.py index 4a536d6e85..7eec0e2651 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/functions/models/update_function_details.py b/src/oci/functions/models/update_function_details.py index fd22acab80..777a26b13d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/generic_artifacts_content/__init__.py b/src/oci/generic_artifacts_content/__init__.py index 13836cdef6..3c9191d32f 100644 --- a/src/oci/generic_artifacts_content/__init__.py +++ b/src/oci/generic_artifacts_content/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/generic_artifacts_content/generic_artifacts_content_client.py b/src/oci/generic_artifacts_content/generic_artifacts_content_client.py index 07d86ef202..a658e8d70a 100644 --- a/src/oci/generic_artifacts_content/generic_artifacts_content_client.py +++ b/src/oci/generic_artifacts_content/generic_artifacts_content_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -66,6 +66,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -96,6 +100,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("generic_artifacts_content", config, signer, generic_artifacts_content_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -128,6 +134,10 @@ def get_generic_artifact_content(self, artifact_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -139,6 +149,7 @@ def get_generic_artifact_content(self, artifact_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -226,6 +237,10 @@ def get_generic_artifact_content_by_path(self, repository_id, artifact_path, ver To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -237,6 +252,7 @@ def get_generic_artifact_content_by_path(self, repository_id, artifact_path, ver # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -331,6 +347,10 @@ def put_generic_artifact_content_by_path(self, repository_id, artifact_path, ver The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings :param int buffer_limit: (optional) A buffer limit for the stream to be buffered. buffer_limit is used to set the buffer size capacity. Streams will be read until the size of the buffer reaches the buffer_limit. If the stream size is greater than the buffer_limit, a BufferError exception will be thrown. @@ -350,6 +370,7 @@ def put_generic_artifact_content_by_path(self, repository_id, artifact_path, ver # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "buffer_limit", "if_match", @@ -417,6 +438,7 @@ def put_generic_artifact_content_by_path(self, repository_id, artifact_path, ver header_params=header_params, body=generic_artifact_content_body, response_type="GenericArtifact", + allow_control_chars=kwargs.get('allow_control_chars'), enforce_content_headers=False) else: return self.base_client.call_api( @@ -426,4 +448,5 @@ def put_generic_artifact_content_by_path(self, repository_id, artifact_path, ver header_params=header_params, body=generic_artifact_content_body, response_type="GenericArtifact", + allow_control_chars=kwargs.get('allow_control_chars'), enforce_content_headers=False) diff --git a/src/oci/generic_artifacts_content/generic_artifacts_content_client_composite_operations.py b/src/oci/generic_artifacts_content/generic_artifacts_content_client_composite_operations.py index de212d0207..e47fedbe56 100644 --- a/src/oci/generic_artifacts_content/generic_artifacts_content_client_composite_operations.py +++ b/src/oci/generic_artifacts_content/generic_artifacts_content_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/generic_artifacts_content/models/__init__.py b/src/oci/generic_artifacts_content/models/__init__.py index 36a14c9013..046268474b 100644 --- a/src/oci/generic_artifacts_content/models/__init__.py +++ b/src/oci/generic_artifacts_content/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/generic_artifacts_content/models/generic_artifact.py b/src/oci/generic_artifacts_content/models/generic_artifact.py index 9915fefa5b..2e75c29e82 100644 --- a/src/oci/generic_artifacts_content/models/generic_artifact.py +++ b/src/oci/generic_artifacts_content/models/generic_artifact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/__init__.py b/src/oci/golden_gate/__init__.py index 921b49d1b3..34fcc0c089 100644 --- a/src/oci/golden_gate/__init__.py +++ b/src/oci/golden_gate/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/golden_gate/golden_gate_client.py b/src/oci/golden_gate/golden_gate_client.py index 877d398411..1c8da529df 100644 --- a/src/oci/golden_gate/golden_gate_client.py +++ b/src/oci/golden_gate/golden_gate_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("golden_gate", config, signer, golden_gate_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -126,6 +132,10 @@ def cancel_deployment_backup(self, deployment_backup_id, cancel_deployment_backu To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -137,6 +147,7 @@ def cancel_deployment_backup(self, deployment_backup_id, cancel_deployment_backu # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -221,6 +232,10 @@ def change_database_registration_compartment(self, database_registration_id, cha To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -232,6 +247,7 @@ def change_database_registration_compartment(self, database_registration_id, cha # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -316,6 +332,10 @@ def change_deployment_backup_compartment(self, deployment_backup_id, change_depl To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -327,6 +347,7 @@ def change_deployment_backup_compartment(self, deployment_backup_id, change_depl # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -411,6 +432,10 @@ def change_deployment_compartment(self, deployment_id, change_deployment_compart To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -422,6 +447,7 @@ def change_deployment_compartment(self, deployment_id, change_deployment_compart # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -498,6 +524,10 @@ def create_database_registration(self, create_database_registration_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.golden_gate.models.DatabaseRegistration` :rtype: :class:`~oci.response.Response` @@ -509,6 +539,7 @@ def create_database_registration(self, create_database_registration_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -573,6 +604,10 @@ def create_deployment(self, create_deployment_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.golden_gate.models.Deployment` :rtype: :class:`~oci.response.Response` @@ -584,6 +619,7 @@ def create_deployment(self, create_deployment_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -648,6 +684,10 @@ def create_deployment_backup(self, create_deployment_backup_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -659,6 +699,7 @@ def create_deployment_backup(self, create_deployment_backup_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -721,6 +762,10 @@ def delete_database_registration(self, database_registration_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -732,6 +777,7 @@ def delete_database_registration(self, database_registration_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -803,6 +849,10 @@ def delete_deployment(self, deployment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -814,6 +864,7 @@ def delete_deployment(self, deployment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -885,6 +936,10 @@ def delete_deployment_backup(self, deployment_backup_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -896,6 +951,7 @@ def delete_deployment_backup(self, deployment_backup_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -964,6 +1020,10 @@ def get_database_registration(self, database_registration_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.golden_gate.models.DatabaseRegistration` :rtype: :class:`~oci.response.Response` @@ -975,6 +1035,7 @@ def get_database_registration(self, database_registration_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1043,6 +1104,10 @@ def get_deployment(self, deployment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.golden_gate.models.Deployment` :rtype: :class:`~oci.response.Response` @@ -1054,6 +1119,7 @@ def get_deployment(self, deployment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1122,6 +1188,10 @@ def get_deployment_backup(self, deployment_backup_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.golden_gate.models.DeploymentBackup` :rtype: :class:`~oci.response.Response` @@ -1133,6 +1203,7 @@ def get_deployment_backup(self, deployment_backup_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1201,6 +1272,10 @@ def get_deployment_upgrade(self, deployment_upgrade_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.golden_gate.models.DeploymentUpgrade` :rtype: :class:`~oci.response.Response` @@ -1212,6 +1287,7 @@ def get_deployment_upgrade(self, deployment_upgrade_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1280,6 +1356,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.golden_gate.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -1291,6 +1371,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1383,6 +1464,10 @@ def list_database_registrations(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.golden_gate.models.DatabaseRegistrationCollection` :rtype: :class:`~oci.response.Response` @@ -1394,6 +1479,7 @@ def list_database_registrations(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "display_name", @@ -1517,6 +1603,10 @@ def list_deployment_backups(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.golden_gate.models.DeploymentBackupCollection` :rtype: :class:`~oci.response.Response` @@ -1528,6 +1618,7 @@ def list_deployment_backups(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "deployment_id", "lifecycle_state", @@ -1653,6 +1744,10 @@ def list_deployment_upgrades(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.golden_gate.models.DeploymentUpgradeCollection` :rtype: :class:`~oci.response.Response` @@ -1664,6 +1759,7 @@ def list_deployment_upgrades(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "deployment_id", "lifecycle_state", @@ -1794,6 +1890,10 @@ def list_deployments(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.golden_gate.models.DeploymentCollection` :rtype: :class:`~oci.response.Response` @@ -1805,6 +1905,7 @@ def list_deployments(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "lifecycle_sub_state", @@ -1918,6 +2019,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.golden_gate.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -1929,6 +2034,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -2013,6 +2119,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.golden_gate.models.WorkRequestLogEntry` :rtype: :class:`~oci.response.Response` @@ -2024,6 +2134,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -2111,6 +2222,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.golden_gate.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -2122,6 +2237,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "resource_id", "opc_request_id", @@ -2200,6 +2316,10 @@ def restore_deployment(self, deployment_backup_id, restore_deployment_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2211,6 +2331,7 @@ def restore_deployment(self, deployment_backup_id, restore_deployment_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2293,6 +2414,10 @@ def start_deployment(self, deployment_id, start_deployment_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2304,6 +2429,7 @@ def start_deployment(self, deployment_id, start_deployment_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2386,6 +2512,10 @@ def stop_deployment(self, deployment_id, stop_deployment_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2397,6 +2527,7 @@ def stop_deployment(self, deployment_id, stop_deployment_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2476,6 +2607,10 @@ def update_database_registration(self, database_registration_id, update_database To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2487,6 +2622,7 @@ def update_database_registration(self, database_registration_id, update_database # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2563,6 +2699,10 @@ def update_deployment(self, deployment_id, update_deployment_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2574,6 +2714,7 @@ def update_deployment(self, deployment_id, update_deployment_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2650,6 +2791,10 @@ def update_deployment_backup(self, deployment_backup_id, update_deployment_backu To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.golden_gate.models.DeploymentBackup` :rtype: :class:`~oci.response.Response` @@ -2661,6 +2806,7 @@ def update_deployment_backup(self, deployment_backup_id, update_deployment_backu # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2742,6 +2888,10 @@ def upgrade_deployment(self, deployment_id, upgrade_deployment_details, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2753,6 +2903,7 @@ def upgrade_deployment(self, deployment_id, upgrade_deployment_details, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", diff --git a/src/oci/golden_gate/golden_gate_client_composite_operations.py b/src/oci/golden_gate/golden_gate_client_composite_operations.py index 74642a11cb..86936790c0 100644 --- a/src/oci/golden_gate/golden_gate_client_composite_operations.py +++ b/src/oci/golden_gate/golden_gate_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/golden_gate/models/__init__.py b/src/oci/golden_gate/models/__init__.py index b8f95940aa..954212083a 100644 --- a/src/oci/golden_gate/models/__init__.py +++ b/src/oci/golden_gate/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/golden_gate/models/cancel_deployment_backup_details.py b/src/oci/golden_gate/models/cancel_deployment_backup_details.py index 7404267471..6f0a4baf27 100644 --- a/src/oci/golden_gate/models/cancel_deployment_backup_details.py +++ b/src/oci/golden_gate/models/cancel_deployment_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/change_database_registration_compartment_details.py b/src/oci/golden_gate/models/change_database_registration_compartment_details.py index 675a0000be..eb0baa5bcf 100644 --- a/src/oci/golden_gate/models/change_database_registration_compartment_details.py +++ b/src/oci/golden_gate/models/change_database_registration_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/change_deployment_backup_compartment_details.py b/src/oci/golden_gate/models/change_deployment_backup_compartment_details.py index 589a9b09e8..5c9e994aa8 100644 --- a/src/oci/golden_gate/models/change_deployment_backup_compartment_details.py +++ b/src/oci/golden_gate/models/change_deployment_backup_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/change_deployment_compartment_details.py b/src/oci/golden_gate/models/change_deployment_compartment_details.py index aba73b4b54..7c31ea8154 100644 --- a/src/oci/golden_gate/models/change_deployment_compartment_details.py +++ b/src/oci/golden_gate/models/change_deployment_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/create_database_registration_details.py b/src/oci/golden_gate/models/create_database_registration_details.py index a0cce36275..738e143089 100644 --- a/src/oci/golden_gate/models/create_database_registration_details.py +++ b/src/oci/golden_gate/models/create_database_registration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/create_deployment_backup_details.py b/src/oci/golden_gate/models/create_deployment_backup_details.py index 7c3e2ab2c0..7de80ef819 100644 --- a/src/oci/golden_gate/models/create_deployment_backup_details.py +++ b/src/oci/golden_gate/models/create_deployment_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/create_deployment_details.py b/src/oci/golden_gate/models/create_deployment_details.py index c9bf71a436..49634f3bac 100644 --- a/src/oci/golden_gate/models/create_deployment_details.py +++ b/src/oci/golden_gate/models/create_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/create_ogg_deployment_details.py b/src/oci/golden_gate/models/create_ogg_deployment_details.py index 3a6633bfb1..ef2595c2dd 100644 --- a/src/oci/golden_gate/models/create_ogg_deployment_details.py +++ b/src/oci/golden_gate/models/create_ogg_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/database_registration.py b/src/oci/golden_gate/models/database_registration.py index 70afc49799..f3b1bd5ad3 100644 --- a/src/oci/golden_gate/models/database_registration.py +++ b/src/oci/golden_gate/models/database_registration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/database_registration_collection.py b/src/oci/golden_gate/models/database_registration_collection.py index 5d6ac9644b..6277ec77db 100644 --- a/src/oci/golden_gate/models/database_registration_collection.py +++ b/src/oci/golden_gate/models/database_registration_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/database_registration_summary.py b/src/oci/golden_gate/models/database_registration_summary.py index 88334fdebb..7593177622 100644 --- a/src/oci/golden_gate/models/database_registration_summary.py +++ b/src/oci/golden_gate/models/database_registration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/default_cancel_deployment_backup_details.py b/src/oci/golden_gate/models/default_cancel_deployment_backup_details.py index ceb5f9ceb8..d08861255e 100644 --- a/src/oci/golden_gate/models/default_cancel_deployment_backup_details.py +++ b/src/oci/golden_gate/models/default_cancel_deployment_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .cancel_deployment_backup_details import CancelDeploymentBackupDetails diff --git a/src/oci/golden_gate/models/default_restore_deployment_details.py b/src/oci/golden_gate/models/default_restore_deployment_details.py index 68ec6f7744..1ca09ae8ec 100644 --- a/src/oci/golden_gate/models/default_restore_deployment_details.py +++ b/src/oci/golden_gate/models/default_restore_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .restore_deployment_details import RestoreDeploymentDetails diff --git a/src/oci/golden_gate/models/default_start_deployment_details.py b/src/oci/golden_gate/models/default_start_deployment_details.py index 270b46e6cf..7c86a99e7a 100644 --- a/src/oci/golden_gate/models/default_start_deployment_details.py +++ b/src/oci/golden_gate/models/default_start_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .start_deployment_details import StartDeploymentDetails diff --git a/src/oci/golden_gate/models/default_stop_deployment_details.py b/src/oci/golden_gate/models/default_stop_deployment_details.py index 57c344475e..a15def6b31 100644 --- a/src/oci/golden_gate/models/default_stop_deployment_details.py +++ b/src/oci/golden_gate/models/default_stop_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .stop_deployment_details import StopDeploymentDetails diff --git a/src/oci/golden_gate/models/deployment.py b/src/oci/golden_gate/models/deployment.py index acf424549a..cf6ef35310 100644 --- a/src/oci/golden_gate/models/deployment.py +++ b/src/oci/golden_gate/models/deployment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/deployment_backup.py b/src/oci/golden_gate/models/deployment_backup.py index c35e9488c8..c4e19c6ddf 100644 --- a/src/oci/golden_gate/models/deployment_backup.py +++ b/src/oci/golden_gate/models/deployment_backup.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/deployment_backup_collection.py b/src/oci/golden_gate/models/deployment_backup_collection.py index 5667c1b0c0..046d58a20a 100644 --- a/src/oci/golden_gate/models/deployment_backup_collection.py +++ b/src/oci/golden_gate/models/deployment_backup_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/deployment_backup_summary.py b/src/oci/golden_gate/models/deployment_backup_summary.py index 34aad0e1e5..c34959b4c9 100644 --- a/src/oci/golden_gate/models/deployment_backup_summary.py +++ b/src/oci/golden_gate/models/deployment_backup_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/deployment_collection.py b/src/oci/golden_gate/models/deployment_collection.py index d7d217a75e..9868bbb7f3 100644 --- a/src/oci/golden_gate/models/deployment_collection.py +++ b/src/oci/golden_gate/models/deployment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/deployment_summary.py b/src/oci/golden_gate/models/deployment_summary.py index 04c271791d..9973ac4803 100644 --- a/src/oci/golden_gate/models/deployment_summary.py +++ b/src/oci/golden_gate/models/deployment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/deployment_upgrade.py b/src/oci/golden_gate/models/deployment_upgrade.py index bb6cb687ee..45640ec0c9 100644 --- a/src/oci/golden_gate/models/deployment_upgrade.py +++ b/src/oci/golden_gate/models/deployment_upgrade.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/deployment_upgrade_collection.py b/src/oci/golden_gate/models/deployment_upgrade_collection.py index 484e020bc6..683723a495 100644 --- a/src/oci/golden_gate/models/deployment_upgrade_collection.py +++ b/src/oci/golden_gate/models/deployment_upgrade_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/deployment_upgrade_summary.py b/src/oci/golden_gate/models/deployment_upgrade_summary.py index 06f011f48b..71035ca58b 100644 --- a/src/oci/golden_gate/models/deployment_upgrade_summary.py +++ b/src/oci/golden_gate/models/deployment_upgrade_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/ogg_deployment.py b/src/oci/golden_gate/models/ogg_deployment.py index bd286cb826..7e7011d88f 100644 --- a/src/oci/golden_gate/models/ogg_deployment.py +++ b/src/oci/golden_gate/models/ogg_deployment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/restore_deployment_details.py b/src/oci/golden_gate/models/restore_deployment_details.py index 574e78e001..3b4d640a5d 100644 --- a/src/oci/golden_gate/models/restore_deployment_details.py +++ b/src/oci/golden_gate/models/restore_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/start_deployment_details.py b/src/oci/golden_gate/models/start_deployment_details.py index 238b2b6f33..7c2004e0f7 100644 --- a/src/oci/golden_gate/models/start_deployment_details.py +++ b/src/oci/golden_gate/models/start_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/stop_deployment_details.py b/src/oci/golden_gate/models/stop_deployment_details.py index bc6f99ab8e..d3a76045f3 100644 --- a/src/oci/golden_gate/models/stop_deployment_details.py +++ b/src/oci/golden_gate/models/stop_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/update_database_registration_details.py b/src/oci/golden_gate/models/update_database_registration_details.py index 9a3d355355..7a6b31fd3e 100644 --- a/src/oci/golden_gate/models/update_database_registration_details.py +++ b/src/oci/golden_gate/models/update_database_registration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/update_deployment_backup_details.py b/src/oci/golden_gate/models/update_deployment_backup_details.py index ca342f7741..5df14b4d0a 100644 --- a/src/oci/golden_gate/models/update_deployment_backup_details.py +++ b/src/oci/golden_gate/models/update_deployment_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/update_deployment_details.py b/src/oci/golden_gate/models/update_deployment_details.py index fe4afdcf3d..1978a0c861 100644 --- a/src/oci/golden_gate/models/update_deployment_details.py +++ b/src/oci/golden_gate/models/update_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/update_ogg_deployment_details.py b/src/oci/golden_gate/models/update_ogg_deployment_details.py index 08a4cd48e7..239c32df77 100644 --- a/src/oci/golden_gate/models/update_ogg_deployment_details.py +++ b/src/oci/golden_gate/models/update_ogg_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/upgrade_deployment_current_release_details.py b/src/oci/golden_gate/models/upgrade_deployment_current_release_details.py index 0dcf80aca1..14cc7189f5 100644 --- a/src/oci/golden_gate/models/upgrade_deployment_current_release_details.py +++ b/src/oci/golden_gate/models/upgrade_deployment_current_release_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .upgrade_deployment_details import UpgradeDeploymentDetails diff --git a/src/oci/golden_gate/models/upgrade_deployment_details.py b/src/oci/golden_gate/models/upgrade_deployment_details.py index 94a1bb6f20..dd739dbbb1 100644 --- a/src/oci/golden_gate/models/upgrade_deployment_details.py +++ b/src/oci/golden_gate/models/upgrade_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/work_request.py b/src/oci/golden_gate/models/work_request.py index cfe75118dd..b13d8e26ac 100644 --- a/src/oci/golden_gate/models/work_request.py +++ b/src/oci/golden_gate/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/work_request_error.py b/src/oci/golden_gate/models/work_request_error.py index 3eda2c7671..7af92eabf3 100644 --- a/src/oci/golden_gate/models/work_request_error.py +++ b/src/oci/golden_gate/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/work_request_log_entry.py b/src/oci/golden_gate/models/work_request_log_entry.py index 8da8264e5a..4f8039bf99 100644 --- a/src/oci/golden_gate/models/work_request_log_entry.py +++ b/src/oci/golden_gate/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/golden_gate/models/work_request_resource.py b/src/oci/golden_gate/models/work_request_resource.py index 5c4759b2c2..f576d27b0a 100644 --- a/src/oci/golden_gate/models/work_request_resource.py +++ b/src/oci/golden_gate/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/healthchecks/__init__.py b/src/oci/healthchecks/__init__.py index 8579c62c57..92d9285a2d 100644 --- a/src/oci/healthchecks/__init__.py +++ b/src/oci/healthchecks/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/healthchecks/health_checks_client.py b/src/oci/healthchecks/health_checks_client.py index ae8a40b77d..c965f47ce9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -66,6 +66,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -96,6 +100,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("health_checks", config, signer, healthchecks_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -138,6 +144,10 @@ def change_http_monitor_compartment(self, monitor_id, change_http_monitor_compar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -149,6 +159,7 @@ def change_http_monitor_compartment(self, monitor_id, change_http_monitor_compar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -241,6 +252,10 @@ def change_ping_monitor_compartment(self, monitor_id, change_ping_monitor_compar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -252,6 +267,7 @@ def change_ping_monitor_compartment(self, monitor_id, change_ping_monitor_compar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -336,6 +352,10 @@ def create_http_monitor(self, create_http_monitor_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.healthchecks.models.HttpMonitor` :rtype: :class:`~oci.response.Response` @@ -347,6 +367,7 @@ def create_http_monitor(self, create_http_monitor_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -412,6 +433,10 @@ def create_on_demand_http_probe(self, create_on_demand_http_probe_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.healthchecks.models.HttpProbe` :rtype: :class:`~oci.response.Response` @@ -423,6 +448,7 @@ def create_on_demand_http_probe(self, create_on_demand_http_probe_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -485,6 +511,10 @@ def create_on_demand_ping_probe(self, create_on_demand_ping_probe_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.healthchecks.models.PingProbe` :rtype: :class:`~oci.response.Response` @@ -496,6 +526,7 @@ def create_on_demand_ping_probe(self, create_on_demand_ping_probe_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -565,6 +596,10 @@ def create_ping_monitor(self, create_ping_monitor_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.healthchecks.models.PingMonitor` :rtype: :class:`~oci.response.Response` @@ -576,6 +611,7 @@ def create_ping_monitor(self, create_ping_monitor_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -645,6 +681,10 @@ def delete_http_monitor(self, monitor_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -656,6 +696,7 @@ def delete_http_monitor(self, monitor_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -732,6 +773,10 @@ def delete_ping_monitor(self, monitor_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -743,6 +788,7 @@ def delete_ping_monitor(self, monitor_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -818,6 +864,10 @@ def get_http_monitor(self, monitor_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.healthchecks.models.HttpMonitor` :rtype: :class:`~oci.response.Response` @@ -829,6 +879,7 @@ def get_http_monitor(self, monitor_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_none_match" @@ -906,6 +957,10 @@ def get_ping_monitor(self, monitor_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.healthchecks.models.PingMonitor` :rtype: :class:`~oci.response.Response` @@ -917,6 +972,7 @@ def get_ping_monitor(self, monitor_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_none_match" @@ -1008,6 +1064,10 @@ def list_health_checks_vantage_points(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.healthchecks.models.HealthChecksVantagePointSummary` :rtype: :class:`~oci.response.Response` @@ -1019,6 +1079,7 @@ def list_health_checks_vantage_points(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -1131,6 +1192,10 @@ def list_http_monitors(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.healthchecks.models.HttpMonitorSummary` :rtype: :class:`~oci.response.Response` @@ -1142,6 +1207,7 @@ def list_http_monitors(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -1255,6 +1321,10 @@ def list_http_probe_results(self, probe_configuration_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.healthchecks.models.HttpProbeResultSummary` :rtype: :class:`~oci.response.Response` @@ -1266,6 +1336,7 @@ def list_http_probe_results(self, probe_configuration_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -1386,6 +1457,10 @@ def list_ping_monitors(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.healthchecks.models.PingMonitorSummary` :rtype: :class:`~oci.response.Response` @@ -1397,6 +1472,7 @@ def list_ping_monitors(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -1514,6 +1590,10 @@ def list_ping_probe_results(self, probe_configuration_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.healthchecks.models.PingProbeResultSummary` :rtype: :class:`~oci.response.Response` @@ -1525,6 +1605,7 @@ def list_ping_probe_results(self, probe_configuration_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -1630,6 +1711,10 @@ def update_http_monitor(self, monitor_id, update_http_monitor_details, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.healthchecks.models.HttpMonitor` :rtype: :class:`~oci.response.Response` @@ -1641,6 +1726,7 @@ def update_http_monitor(self, monitor_id, update_http_monitor_details, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1725,6 +1811,10 @@ def update_ping_monitor(self, monitor_id, update_ping_monitor_details, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.healthchecks.models.PingMonitor` :rtype: :class:`~oci.response.Response` @@ -1736,6 +1826,7 @@ def update_ping_monitor(self, monitor_id, update_ping_monitor_details, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" diff --git a/src/oci/healthchecks/health_checks_client_composite_operations.py b/src/oci/healthchecks/health_checks_client_composite_operations.py index 62422cfed6..5a3f0ca497 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/healthchecks/models/__init__.py b/src/oci/healthchecks/models/__init__.py index 8aa59e3c13..c66df021d5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 81a0f3fc7a..1b74551e35 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 5a9221c624..17247b668d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/healthchecks/models/connection.py b/src/oci/healthchecks/models/connection.py index 7dae7c4c0e..dbc2d5c706 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/healthchecks/models/create_http_monitor_details.py b/src/oci/healthchecks/models/create_http_monitor_details.py index c1dc123536..4d76050d0e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 ad54692205..921a3830c8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 dd3c862af4..ae285a7ccf 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/healthchecks/models/create_ping_monitor_details.py b/src/oci/healthchecks/models/create_ping_monitor_details.py index 3a0e11d7fe..1429ef204e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/healthchecks/models/dns.py b/src/oci/healthchecks/models/dns.py index 9fa0f9d714..5562917ca6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/healthchecks/models/geolocation.py b/src/oci/healthchecks/models/geolocation.py index 64c69fd208..c615dbf11a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 46b56913d6..472aa81e22 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/healthchecks/models/http_monitor.py b/src/oci/healthchecks/models/http_monitor.py index 9a41f4c997..f497ff6b67 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/healthchecks/models/http_monitor_summary.py b/src/oci/healthchecks/models/http_monitor_summary.py index 0f67731f98..691cfca673 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/healthchecks/models/http_probe.py b/src/oci/healthchecks/models/http_probe.py index 121f685223..abad2d06e8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/healthchecks/models/http_probe_result_summary.py b/src/oci/healthchecks/models/http_probe_result_summary.py index 1f8eacaa9d..e5605245bd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/healthchecks/models/ping_monitor.py b/src/oci/healthchecks/models/ping_monitor.py index 205513ac52..0cea87d6fe 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/healthchecks/models/ping_monitor_summary.py b/src/oci/healthchecks/models/ping_monitor_summary.py index b1ef3e0a0f..8b5c599c52 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/healthchecks/models/ping_probe.py b/src/oci/healthchecks/models/ping_probe.py index 95c9b4f1f8..682ba875cf 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/healthchecks/models/ping_probe_result_summary.py b/src/oci/healthchecks/models/ping_probe_result_summary.py index e076de81ff..161a21191f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/healthchecks/models/routing.py b/src/oci/healthchecks/models/routing.py index f806fca697..297bba668e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/healthchecks/models/tcp_connection.py b/src/oci/healthchecks/models/tcp_connection.py index cc94922eb8..5b92ac53a5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/healthchecks/models/update_http_monitor_details.py b/src/oci/healthchecks/models/update_http_monitor_details.py index 4528da658f..4f919c8a6f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/healthchecks/models/update_ping_monitor_details.py b/src/oci/healthchecks/models/update_ping_monitor_details.py index 533db22954..75d75ef244 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/__init__.py b/src/oci/identity/__init__.py index 1737125462..d2b6feca3c 100644 --- a/src/oci/identity/__init__.py +++ b/src/oci/identity/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/identity/identity_client.py b/src/oci/identity/identity_client.py index f02d005925..4c9e74b1b2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("identity", config, signer, identity_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -146,6 +152,10 @@ def activate_domain(self, domain_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -157,6 +167,7 @@ def activate_domain(self, domain_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -243,6 +254,10 @@ def activate_mfa_totp_device(self, user_id, mfa_totp_device_id, mfa_totp_token, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.MfaTotpDeviceSummary` :rtype: :class:`~oci.response.Response` @@ -254,6 +269,7 @@ def activate_mfa_totp_device(self, user_id, mfa_totp_device_id, mfa_totp_token, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token" @@ -335,6 +351,10 @@ def add_user_to_group(self, add_user_to_group_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.UserGroupMembership` :rtype: :class:`~oci.response.Response` @@ -346,6 +366,7 @@ def add_user_to_group(self, add_user_to_group_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -410,6 +431,10 @@ def assemble_effective_tag_set(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.TagDefaultSummary` :rtype: :class:`~oci.response.Response` @@ -421,6 +446,7 @@ def assemble_effective_tag_set(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state" ] @@ -507,6 +533,10 @@ def bulk_delete_resources(self, compartment_id, bulk_delete_resources_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -518,6 +548,7 @@ def bulk_delete_resources(self, compartment_id, bulk_delete_resources_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -617,6 +648,10 @@ def bulk_delete_tags(self, bulk_delete_tags_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -628,6 +663,7 @@ def bulk_delete_tags(self, bulk_delete_tags_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -708,6 +744,10 @@ def bulk_edit_tags(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -719,6 +759,7 @@ def bulk_edit_tags(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -796,6 +837,10 @@ def bulk_move_resources(self, compartment_id, bulk_move_resources_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -807,6 +852,7 @@ def bulk_move_resources(self, compartment_id, bulk_move_resources_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -909,6 +955,10 @@ def cascade_delete_tag_namespace(self, tag_namespace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -920,6 +970,7 @@ def cascade_delete_tag_namespace(self, tag_namespace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1018,6 +1069,10 @@ def change_domain_compartment(self, domain_id, change_domain_compartment_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1029,6 +1084,7 @@ def change_domain_compartment(self, domain_id, change_domain_compartment_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -1132,6 +1188,10 @@ def change_domain_license_type(self, domain_id, change_domain_license_type_detai To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1143,6 +1203,7 @@ def change_domain_license_type(self, domain_id, change_domain_license_type_detai # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -1230,6 +1291,10 @@ def change_tag_namespace_compartment(self, tag_namespace_id, change_tag_namespac To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1241,6 +1306,7 @@ def change_tag_namespace_compartment(self, tag_namespace_id, change_tag_namespac # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -1328,6 +1394,10 @@ def create_auth_token(self, create_auth_token_details, user_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.AuthToken` :rtype: :class:`~oci.response.Response` @@ -1339,6 +1409,7 @@ def create_auth_token(self, create_auth_token_details, user_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -1435,6 +1506,10 @@ def create_compartment(self, create_compartment_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.Compartment` :rtype: :class:`~oci.response.Response` @@ -1446,6 +1521,7 @@ def create_compartment(self, create_compartment_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -1524,6 +1600,10 @@ def create_customer_secret_key(self, create_customer_secret_key_details, user_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.CustomerSecretKey` :rtype: :class:`~oci.response.Response` @@ -1535,6 +1615,7 @@ def create_customer_secret_key(self, create_customer_secret_key_details, user_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -1617,6 +1698,10 @@ def create_db_credential(self, create_db_credential_details, user_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.DbCredential` :rtype: :class:`~oci.response.Response` @@ -1628,6 +1713,7 @@ def create_db_credential(self, create_db_credential_details, user_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1724,6 +1810,10 @@ def create_domain(self, create_domain_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1735,6 +1825,7 @@ def create_domain(self, create_domain_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1818,6 +1909,10 @@ def create_dynamic_group(self, create_dynamic_group_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.DynamicGroup` :rtype: :class:`~oci.response.Response` @@ -1829,6 +1924,7 @@ def create_dynamic_group(self, create_dynamic_group_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -1915,6 +2011,10 @@ def create_group(self, create_group_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.Group` :rtype: :class:`~oci.response.Response` @@ -1926,6 +2026,7 @@ def create_group(self, create_group_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -2012,6 +2113,10 @@ def create_identity_provider(self, create_identity_provider_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.IdentityProvider` :rtype: :class:`~oci.response.Response` @@ -2023,6 +2128,7 @@ def create_identity_provider(self, create_identity_provider_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -2094,6 +2200,10 @@ def create_idp_group_mapping(self, create_idp_group_mapping_details, identity_pr To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.IdpGroupMapping` :rtype: :class:`~oci.response.Response` @@ -2105,6 +2215,7 @@ def create_idp_group_mapping(self, create_idp_group_mapping_details, identity_pr # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -2180,6 +2291,10 @@ def create_mfa_totp_device(self, user_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.MfaTotpDevice` :rtype: :class:`~oci.response.Response` @@ -2191,6 +2306,7 @@ def create_mfa_totp_device(self, user_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -2288,6 +2404,10 @@ def create_network_source(self, create_network_source_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.NetworkSources` :rtype: :class:`~oci.response.Response` @@ -2299,6 +2419,7 @@ def create_network_source(self, create_network_source_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -2365,6 +2486,10 @@ def create_o_auth_client_credential(self, user_id, create_o_auth2_client_credent To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.OAuth2ClientCredential` :rtype: :class:`~oci.response.Response` @@ -2376,6 +2501,7 @@ def create_o_auth_client_credential(self, user_id, create_o_auth2_client_credent # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -2463,6 +2589,10 @@ def create_or_reset_ui_password(self, user_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.UIPassword` :rtype: :class:`~oci.response.Response` @@ -2474,6 +2604,7 @@ def create_or_reset_ui_password(self, user_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -2567,6 +2698,10 @@ def create_policy(self, create_policy_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.Policy` :rtype: :class:`~oci.response.Response` @@ -2578,6 +2713,7 @@ def create_policy(self, create_policy_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -2644,6 +2780,10 @@ def create_region_subscription(self, create_region_subscription_details, tenancy To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.RegionSubscription` :rtype: :class:`~oci.response.Response` @@ -2655,6 +2795,7 @@ def create_region_subscription(self, create_region_subscription_details, tenancy # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -2736,6 +2877,10 @@ def create_smtp_credential(self, create_smtp_credential_details, user_id, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.SmtpCredential` :rtype: :class:`~oci.response.Response` @@ -2747,6 +2892,7 @@ def create_smtp_credential(self, create_smtp_credential_details, user_id, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -2838,6 +2984,10 @@ def create_swift_password(self, create_swift_password_details, user_id, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.SwiftPassword` :rtype: :class:`~oci.response.Response` @@ -2849,6 +2999,7 @@ def create_swift_password(self, create_swift_password_details, user_id, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -2948,6 +3099,10 @@ def create_tag(self, tag_namespace_id, create_tag_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.Tag` :rtype: :class:`~oci.response.Response` @@ -2959,6 +3114,7 @@ def create_tag(self, tag_namespace_id, create_tag_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -3045,6 +3201,10 @@ def create_tag_default(self, create_tag_default_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.TagDefault` :rtype: :class:`~oci.response.Response` @@ -3056,6 +3216,7 @@ def create_tag_default(self, create_tag_default_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -3134,6 +3295,10 @@ def create_tag_namespace(self, create_tag_namespace_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.TagNamespace` :rtype: :class:`~oci.response.Response` @@ -3145,6 +3310,7 @@ def create_tag_namespace(self, create_tag_namespace_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -3246,6 +3412,10 @@ def create_user(self, create_user_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.User` :rtype: :class:`~oci.response.Response` @@ -3257,6 +3427,7 @@ def create_user(self, create_user_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] @@ -3346,6 +3517,10 @@ def deactivate_domain(self, domain_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3357,6 +3532,7 @@ def deactivate_domain(self, domain_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -3438,6 +3614,10 @@ def delete_api_key(self, user_id, fingerprint, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3449,6 +3629,7 @@ def delete_api_key(self, user_id, fingerprint, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -3521,6 +3702,10 @@ def delete_auth_token(self, user_id, auth_token_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3532,6 +3717,7 @@ def delete_auth_token(self, user_id, auth_token_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -3601,6 +3787,10 @@ def delete_compartment(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3612,6 +3802,7 @@ def delete_compartment(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -3683,6 +3874,10 @@ def delete_customer_secret_key(self, user_id, customer_secret_key_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3694,6 +3889,7 @@ def delete_customer_secret_key(self, user_id, customer_secret_key_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -3770,6 +3966,10 @@ def delete_db_credential(self, user_id, db_credential_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3781,6 +3981,7 @@ def delete_db_credential(self, user_id, db_credential_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -3872,6 +4073,10 @@ def delete_domain(self, domain_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3883,6 +4088,7 @@ def delete_domain(self, domain_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3953,6 +4159,10 @@ def delete_dynamic_group(self, dynamic_group_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3964,6 +4174,7 @@ def delete_dynamic_group(self, dynamic_group_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -4032,6 +4243,10 @@ def delete_group(self, group_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4043,6 +4258,7 @@ def delete_group(self, group_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -4116,6 +4332,10 @@ def delete_identity_provider(self, identity_provider_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4127,6 +4347,7 @@ def delete_identity_provider(self, identity_provider_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -4202,6 +4423,10 @@ def delete_idp_group_mapping(self, identity_provider_id, mapping_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4213,6 +4438,7 @@ def delete_idp_group_mapping(self, identity_provider_id, mapping_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -4285,6 +4511,10 @@ def delete_mfa_totp_device(self, user_id, mfa_totp_device_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4296,6 +4526,7 @@ def delete_mfa_totp_device(self, user_id, mfa_totp_device_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -4365,6 +4596,10 @@ def delete_network_source(self, network_source_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4376,6 +4611,7 @@ def delete_network_source(self, network_source_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -4447,6 +4683,10 @@ def delete_o_auth_client_credential(self, user_id, oauth2_client_credential_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4458,6 +4698,7 @@ def delete_o_auth_client_credential(self, user_id, oauth2_client_credential_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -4527,6 +4768,10 @@ def delete_policy(self, policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4538,6 +4783,7 @@ def delete_policy(self, policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -4609,6 +4855,10 @@ def delete_smtp_credential(self, user_id, smtp_credential_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4620,6 +4870,7 @@ def delete_smtp_credential(self, user_id, smtp_credential_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -4694,6 +4945,10 @@ def delete_swift_password(self, user_id, swift_password_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4705,6 +4960,7 @@ def delete_swift_password(self, user_id, swift_password_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -4797,6 +5053,10 @@ def delete_tag(self, tag_namespace_id, tag_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4808,6 +5068,7 @@ def delete_tag(self, tag_namespace_id, tag_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -4881,6 +5142,10 @@ def delete_tag_default(self, tag_default_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4892,6 +5157,7 @@ def delete_tag_default(self, tag_default_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -4972,6 +5238,10 @@ def delete_tag_namespace(self, tag_namespace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4983,6 +5253,7 @@ def delete_tag_namespace(self, tag_namespace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -5053,6 +5324,10 @@ def delete_user(self, user_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5064,6 +5339,7 @@ def delete_user(self, user_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -5158,6 +5434,10 @@ def enable_replication_to_region(self, domain_id, enable_replication_to_region_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5169,6 +5449,7 @@ def enable_replication_to_region(self, domain_id, enable_replication_to_region_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -5247,6 +5528,10 @@ def generate_totp_seed(self, user_id, mfa_totp_device_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.MfaTotpDevice` :rtype: :class:`~oci.response.Response` @@ -5258,6 +5543,7 @@ def generate_totp_seed(self, user_id, mfa_totp_device_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -5325,6 +5611,10 @@ def get_authentication_policy(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.AuthenticationPolicy` :rtype: :class:`~oci.response.Response` @@ -5402,6 +5692,10 @@ def get_compartment(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.Compartment` :rtype: :class:`~oci.response.Response` @@ -5479,6 +5773,10 @@ def get_domain(self, domain_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.Domain` :rtype: :class:`~oci.response.Response` @@ -5490,6 +5788,7 @@ def get_domain(self, domain_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5555,6 +5854,10 @@ def get_dynamic_group(self, dynamic_group_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.DynamicGroup` :rtype: :class:`~oci.response.Response` @@ -5629,6 +5932,10 @@ def get_group(self, group_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.Group` :rtype: :class:`~oci.response.Response` @@ -5707,6 +6014,10 @@ def get_iam_work_request(self, iam_work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.IamWorkRequest` :rtype: :class:`~oci.response.Response` @@ -5718,6 +6029,7 @@ def get_iam_work_request(self, iam_work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5787,6 +6099,10 @@ def get_identity_provider(self, identity_provider_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.IdentityProvider` :rtype: :class:`~oci.response.Response` @@ -5864,6 +6180,10 @@ def get_idp_group_mapping(self, identity_provider_id, mapping_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.IdpGroupMapping` :rtype: :class:`~oci.response.Response` @@ -5938,6 +6258,10 @@ def get_mfa_totp_device(self, user_id, mfa_totp_device_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.MfaTotpDeviceSummary` :rtype: :class:`~oci.response.Response` @@ -6009,6 +6333,10 @@ def get_network_source(self, network_source_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.NetworkSources` :rtype: :class:`~oci.response.Response` @@ -6079,6 +6407,10 @@ def get_policy(self, policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.Policy` :rtype: :class:`~oci.response.Response` @@ -6152,6 +6484,10 @@ def get_standard_tag_template(self, compartment_id, standard_tag_namespace_name, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.StandardTagNamespaceTemplate` :rtype: :class:`~oci.response.Response` @@ -6232,6 +6568,10 @@ def get_tag(self, tag_namespace_id, tag_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.Tag` :rtype: :class:`~oci.response.Response` @@ -6303,6 +6643,10 @@ def get_tag_default(self, tag_default_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.TagDefault` :rtype: :class:`~oci.response.Response` @@ -6373,6 +6717,10 @@ def get_tag_namespace(self, tag_namespace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.TagNamespace` :rtype: :class:`~oci.response.Response` @@ -6444,6 +6792,10 @@ def get_tagging_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.TaggingWorkRequest` :rtype: :class:`~oci.response.Response` @@ -6514,6 +6866,10 @@ def get_tenancy(self, tenancy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.Tenancy` :rtype: :class:`~oci.response.Response` @@ -6584,6 +6940,10 @@ def get_user(self, user_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.User` :rtype: :class:`~oci.response.Response` @@ -6654,6 +7014,10 @@ def get_user_group_membership(self, user_group_membership_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.UserGroupMembership` :rtype: :class:`~oci.response.Response` @@ -6725,6 +7089,10 @@ def get_user_ui_password_information(self, user_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.UIPasswordInformation` :rtype: :class:`~oci.response.Response` @@ -6796,6 +7164,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -6878,6 +7250,10 @@ def import_standard_tags(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6889,6 +7265,7 @@ def import_standard_tags(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -6956,6 +7333,10 @@ def list_allowed_domain_license_types(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.AllowedDomainLicenseTypeSummary` :rtype: :class:`~oci.response.Response` @@ -6967,6 +7348,7 @@ def list_allowed_domain_license_types(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "current_license_type_name", "opc_request_id" @@ -7031,6 +7413,10 @@ def list_api_keys(self, user_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.ApiKey` :rtype: :class:`~oci.response.Response` @@ -7102,6 +7488,10 @@ def list_auth_tokens(self, user_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.AuthToken` :rtype: :class:`~oci.response.Response` @@ -7178,6 +7568,10 @@ def list_availability_domains(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.AvailabilityDomain` :rtype: :class:`~oci.response.Response` @@ -7259,6 +7653,10 @@ def list_bulk_action_resource_types(self, bulk_action_type, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.BulkActionResourceTypeCollection` :rtype: :class:`~oci.response.Response` @@ -7270,6 +7668,7 @@ def list_bulk_action_resource_types(self, bulk_action_type, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit" @@ -7340,6 +7739,10 @@ def list_bulk_edit_tags_resource_types(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.BulkEditTagsResourceTypeCollection` :rtype: :class:`~oci.response.Response` @@ -7351,6 +7754,7 @@ def list_bulk_edit_tags_resource_types(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit" @@ -7480,6 +7884,10 @@ def list_compartments(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.Compartment` :rtype: :class:`~oci.response.Response` @@ -7491,6 +7899,7 @@ def list_compartments(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -7601,6 +8010,10 @@ def list_cost_tracking_tags(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.Tag` :rtype: :class:`~oci.response.Response` @@ -7612,6 +8025,7 @@ def list_cost_tracking_tags(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit" @@ -7674,6 +8088,10 @@ def list_customer_secret_keys(self, user_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.CustomerSecretKeySummary` :rtype: :class:`~oci.response.Response` @@ -7780,6 +8198,10 @@ def list_db_credentials(self, user_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.DbCredentialSummary` :rtype: :class:`~oci.response.Response` @@ -7791,6 +8213,7 @@ def list_db_credentials(self, user_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -7950,6 +8373,10 @@ def list_domains(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.DomainSummary` :rtype: :class:`~oci.response.Response` @@ -7961,6 +8388,7 @@ def list_domains(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "url", @@ -8102,6 +8530,10 @@ def list_dynamic_groups(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.DynamicGroup` :rtype: :class:`~oci.response.Response` @@ -8113,6 +8545,7 @@ def list_dynamic_groups(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -8210,6 +8643,10 @@ def list_fault_domains(self, compartment_id, availability_domain, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.FaultDomain` :rtype: :class:`~oci.response.Response` @@ -8312,6 +8749,10 @@ def list_groups(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.Group` :rtype: :class:`~oci.response.Response` @@ -8323,6 +8764,7 @@ def list_groups(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -8433,6 +8875,10 @@ def list_iam_work_request_errors(self, iam_work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.IamWorkRequestErrorSummary` :rtype: :class:`~oci.response.Response` @@ -8444,6 +8890,7 @@ def list_iam_work_request_errors(self, iam_work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -8548,6 +8995,10 @@ def list_iam_work_request_logs(self, iam_work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.IamWorkRequestLogSummary` :rtype: :class:`~oci.response.Response` @@ -8559,6 +9010,7 @@ def list_iam_work_request_logs(self, iam_work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -8659,6 +9111,10 @@ def list_iam_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.IamWorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -8670,6 +9126,7 @@ def list_iam_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -8754,6 +9211,10 @@ def list_identity_provider_groups(self, identity_provider_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.IdentityProviderGroupSummary` :rtype: :class:`~oci.response.Response` @@ -8765,6 +9226,7 @@ def list_identity_provider_groups(self, identity_provider_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -8893,6 +9355,10 @@ def list_identity_providers(self, protocol, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.IdentityProvider` :rtype: :class:`~oci.response.Response` @@ -8904,6 +9370,7 @@ def list_identity_providers(self, protocol, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -9005,6 +9472,10 @@ def list_idp_group_mappings(self, identity_provider_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.IdpGroupMapping` :rtype: :class:`~oci.response.Response` @@ -9016,6 +9487,7 @@ def list_idp_group_mappings(self, identity_provider_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit" @@ -9113,6 +9585,10 @@ def list_mfa_totp_devices(self, user_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.MfaTotpDeviceSummary` :rtype: :class:`~oci.response.Response` @@ -9124,6 +9600,7 @@ def list_mfa_totp_devices(self, user_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -9250,6 +9727,10 @@ def list_network_sources(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.NetworkSourcesSummary` :rtype: :class:`~oci.response.Response` @@ -9261,6 +9742,7 @@ def list_network_sources(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -9362,6 +9844,10 @@ def list_o_auth_client_credentials(self, user_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.OAuth2ClientCredentialSummary` :rtype: :class:`~oci.response.Response` @@ -9373,6 +9859,7 @@ def list_o_auth_client_credentials(self, user_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -9492,6 +9979,10 @@ def list_policies(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.Policy` :rtype: :class:`~oci.response.Response` @@ -9503,6 +9994,7 @@ def list_policies(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -9593,6 +10085,10 @@ def list_region_subscriptions(self, tenancy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.RegionSubscription` :rtype: :class:`~oci.response.Response` @@ -9660,6 +10156,10 @@ def list_regions(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.Region` :rtype: :class:`~oci.response.Response` @@ -9719,6 +10219,10 @@ def list_smtp_credentials(self, user_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.SmtpCredentialSummary` :rtype: :class:`~oci.response.Response` @@ -9795,6 +10299,10 @@ def list_standard_tag_namespaces(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.StandardTagNamespaceTemplateSummary` :rtype: :class:`~oci.response.Response` @@ -9806,6 +10314,7 @@ def list_standard_tag_namespaces(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit" @@ -9870,6 +10379,10 @@ def list_swift_passwords(self, user_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.SwiftPassword` :rtype: :class:`~oci.response.Response` @@ -9957,6 +10470,10 @@ def list_tag_defaults(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.TagDefaultSummary` :rtype: :class:`~oci.response.Response` @@ -9968,6 +10485,7 @@ def list_tag_defaults(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -10058,6 +10576,10 @@ def list_tag_namespaces(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.TagNamespaceSummary` :rtype: :class:`~oci.response.Response` @@ -10069,6 +10591,7 @@ def list_tag_namespaces(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -10147,6 +10670,10 @@ def list_tagging_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.TaggingWorkRequestErrorSummary` :rtype: :class:`~oci.response.Response` @@ -10158,6 +10685,7 @@ def list_tagging_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit" @@ -10236,6 +10764,10 @@ def list_tagging_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.TaggingWorkRequestLogSummary` :rtype: :class:`~oci.response.Response` @@ -10247,6 +10779,7 @@ def list_tagging_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit" @@ -10328,6 +10861,10 @@ def list_tagging_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.TaggingWorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -10339,6 +10876,7 @@ def list_tagging_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -10413,6 +10951,10 @@ def list_tags(self, tag_namespace_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.TagSummary` :rtype: :class:`~oci.response.Response` @@ -10424,6 +10966,7 @@ def list_tags(self, tag_namespace_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -10528,6 +11071,10 @@ def list_user_group_memberships(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.UserGroupMembership` :rtype: :class:`~oci.response.Response` @@ -10539,6 +11086,7 @@ def list_user_group_memberships(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "user_id", "group_id", @@ -10646,6 +11194,10 @@ def list_users(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.User` :rtype: :class:`~oci.response.Response` @@ -10657,6 +11209,7 @@ def list_users(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -10760,6 +11313,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.identity.models.WorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -10771,6 +11328,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -10862,6 +11420,10 @@ def move_compartment(self, compartment_id, move_compartment_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -10873,6 +11435,7 @@ def move_compartment(self, compartment_id, move_compartment_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -10952,6 +11515,10 @@ def recover_compartment(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.Compartment` :rtype: :class:`~oci.response.Response` @@ -10963,6 +11530,7 @@ def recover_compartment(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -11035,6 +11603,10 @@ def remove_user_from_group(self, user_group_membership_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -11046,6 +11618,7 @@ def remove_user_from_group(self, user_group_membership_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -11109,6 +11682,10 @@ def reset_idp_scim_client(self, identity_provider_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.ScimClientCredentials` :rtype: :class:`~oci.response.Response` @@ -11190,6 +11767,10 @@ def update_auth_token(self, user_id, auth_token_id, update_auth_token_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.AuthToken` :rtype: :class:`~oci.response.Response` @@ -11201,6 +11782,7 @@ def update_auth_token(self, user_id, auth_token_id, update_auth_token_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -11277,6 +11859,10 @@ def update_authentication_policy(self, compartment_id, update_authentication_pol To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.AuthenticationPolicy` :rtype: :class:`~oci.response.Response` @@ -11288,6 +11874,7 @@ def update_authentication_policy(self, compartment_id, update_authentication_pol # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -11363,6 +11950,10 @@ def update_compartment(self, compartment_id, update_compartment_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.Compartment` :rtype: :class:`~oci.response.Response` @@ -11374,6 +11965,7 @@ def update_compartment(self, compartment_id, update_compartment_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -11452,6 +12044,10 @@ def update_customer_secret_key(self, user_id, customer_secret_key_id, update_cus To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.CustomerSecretKeySummary` :rtype: :class:`~oci.response.Response` @@ -11463,6 +12059,7 @@ def update_customer_secret_key(self, user_id, customer_secret_key_id, update_cus # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -11554,6 +12151,10 @@ def update_domain(self, domain_id, update_domain_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -11565,6 +12166,7 @@ def update_domain(self, domain_id, update_domain_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -11640,6 +12242,10 @@ def update_dynamic_group(self, dynamic_group_id, update_dynamic_group_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.DynamicGroup` :rtype: :class:`~oci.response.Response` @@ -11651,6 +12257,7 @@ def update_dynamic_group(self, dynamic_group_id, update_dynamic_group_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -11726,6 +12333,10 @@ def update_group(self, group_id, update_group_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.Group` :rtype: :class:`~oci.response.Response` @@ -11737,6 +12348,7 @@ def update_group(self, group_id, update_group_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -11816,6 +12428,10 @@ def update_identity_provider(self, identity_provider_id, update_identity_provide To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.IdentityProvider` :rtype: :class:`~oci.response.Response` @@ -11827,6 +12443,7 @@ def update_identity_provider(self, identity_provider_id, update_identity_provide # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -11909,6 +12526,10 @@ def update_idp_group_mapping(self, identity_provider_id, mapping_id, update_idp_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.IdpGroupMapping` :rtype: :class:`~oci.response.Response` @@ -11920,6 +12541,7 @@ def update_idp_group_mapping(self, identity_provider_id, mapping_id, update_idp_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -11996,6 +12618,10 @@ def update_network_source(self, network_source_id, update_network_source_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.NetworkSources` :rtype: :class:`~oci.response.Response` @@ -12007,6 +12633,7 @@ def update_network_source(self, network_source_id, update_network_source_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -12085,6 +12712,10 @@ def update_o_auth_client_credential(self, user_id, oauth2_client_credential_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.OAuth2ClientCredential` :rtype: :class:`~oci.response.Response` @@ -12096,6 +12727,7 @@ def update_o_auth_client_credential(self, user_id, oauth2_client_credential_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -12174,6 +12806,10 @@ def update_policy(self, policy_id, update_policy_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.Policy` :rtype: :class:`~oci.response.Response` @@ -12185,6 +12821,7 @@ def update_policy(self, policy_id, update_policy_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -12263,6 +12900,10 @@ def update_smtp_credential(self, user_id, smtp_credential_id, update_smtp_creden To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.SmtpCredentialSummary` :rtype: :class:`~oci.response.Response` @@ -12274,6 +12915,7 @@ def update_smtp_credential(self, user_id, smtp_credential_id, update_smtp_creden # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -12355,6 +12997,10 @@ def update_swift_password(self, user_id, swift_password_id, update_swift_passwor To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.SwiftPassword` :rtype: :class:`~oci.response.Response` @@ -12366,6 +13012,7 @@ def update_swift_password(self, user_id, swift_password_id, update_swift_passwor # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -12454,6 +13101,10 @@ def update_tag(self, tag_namespace_id, tag_name, update_tag_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.Tag` :rtype: :class:`~oci.response.Response` @@ -12465,6 +13116,7 @@ def update_tag(self, tag_namespace_id, tag_name, update_tag_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -12550,6 +13202,10 @@ def update_tag_default(self, tag_default_id, update_tag_default_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.TagDefault` :rtype: :class:`~oci.response.Response` @@ -12561,6 +13217,7 @@ def update_tag_default(self, tag_default_id, update_tag_default_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -12643,6 +13300,10 @@ def update_tag_namespace(self, tag_namespace_id, update_tag_namespace_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.TagNamespace` :rtype: :class:`~oci.response.Response` @@ -12723,6 +13384,10 @@ def update_user(self, user_id, update_user_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.User` :rtype: :class:`~oci.response.Response` @@ -12734,6 +13399,7 @@ def update_user(self, user_id, update_user_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -12809,6 +13475,10 @@ def update_user_capabilities(self, user_id, update_user_capabilities_details, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.User` :rtype: :class:`~oci.response.Response` @@ -12820,6 +13490,7 @@ def update_user_capabilities(self, user_id, update_user_capabilities_details, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -12895,6 +13566,10 @@ def update_user_state(self, user_id, update_state_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.User` :rtype: :class:`~oci.response.Response` @@ -12906,6 +13581,7 @@ def update_user_state(self, user_id, update_state_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match" ] @@ -12997,6 +13673,10 @@ def upload_api_key(self, user_id, create_api_key_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity.models.ApiKey` :rtype: :class:`~oci.response.Response` @@ -13008,6 +13688,7 @@ def upload_api_key(self, user_id, create_api_key_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token" ] diff --git a/src/oci/identity/identity_client_composite_operations.py b/src/oci/identity/identity_client_composite_operations.py index 0b4b27690e..c4f1863d7c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/identity/models/__init__.py b/src/oci/identity/models/__init__.py index e5c61110f5..93f06c0a39 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 1e5216e2c3..22774edb91 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/allowed_domain_license_type_summary.py b/src/oci/identity/models/allowed_domain_license_type_summary.py index 2307862a02..c6ebb48d7b 100644 --- a/src/oci/identity/models/allowed_domain_license_type_summary.py +++ b/src/oci/identity/models/allowed_domain_license_type_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/api_key.py b/src/oci/identity/models/api_key.py index 680fe9b0ce..626067229a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/auth_token.py b/src/oci/identity/models/auth_token.py index 8108dc0b9a..6631196089 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/authentication_policy.py b/src/oci/identity/models/authentication_policy.py index f0febc6b73..471c2f9192 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/availability_domain.py b/src/oci/identity/models/availability_domain.py index b1ae07f40c..55c5f6f21e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/base_tag_definition_validator.py b/src/oci/identity/models/base_tag_definition_validator.py index 3e9b2124eb..3575850173 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/bulk_action_resource.py b/src/oci/identity/models/bulk_action_resource.py index 28815a4138..f170dbd84f 100644 --- a/src/oci/identity/models/bulk_action_resource.py +++ b/src/oci/identity/models/bulk_action_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/bulk_action_resource_type.py b/src/oci/identity/models/bulk_action_resource_type.py index 484ba6e748..969e16080f 100644 --- a/src/oci/identity/models/bulk_action_resource_type.py +++ b/src/oci/identity/models/bulk_action_resource_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/bulk_action_resource_type_collection.py b/src/oci/identity/models/bulk_action_resource_type_collection.py index 42957cc6ce..e9e98fc145 100644 --- a/src/oci/identity/models/bulk_action_resource_type_collection.py +++ b/src/oci/identity/models/bulk_action_resource_type_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/bulk_delete_resources_details.py b/src/oci/identity/models/bulk_delete_resources_details.py index d0f895dbd4..2a4c892770 100644 --- a/src/oci/identity/models/bulk_delete_resources_details.py +++ b/src/oci/identity/models/bulk_delete_resources_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/bulk_delete_tags_details.py b/src/oci/identity/models/bulk_delete_tags_details.py index ef7f48b2f1..5b21bd8b32 100644 --- a/src/oci/identity/models/bulk_delete_tags_details.py +++ b/src/oci/identity/models/bulk_delete_tags_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/bulk_edit_operation_details.py b/src/oci/identity/models/bulk_edit_operation_details.py index 6f9ca2bd87..b3dc2aa33a 100644 --- a/src/oci/identity/models/bulk_edit_operation_details.py +++ b/src/oci/identity/models/bulk_edit_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/bulk_edit_resource.py b/src/oci/identity/models/bulk_edit_resource.py index a4364ef99d..7770990c1d 100644 --- a/src/oci/identity/models/bulk_edit_resource.py +++ b/src/oci/identity/models/bulk_edit_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/bulk_edit_tags_details.py b/src/oci/identity/models/bulk_edit_tags_details.py index 8877b06757..42c05176f7 100644 --- a/src/oci/identity/models/bulk_edit_tags_details.py +++ b/src/oci/identity/models/bulk_edit_tags_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/bulk_edit_tags_resource_type.py b/src/oci/identity/models/bulk_edit_tags_resource_type.py index 9b18cc961f..be7dbf993b 100644 --- a/src/oci/identity/models/bulk_edit_tags_resource_type.py +++ b/src/oci/identity/models/bulk_edit_tags_resource_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/bulk_edit_tags_resource_type_collection.py b/src/oci/identity/models/bulk_edit_tags_resource_type_collection.py index 76f73d4f80..5cb3a19c7e 100644 --- a/src/oci/identity/models/bulk_edit_tags_resource_type_collection.py +++ b/src/oci/identity/models/bulk_edit_tags_resource_type_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/bulk_move_resources_details.py b/src/oci/identity/models/bulk_move_resources_details.py index a290b75346..ed2f4215f9 100644 --- a/src/oci/identity/models/bulk_move_resources_details.py +++ b/src/oci/identity/models/bulk_move_resources_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/change_domain_compartment_details.py b/src/oci/identity/models/change_domain_compartment_details.py index 4eb8037f01..3390f8eee1 100644 --- a/src/oci/identity/models/change_domain_compartment_details.py +++ b/src/oci/identity/models/change_domain_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/change_domain_license_type_details.py b/src/oci/identity/models/change_domain_license_type_details.py index 56cd9fc9a8..5730c51662 100644 --- a/src/oci/identity/models/change_domain_license_type_details.py +++ b/src/oci/identity/models/change_domain_license_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 1ceb0978f2..6de0decf1d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/change_tas_domain_license_type_details.py b/src/oci/identity/models/change_tas_domain_license_type_details.py index 1165f6ccc6..611b0aa703 100644 --- a/src/oci/identity/models/change_tas_domain_license_type_details.py +++ b/src/oci/identity/models/change_tas_domain_license_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/compartment.py b/src/oci/identity/models/compartment.py index 2481fde235..d723a695f6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/create_api_key_details.py b/src/oci/identity/models/create_api_key_details.py index c74731e861..aadfa2c4f0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/create_auth_token_details.py b/src/oci/identity/models/create_auth_token_details.py index 91a9e12661..3f64c82984 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/create_compartment_details.py b/src/oci/identity/models/create_compartment_details.py index 72fa37a8d3..92da0c79a2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 3ac2209900..833802d860 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/create_db_credential_details.py b/src/oci/identity/models/create_db_credential_details.py index 42b05ee6a1..35a7979bd0 100644 --- a/src/oci/identity/models/create_db_credential_details.py +++ b/src/oci/identity/models/create_db_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/create_domain_details.py b/src/oci/identity/models/create_domain_details.py index 83a69e943a..2a5ef37793 100644 --- a/src/oci/identity/models/create_domain_details.py +++ b/src/oci/identity/models/create_domain_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/create_dynamic_group_details.py b/src/oci/identity/models/create_dynamic_group_details.py index 998e710da5..843f5a2404 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/create_group_details.py b/src/oci/identity/models/create_group_details.py index 6039b3668e..8316bb2fbe 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/create_identity_provider_details.py b/src/oci/identity/models/create_identity_provider_details.py index 2a9705a478..7920c41f7e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 b7ea99c356..3920cbadc8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/create_network_source_details.py b/src/oci/identity/models/create_network_source_details.py index eefc0f7a89..0414f7cb6f 100644 --- a/src/oci/identity/models/create_network_source_details.py +++ b/src/oci/identity/models/create_network_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/create_o_auth2_client_credential_details.py b/src/oci/identity/models/create_o_auth2_client_credential_details.py index 7392c8791f..c5c6039a8c 100644 --- a/src/oci/identity/models/create_o_auth2_client_credential_details.py +++ b/src/oci/identity/models/create_o_auth2_client_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/create_policy_details.py b/src/oci/identity/models/create_policy_details.py index 6ceff534e8..20817eacea 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/create_region_subscription_details.py b/src/oci/identity/models/create_region_subscription_details.py index a9f18b15ef..4fa4d7d7f8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 f7930a812b..58eacef3f3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_identity_provider_details import CreateIdentityProviderDetails diff --git a/src/oci/identity/models/create_smtp_credential_details.py b/src/oci/identity/models/create_smtp_credential_details.py index 3c839dff8a..dac500a0eb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/create_swift_password_details.py b/src/oci/identity/models/create_swift_password_details.py index 920126b30d..c3513e4ee3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/create_tag_default_details.py b/src/oci/identity/models/create_tag_default_details.py index 06d10114b2..1f209bad27 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/create_tag_details.py b/src/oci/identity/models/create_tag_details.py index 55c639db65..7bc465ac04 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/create_tag_namespace_details.py b/src/oci/identity/models/create_tag_namespace_details.py index 6ffc506590..e182b91651 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/create_user_details.py b/src/oci/identity/models/create_user_details.py index dd92958178..9621d2dd5f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/customer_secret_key.py b/src/oci/identity/models/customer_secret_key.py index 5cceb0088a..c4b4fbe278 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/customer_secret_key_summary.py b/src/oci/identity/models/customer_secret_key_summary.py index 37053fbb02..e0af683889 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/db_credential.py b/src/oci/identity/models/db_credential.py index 25fd3c9651..0770226db0 100644 --- a/src/oci/identity/models/db_credential.py +++ b/src/oci/identity/models/db_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/db_credential_summary.py b/src/oci/identity/models/db_credential_summary.py index 501d0368c4..25793e6728 100644 --- a/src/oci/identity/models/db_credential_summary.py +++ b/src/oci/identity/models/db_credential_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/default_tag_definition_validator.py b/src/oci/identity/models/default_tag_definition_validator.py index 433be35b08..8b40728a71 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .base_tag_definition_validator import BaseTagDefinitionValidator diff --git a/src/oci/identity/models/domain.py b/src/oci/identity/models/domain.py index 327ab0dbb0..8d274ad6f7 100644 --- a/src/oci/identity/models/domain.py +++ b/src/oci/identity/models/domain.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/domain_replication.py b/src/oci/identity/models/domain_replication.py index fc99ddd548..d3f251295f 100644 --- a/src/oci/identity/models/domain_replication.py +++ b/src/oci/identity/models/domain_replication.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/domain_replication_states.py b/src/oci/identity/models/domain_replication_states.py index eb6c92ad00..ce11cfd3e3 100644 --- a/src/oci/identity/models/domain_replication_states.py +++ b/src/oci/identity/models/domain_replication_states.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/domain_summary.py b/src/oci/identity/models/domain_summary.py index 5aa8414def..b35c9dcd8f 100644 --- a/src/oci/identity/models/domain_summary.py +++ b/src/oci/identity/models/domain_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/dynamic_group.py b/src/oci/identity/models/dynamic_group.py index 7efc934135..d8d7343932 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/enable_replication_to_region_details.py b/src/oci/identity/models/enable_replication_to_region_details.py index be4ad9a362..594a094b9b 100644 --- a/src/oci/identity/models/enable_replication_to_region_details.py +++ b/src/oci/identity/models/enable_replication_to_region_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/enum_tag_definition_validator.py b/src/oci/identity/models/enum_tag_definition_validator.py index a3b683d096..87dc137472 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .base_tag_definition_validator import BaseTagDefinitionValidator diff --git a/src/oci/identity/models/fault_domain.py b/src/oci/identity/models/fault_domain.py index 92f16dd76b..5b9e95d677 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/fully_qualified_scope.py b/src/oci/identity/models/fully_qualified_scope.py index 0a67f4379f..07a9a54ba4 100644 --- a/src/oci/identity/models/fully_qualified_scope.py +++ b/src/oci/identity/models/fully_qualified_scope.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/group.py b/src/oci/identity/models/group.py index 904087c864..c78764bba1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/iam_work_request.py b/src/oci/identity/models/iam_work_request.py index ab44d86518..a5ff08a4f5 100644 --- a/src/oci/identity/models/iam_work_request.py +++ b/src/oci/identity/models/iam_work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/iam_work_request_error_summary.py b/src/oci/identity/models/iam_work_request_error_summary.py index 78138892e8..d648ad9406 100644 --- a/src/oci/identity/models/iam_work_request_error_summary.py +++ b/src/oci/identity/models/iam_work_request_error_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/iam_work_request_log_summary.py b/src/oci/identity/models/iam_work_request_log_summary.py index 9cc31fd2d3..12dbd97353 100644 --- a/src/oci/identity/models/iam_work_request_log_summary.py +++ b/src/oci/identity/models/iam_work_request_log_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/iam_work_request_resource.py b/src/oci/identity/models/iam_work_request_resource.py index b0af74f7a9..a0b37bad34 100644 --- a/src/oci/identity/models/iam_work_request_resource.py +++ b/src/oci/identity/models/iam_work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/iam_work_request_summary.py b/src/oci/identity/models/iam_work_request_summary.py index 1d7d08c9fc..b8d5c5c740 100644 --- a/src/oci/identity/models/iam_work_request_summary.py +++ b/src/oci/identity/models/iam_work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/identity_provider.py b/src/oci/identity/models/identity_provider.py index c04744fc46..b57600c8e1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/identity_provider_group_summary.py b/src/oci/identity/models/identity_provider_group_summary.py index 49042244c4..267f296cd8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/idp_group_mapping.py b/src/oci/identity/models/idp_group_mapping.py index 07046d0629..aff3a10a59 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/import_standard_tags_details.py b/src/oci/identity/models/import_standard_tags_details.py index 623829372a..6eafca0abc 100644 --- a/src/oci/identity/models/import_standard_tags_details.py +++ b/src/oci/identity/models/import_standard_tags_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/mfa_totp_device.py b/src/oci/identity/models/mfa_totp_device.py index 338b2bc099..c92d369a3d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/mfa_totp_device_summary.py b/src/oci/identity/models/mfa_totp_device_summary.py index dadbd7f884..f73a49870c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/mfa_totp_token.py b/src/oci/identity/models/mfa_totp_token.py index b0ea4de45a..93f50387f0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/move_compartment_details.py b/src/oci/identity/models/move_compartment_details.py index da8f744be1..6f54ed1a40 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/network_policy.py b/src/oci/identity/models/network_policy.py index 830ebed011..72683dc990 100644 --- a/src/oci/identity/models/network_policy.py +++ b/src/oci/identity/models/network_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/network_sources.py b/src/oci/identity/models/network_sources.py index ff891fa74a..a25118d954 100644 --- a/src/oci/identity/models/network_sources.py +++ b/src/oci/identity/models/network_sources.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/network_sources_summary.py b/src/oci/identity/models/network_sources_summary.py index d6ea1475f6..fe3dd0fd0e 100644 --- a/src/oci/identity/models/network_sources_summary.py +++ b/src/oci/identity/models/network_sources_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/network_sources_virtual_source_list.py b/src/oci/identity/models/network_sources_virtual_source_list.py index 1becd21405..91f068a193 100644 --- a/src/oci/identity/models/network_sources_virtual_source_list.py +++ b/src/oci/identity/models/network_sources_virtual_source_list.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/o_auth2_client_credential.py b/src/oci/identity/models/o_auth2_client_credential.py index f62582f331..fdcfdb058e 100644 --- a/src/oci/identity/models/o_auth2_client_credential.py +++ b/src/oci/identity/models/o_auth2_client_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/o_auth2_client_credential_summary.py b/src/oci/identity/models/o_auth2_client_credential_summary.py index 11dab6d8c0..709015c445 100644 --- a/src/oci/identity/models/o_auth2_client_credential_summary.py +++ b/src/oci/identity/models/o_auth2_client_credential_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/password_policy.py b/src/oci/identity/models/password_policy.py index f8caa87cb6..7033f06400 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/policy.py b/src/oci/identity/models/policy.py index c1035a8ef6..78cfbc0076 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/region.py b/src/oci/identity/models/region.py index cb1d0313d4..dfbacfd230 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/region_subscription.py b/src/oci/identity/models/region_subscription.py index bce9e53f39..028efc2b85 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/replicated_region_details.py b/src/oci/identity/models/replicated_region_details.py index a5d29fb28f..e028420012 100644 --- a/src/oci/identity/models/replicated_region_details.py +++ b/src/oci/identity/models/replicated_region_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/saml2_identity_provider.py b/src/oci/identity/models/saml2_identity_provider.py index 9416ad270a..c7c05a8d58 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .identity_provider import IdentityProvider diff --git a/src/oci/identity/models/scim_client_credentials.py b/src/oci/identity/models/scim_client_credentials.py index 27fa9ae2ba..daa14b7809 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/smtp_credential.py b/src/oci/identity/models/smtp_credential.py index 26402fe1b6..f3e1579d0f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/smtp_credential_summary.py b/src/oci/identity/models/smtp_credential_summary.py index 0d08c30b46..80abd09988 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/standard_tag_definition_template.py b/src/oci/identity/models/standard_tag_definition_template.py index 5eefa9e252..dfa50c8b63 100644 --- a/src/oci/identity/models/standard_tag_definition_template.py +++ b/src/oci/identity/models/standard_tag_definition_template.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/standard_tag_namespace_template.py b/src/oci/identity/models/standard_tag_namespace_template.py index de2ca4fabc..d2c03f51bd 100644 --- a/src/oci/identity/models/standard_tag_namespace_template.py +++ b/src/oci/identity/models/standard_tag_namespace_template.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/standard_tag_namespace_template_summary.py b/src/oci/identity/models/standard_tag_namespace_template_summary.py index 94b139ab2a..0202c13f4f 100644 --- a/src/oci/identity/models/standard_tag_namespace_template_summary.py +++ b/src/oci/identity/models/standard_tag_namespace_template_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/swift_password.py b/src/oci/identity/models/swift_password.py index eac2047f36..a3e4533bfb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/tag.py b/src/oci/identity/models/tag.py index acd92b6ccc..dc86e44e67 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/tag_default.py b/src/oci/identity/models/tag_default.py index 2c1d14ba9f..b151090916 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/tag_default_summary.py b/src/oci/identity/models/tag_default_summary.py index 7cc23bfe9a..a5cdf34e46 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/tag_namespace.py b/src/oci/identity/models/tag_namespace.py index 39c5ab7b2a..cc9de63dee 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/tag_namespace_summary.py b/src/oci/identity/models/tag_namespace_summary.py index 903d2ee844..73518ac306 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/tag_summary.py b/src/oci/identity/models/tag_summary.py index 51dc461c7f..86fe588386 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/tagging_work_request.py b/src/oci/identity/models/tagging_work_request.py index 5299ae58f1..3b6147ea74 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 61d7ee225b..1723b55470 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 e2d9603339..650bd15f78 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/tagging_work_request_summary.py b/src/oci/identity/models/tagging_work_request_summary.py index e5a5173454..727bcbc7f2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/tenancy.py b/src/oci/identity/models/tenancy.py index da46605918..f645a17aa4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/ui_password.py b/src/oci/identity/models/ui_password.py index 8220ea72b5..e901d46f91 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/ui_password_information.py b/src/oci/identity/models/ui_password_information.py index 8dc4adc00d..882de2d982 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/update_auth_token_details.py b/src/oci/identity/models/update_auth_token_details.py index e2d1010a75..ad7c4ab2ee 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/update_authentication_policy_details.py b/src/oci/identity/models/update_authentication_policy_details.py index 7389d1b6ba..9e358359d1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/update_compartment_details.py b/src/oci/identity/models/update_compartment_details.py index 105ce71d09..b82ea31204 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 50f93ae5e3..a41ed627c2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/update_domain_details.py b/src/oci/identity/models/update_domain_details.py index 1e7fe9e511..8e1a918209 100644 --- a/src/oci/identity/models/update_domain_details.py +++ b/src/oci/identity/models/update_domain_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/update_dynamic_group_details.py b/src/oci/identity/models/update_dynamic_group_details.py index a6be9ad43d..2b11951407 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/update_group_details.py b/src/oci/identity/models/update_group_details.py index 0e8cdc7d49..c79d11697a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/update_identity_provider_details.py b/src/oci/identity/models/update_identity_provider_details.py index 1ca198d845..ba408b0db8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 14ee68b7e3..933a2ad04b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/update_network_source_details.py b/src/oci/identity/models/update_network_source_details.py index c76b61ed1c..dc60eedbbb 100644 --- a/src/oci/identity/models/update_network_source_details.py +++ b/src/oci/identity/models/update_network_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/update_o_auth2_client_credential_details.py b/src/oci/identity/models/update_o_auth2_client_credential_details.py index 80493dd918..42c396b974 100644 --- a/src/oci/identity/models/update_o_auth2_client_credential_details.py +++ b/src/oci/identity/models/update_o_auth2_client_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/update_policy_details.py b/src/oci/identity/models/update_policy_details.py index 74521f71f4..5b87a8cbf3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 9cdbbeaefc..4750ed6b4d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_identity_provider_details import UpdateIdentityProviderDetails diff --git a/src/oci/identity/models/update_smtp_credential_details.py b/src/oci/identity/models/update_smtp_credential_details.py index d25676f481..206957c76f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/update_state_details.py b/src/oci/identity/models/update_state_details.py index d7dedf4d55..7836bddf7d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/update_swift_password_details.py b/src/oci/identity/models/update_swift_password_details.py index 967407d6d2..5c31c5c8fe 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/update_tag_default_details.py b/src/oci/identity/models/update_tag_default_details.py index 590c5db611..7a8dde353b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/update_tag_details.py b/src/oci/identity/models/update_tag_details.py index 1be1f550ab..6207dc8053 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/update_tag_namespace_details.py b/src/oci/identity/models/update_tag_namespace_details.py index 2c0b2d9bcb..04f56dc766 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/update_user_capabilities_details.py b/src/oci/identity/models/update_user_capabilities_details.py index 7a57a8ef2b..81e90bb130 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/update_user_details.py b/src/oci/identity/models/update_user_details.py index 1421384f0b..de06188a5c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/user.py b/src/oci/identity/models/user.py index e5272ec074..d577c42441 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/user_capabilities.py b/src/oci/identity/models/user_capabilities.py index fdc371ccaa..75392dfe65 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/user_group_membership.py b/src/oci/identity/models/user_group_membership.py index c6619a2b24..e68ea72d33 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/work_request.py b/src/oci/identity/models/work_request.py index 6a86cd5de9..849305e39d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/work_request_error.py b/src/oci/identity/models/work_request_error.py index 3c6c3b7571..b7026fd3d1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/work_request_log_entry.py b/src/oci/identity/models/work_request_log_entry.py index 8b2f8a7064..ba576155fd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/work_request_resource.py b/src/oci/identity/models/work_request_resource.py index 8d7af1db45..84a0e0b545 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity/models/work_request_summary.py b/src/oci/identity/models/work_request_summary.py index 06410c2b0b..cc4c3f8d10 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/__init__.py b/src/oci/identity_data_plane/__init__.py index 4de51d0ab1..9faf074eda 100644 --- a/src/oci/identity_data_plane/__init__.py +++ b/src/oci/identity_data_plane/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/identity_data_plane/dataplane_client.py b/src/oci/identity_data_plane/dataplane_client.py index a3c94fa47e..f8ccc18c1d 100644 --- a/src/oci/identity_data_plane/dataplane_client.py +++ b/src/oci/identity_data_plane/dataplane_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("dataplane", config, signer, identity_data_plane_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -114,6 +120,10 @@ def generate_scoped_access_token(self, generate_scoped_access_token_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.identity_data_plane.models.SecurityToken` :rtype: :class:`~oci.response.Response` diff --git a/src/oci/identity_data_plane/dataplane_client_composite_operations.py b/src/oci/identity_data_plane/dataplane_client_composite_operations.py index 3860a8b8a9..a883c4f960 100644 --- a/src/oci/identity_data_plane/dataplane_client_composite_operations.py +++ b/src/oci/identity_data_plane/dataplane_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/identity_data_plane/models/__init__.py b/src/oci/identity_data_plane/models/__init__.py index e3fdedb83d..cad7825dc6 100644 --- a/src/oci/identity_data_plane/models/__init__.py +++ b/src/oci/identity_data_plane/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/identity_data_plane/models/accessible_compartment_request.py b/src/oci/identity_data_plane/models/accessible_compartment_request.py index cfcdd16974..6dcff7a712 100644 --- a/src/oci/identity_data_plane/models/accessible_compartment_request.py +++ b/src/oci/identity_data_plane/models/accessible_compartment_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/accessible_compartment_response.py b/src/oci/identity_data_plane/models/accessible_compartment_response.py index 3bdf3fe384..60b3529c7b 100644 --- a/src/oci/identity_data_plane/models/accessible_compartment_response.py +++ b/src/oci/identity_data_plane/models/accessible_compartment_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/association_authorization_request.py b/src/oci/identity_data_plane/models/association_authorization_request.py index 514558ce27..78ea51b6db 100644 --- a/src/oci/identity_data_plane/models/association_authorization_request.py +++ b/src/oci/identity_data_plane/models/association_authorization_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/auth_service_user.py b/src/oci/identity_data_plane/models/auth_service_user.py index d96bbb136e..4d2e16d0f1 100644 --- a/src/oci/identity_data_plane/models/auth_service_user.py +++ b/src/oci/identity_data_plane/models/auth_service_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/authenticate_client_details.py b/src/oci/identity_data_plane/models/authenticate_client_details.py index fbce230f18..674af61df0 100644 --- a/src/oci/identity_data_plane/models/authenticate_client_details.py +++ b/src/oci/identity_data_plane/models/authenticate_client_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/authenticate_client_result.py b/src/oci/identity_data_plane/models/authenticate_client_result.py index 24972d5720..2070de8664 100644 --- a/src/oci/identity_data_plane/models/authenticate_client_result.py +++ b/src/oci/identity_data_plane/models/authenticate_client_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/authenticate_user_result.py b/src/oci/identity_data_plane/models/authenticate_user_result.py index eaf30864e6..4a10466ead 100644 --- a/src/oci/identity_data_plane/models/authenticate_user_result.py +++ b/src/oci/identity_data_plane/models/authenticate_user_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/authentication_policy.py b/src/oci/identity_data_plane/models/authentication_policy.py index 2835ac7985..dc69ff85d0 100644 --- a/src/oci/identity_data_plane/models/authentication_policy.py +++ b/src/oci/identity_data_plane/models/authentication_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/authentication_principal.py b/src/oci/identity_data_plane/models/authentication_principal.py index 769c9e1cf8..0fd74ab774 100644 --- a/src/oci/identity_data_plane/models/authentication_principal.py +++ b/src/oci/identity_data_plane/models/authentication_principal.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/authentication_request.py b/src/oci/identity_data_plane/models/authentication_request.py index f668050a8a..a67fe176f3 100644 --- a/src/oci/identity_data_plane/models/authentication_request.py +++ b/src/oci/identity_data_plane/models/authentication_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/authorization_request.py b/src/oci/identity_data_plane/models/authorization_request.py index 739c815e92..b9ff097497 100644 --- a/src/oci/identity_data_plane/models/authorization_request.py +++ b/src/oci/identity_data_plane/models/authorization_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/bad_user_state_authenticate_user_result.py b/src/oci/identity_data_plane/models/bad_user_state_authenticate_user_result.py index 6695e94528..518d4fbf9d 100644 --- a/src/oci/identity_data_plane/models/bad_user_state_authenticate_user_result.py +++ b/src/oci/identity_data_plane/models/bad_user_state_authenticate_user_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/claim.py b/src/oci/identity_data_plane/models/claim.py index f60486871e..c1c2078aaa 100644 --- a/src/oci/identity_data_plane/models/claim.py +++ b/src/oci/identity_data_plane/models/claim.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/client_credentials_response.py b/src/oci/identity_data_plane/models/client_credentials_response.py index 48c022b66b..3c7b24ba15 100644 --- a/src/oci/identity_data_plane/models/client_credentials_response.py +++ b/src/oci/identity_data_plane/models/client_credentials_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/common_principal.py b/src/oci/identity_data_plane/models/common_principal.py index 6511e305d3..14ea795e20 100644 --- a/src/oci/identity_data_plane/models/common_principal.py +++ b/src/oci/identity_data_plane/models/common_principal.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/compartment.py b/src/oci/identity_data_plane/models/compartment.py index 424baf9bea..61d8e79252 100644 --- a/src/oci/identity_data_plane/models/compartment.py +++ b/src/oci/identity_data_plane/models/compartment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/compartment_metadata.py b/src/oci/identity_data_plane/models/compartment_metadata.py index 4e80dfdf98..1a05ae45a6 100644 --- a/src/oci/identity_data_plane/models/compartment_metadata.py +++ b/src/oci/identity_data_plane/models/compartment_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/context_variable.py b/src/oci/identity_data_plane/models/context_variable.py index 340806d2f1..c9d16d05ab 100644 --- a/src/oci/identity_data_plane/models/context_variable.py +++ b/src/oci/identity_data_plane/models/context_variable.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/cost_tracking_tag.py b/src/oci/identity_data_plane/models/cost_tracking_tag.py index 22fa7d84d6..561e55fe5c 100644 --- a/src/oci/identity_data_plane/models/cost_tracking_tag.py +++ b/src/oci/identity_data_plane/models/cost_tracking_tag.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/credential_authenticator_info.py b/src/oci/identity_data_plane/models/credential_authenticator_info.py index a29302d0da..12daee6d24 100644 --- a/src/oci/identity_data_plane/models/credential_authenticator_info.py +++ b/src/oci/identity_data_plane/models/credential_authenticator_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/derived_key_response.py b/src/oci/identity_data_plane/models/derived_key_response.py index ba49f16327..21f8250920 100644 --- a/src/oci/identity_data_plane/models/derived_key_response.py +++ b/src/oci/identity_data_plane/models/derived_key_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/entity_status.py b/src/oci/identity_data_plane/models/entity_status.py index 33386da0ec..cd3e92fbf2 100644 --- a/src/oci/identity_data_plane/models/entity_status.py +++ b/src/oci/identity_data_plane/models/entity_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/filter_group_membership_details.py b/src/oci/identity_data_plane/models/filter_group_membership_details.py index a561c36fba..36ed8c1b70 100644 --- a/src/oci/identity_data_plane/models/filter_group_membership_details.py +++ b/src/oci/identity_data_plane/models/filter_group_membership_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/filter_group_membership_result.py b/src/oci/identity_data_plane/models/filter_group_membership_result.py index 72f8b969f7..549a84772f 100644 --- a/src/oci/identity_data_plane/models/filter_group_membership_result.py +++ b/src/oci/identity_data_plane/models/filter_group_membership_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/generate_scoped_access_token_details.py b/src/oci/identity_data_plane/models/generate_scoped_access_token_details.py index f4dc52dbef..6fb61db000 100644 --- a/src/oci/identity_data_plane/models/generate_scoped_access_token_details.py +++ b/src/oci/identity_data_plane/models/generate_scoped_access_token_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/identity_provider.py b/src/oci/identity_data_plane/models/identity_provider.py index 10e3a3b78d..65c5e4f061 100644 --- a/src/oci/identity_data_plane/models/identity_provider.py +++ b/src/oci/identity_data_plane/models/identity_provider.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/jwk.py b/src/oci/identity_data_plane/models/jwk.py index 10219d40d9..f531f5418b 100644 --- a/src/oci/identity_data_plane/models/jwk.py +++ b/src/oci/identity_data_plane/models/jwk.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/on_behalf_of_request.py b/src/oci/identity_data_plane/models/on_behalf_of_request.py index 5a22cc4464..9ebe8f0c56 100644 --- a/src/oci/identity_data_plane/models/on_behalf_of_request.py +++ b/src/oci/identity_data_plane/models/on_behalf_of_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/password_policy.py b/src/oci/identity_data_plane/models/password_policy.py index f8caa87cb6..7033f06400 100644 --- a/src/oci/identity_data_plane/models/password_policy.py +++ b/src/oci/identity_data_plane/models/password_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/password_reset_authentication_request.py b/src/oci/identity_data_plane/models/password_reset_authentication_request.py index 675bae8dce..be5b3780be 100644 --- a/src/oci/identity_data_plane/models/password_reset_authentication_request.py +++ b/src/oci/identity_data_plane/models/password_reset_authentication_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/permission.py b/src/oci/identity_data_plane/models/permission.py index 0cd529aa10..661e2c8356 100644 --- a/src/oci/identity_data_plane/models/permission.py +++ b/src/oci/identity_data_plane/models/permission.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/permission_context.py b/src/oci/identity_data_plane/models/permission_context.py index 4d49da5f25..bb1496c126 100644 --- a/src/oci/identity_data_plane/models/permission_context.py +++ b/src/oci/identity_data_plane/models/permission_context.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/principal.py b/src/oci/identity_data_plane/models/principal.py index c2a51f1eaa..a8b8ceffab 100644 --- a/src/oci/identity_data_plane/models/principal.py +++ b/src/oci/identity_data_plane/models/principal.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/refresh_request.py b/src/oci/identity_data_plane/models/refresh_request.py index 62b33be209..f64546b2b1 100644 --- a/src/oci/identity_data_plane/models/refresh_request.py +++ b/src/oci/identity_data_plane/models/refresh_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/resource_principal_session_token_request.py b/src/oci/identity_data_plane/models/resource_principal_session_token_request.py index de3e2bd814..6a39db63b0 100644 --- a/src/oci/identity_data_plane/models/resource_principal_session_token_request.py +++ b/src/oci/identity_data_plane/models/resource_principal_session_token_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/security_token.py b/src/oci/identity_data_plane/models/security_token.py index dad816fa85..9c22a8fe2f 100644 --- a/src/oci/identity_data_plane/models/security_token.py +++ b/src/oci/identity_data_plane/models/security_token.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/tenant.py b/src/oci/identity_data_plane/models/tenant.py index f5ff7e24a1..e0a862cc04 100644 --- a/src/oci/identity_data_plane/models/tenant.py +++ b/src/oci/identity_data_plane/models/tenant.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/tenant_not_found_authenticate_user_result.py b/src/oci/identity_data_plane/models/tenant_not_found_authenticate_user_result.py index 74649862c6..30633392ee 100644 --- a/src/oci/identity_data_plane/models/tenant_not_found_authenticate_user_result.py +++ b/src/oci/identity_data_plane/models/tenant_not_found_authenticate_user_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/thick_authorization_response.py b/src/oci/identity_data_plane/models/thick_authorization_response.py index 91f63755b1..aaa10941dc 100644 --- a/src/oci/identity_data_plane/models/thick_authorization_response.py +++ b/src/oci/identity_data_plane/models/thick_authorization_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/thin_association_authorization_response.py b/src/oci/identity_data_plane/models/thin_association_authorization_response.py index 506b9f6e0e..c154c3c01d 100644 --- a/src/oci/identity_data_plane/models/thin_association_authorization_response.py +++ b/src/oci/identity_data_plane/models/thin_association_authorization_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/thin_authorization_response.py b/src/oci/identity_data_plane/models/thin_authorization_response.py index 8787322ec4..37fc889fe9 100644 --- a/src/oci/identity_data_plane/models/thin_authorization_response.py +++ b/src/oci/identity_data_plane/models/thin_authorization_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/user.py b/src/oci/identity_data_plane/models/user.py index c76b30bc23..f82213afc6 100644 --- a/src/oci/identity_data_plane/models/user.py +++ b/src/oci/identity_data_plane/models/user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/user_not_found_authenticate_user_result.py b/src/oci/identity_data_plane/models/user_not_found_authenticate_user_result.py index 2d615b8125..35d900804e 100644 --- a/src/oci/identity_data_plane/models/user_not_found_authenticate_user_result.py +++ b/src/oci/identity_data_plane/models/user_not_found_authenticate_user_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/valid_authenticate_user_result.py b/src/oci/identity_data_plane/models/valid_authenticate_user_result.py index a5a94084a6..028df4e816 100644 --- a/src/oci/identity_data_plane/models/valid_authenticate_user_result.py +++ b/src/oci/identity_data_plane/models/valid_authenticate_user_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/identity_data_plane/models/x509_federation_request.py b/src/oci/identity_data_plane/models/x509_federation_request.py index bc71594e64..e2de3ff519 100644 --- a/src/oci/identity_data_plane/models/x509_federation_request.py +++ b/src/oci/identity_data_plane/models/x509_federation_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/integration/__init__.py b/src/oci/integration/__init__.py index 9ca97f3788..84af396f66 100644 --- a/src/oci/integration/__init__.py +++ b/src/oci/integration/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/integration/integration_instance_client.py b/src/oci/integration/integration_instance_client.py index e6616f3c2c..90142d9f78 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("integration_instance", config, signer, integration_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -135,6 +141,10 @@ def change_integration_instance_compartment(self, integration_instance_id, chang To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -146,6 +156,7 @@ def change_integration_instance_compartment(self, integration_instance_id, chang # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -238,6 +249,10 @@ def change_integration_instance_network_endpoint(self, integration_instance_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -249,6 +264,7 @@ def change_integration_instance_network_endpoint(self, integration_instance_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -330,6 +346,10 @@ def create_integration_instance(self, create_integration_instance_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -341,6 +361,7 @@ def create_integration_instance(self, create_integration_instance_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -407,6 +428,10 @@ def delete_integration_instance(self, integration_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -418,6 +443,7 @@ def delete_integration_instance(self, integration_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -486,6 +512,10 @@ def get_integration_instance(self, integration_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.integration.models.IntegrationInstance` :rtype: :class:`~oci.response.Response` @@ -497,6 +527,7 @@ def get_integration_instance(self, integration_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -565,6 +596,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.integration.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -576,6 +611,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -672,6 +708,10 @@ def list_integration_instances(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.integration.models.IntegrationInstanceSummary` :rtype: :class:`~oci.response.Response` @@ -683,6 +723,7 @@ def list_integration_instances(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "lifecycle_state", @@ -788,6 +829,10 @@ def list_work_request_errors(self, compartment_id, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.integration.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -799,6 +844,7 @@ def list_work_request_errors(self, compartment_id, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -887,6 +933,10 @@ def list_work_request_logs(self, compartment_id, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.integration.models.WorkRequestLogEntry` :rtype: :class:`~oci.response.Response` @@ -898,6 +948,7 @@ def list_work_request_logs(self, compartment_id, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -986,6 +1037,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.integration.models.WorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -997,6 +1052,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1081,6 +1137,10 @@ def start_integration_instance(self, integration_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1092,6 +1152,7 @@ def start_integration_instance(self, integration_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1178,6 +1239,10 @@ def stop_integration_instance(self, integration_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1189,6 +1254,7 @@ def stop_integration_instance(self, integration_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1270,6 +1336,10 @@ def update_integration_instance(self, integration_instance_id, update_integratio To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1281,6 +1351,7 @@ def update_integration_instance(self, integration_instance_id, update_integratio # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/integration/integration_instance_client_composite_operations.py b/src/oci/integration/integration_instance_client_composite_operations.py index 874bebb217..01b62d9989 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/integration/models/__init__.py b/src/oci/integration/models/__init__.py index 5a19015ebf..05e9066335 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 7d3b0f5bbf..abaf9eb661 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/integration/models/change_integration_instance_network_endpoint_details.py b/src/oci/integration/models/change_integration_instance_network_endpoint_details.py index c145c660c7..4aca8cb5cf 100644 --- a/src/oci/integration/models/change_integration_instance_network_endpoint_details.py +++ b/src/oci/integration/models/change_integration_instance_network_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/integration/models/create_custom_endpoint_details.py b/src/oci/integration/models/create_custom_endpoint_details.py index 99909f9dd5..38d3f4a8fb 100644 --- a/src/oci/integration/models/create_custom_endpoint_details.py +++ b/src/oci/integration/models/create_custom_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/integration/models/create_integration_instance_details.py b/src/oci/integration/models/create_integration_instance_details.py index 841e64e924..01854c6caf 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/integration/models/custom_endpoint_details.py b/src/oci/integration/models/custom_endpoint_details.py index 985fd5a013..40ebc1cc8a 100644 --- a/src/oci/integration/models/custom_endpoint_details.py +++ b/src/oci/integration/models/custom_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/integration/models/integration_instance.py b/src/oci/integration/models/integration_instance.py index cfc82e8b9e..8657540042 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/integration/models/integration_instance_summary.py b/src/oci/integration/models/integration_instance_summary.py index 2d54ec5d26..a40a7e5148 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/integration/models/network_endpoint_details.py b/src/oci/integration/models/network_endpoint_details.py index c8314cf6bc..c87dad9df2 100644 --- a/src/oci/integration/models/network_endpoint_details.py +++ b/src/oci/integration/models/network_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/integration/models/public_endpoint_details.py b/src/oci/integration/models/public_endpoint_details.py index e44d8a52b3..e4f139e456 100644 --- a/src/oci/integration/models/public_endpoint_details.py +++ b/src/oci/integration/models/public_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .network_endpoint_details import NetworkEndpointDetails diff --git a/src/oci/integration/models/update_custom_endpoint_details.py b/src/oci/integration/models/update_custom_endpoint_details.py index b3f264fa2f..9c5dbcc888 100644 --- a/src/oci/integration/models/update_custom_endpoint_details.py +++ b/src/oci/integration/models/update_custom_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/integration/models/update_integration_instance_details.py b/src/oci/integration/models/update_integration_instance_details.py index bc770d5896..c4ea47ce97 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/integration/models/virtual_cloud_network.py b/src/oci/integration/models/virtual_cloud_network.py index 82e7d7d53c..e5281e066a 100644 --- a/src/oci/integration/models/virtual_cloud_network.py +++ b/src/oci/integration/models/virtual_cloud_network.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/integration/models/work_request.py b/src/oci/integration/models/work_request.py index 4e62bc6991..89ec9a1573 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/integration/models/work_request_error.py b/src/oci/integration/models/work_request_error.py index df9d47be5a..afb0ed760a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/integration/models/work_request_log_entry.py b/src/oci/integration/models/work_request_log_entry.py index 9a0bc051df..e0c3beaaf7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/integration/models/work_request_resource.py b/src/oci/integration/models/work_request_resource.py index 6e895d56e5..4866e02b16 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/integration/models/work_request_summary.py b/src/oci/integration/models/work_request_summary.py index 443509a6c5..66908101c2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/__init__.py b/src/oci/jms/__init__.py index 4b549eea77..0aaa5d51dc 100644 --- a/src/oci/jms/__init__.py +++ b/src/oci/jms/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/jms/java_management_service_client.py b/src/oci/jms/java_management_service_client.py index e27d13318e..91f5b3ab92 100644 --- a/src/oci/jms/java_management_service_client.py +++ b/src/oci/jms/java_management_service_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("java_management_service", config, signer, jms_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -131,11 +137,15 @@ def change_fleet_compartment(self, fleet_id, change_fleet_compartment_details, * :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. - This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. + This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -147,6 +157,7 @@ def change_fleet_compartment(self, fleet_id, change_fleet_compartment_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -180,6 +191,8 @@ def change_fleet_compartment(self, fleet_id, change_fleet_compartment_details, * operation_retry_strategy=kwargs.get('retry_strategy'), client_retry_strategy=self.retry_strategy ) + if retry_strategy is None: + retry_strategy = retry.DEFAULT_RETRY_STRATEGY if retry_strategy: if not isinstance(retry_strategy, retry.NoneRetryStrategy): @@ -222,11 +235,15 @@ def create_fleet(self, create_fleet_details, **kwargs): :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. - This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. + This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -238,6 +255,7 @@ def create_fleet(self, create_fleet_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -259,6 +277,8 @@ def create_fleet(self, create_fleet_details, **kwargs): operation_retry_strategy=kwargs.get('retry_strategy'), client_retry_strategy=self.retry_strategy ) + if retry_strategy is None: + retry_strategy = retry.DEFAULT_RETRY_STRATEGY if retry_strategy: if not isinstance(retry_strategy, retry.NoneRetryStrategy): @@ -301,11 +321,15 @@ def delete_fleet(self, fleet_id, **kwargs): :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. - This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. + This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -317,6 +341,7 @@ def delete_fleet(self, fleet_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -348,6 +373,8 @@ def delete_fleet(self, fleet_id, **kwargs): operation_retry_strategy=kwargs.get('retry_strategy'), client_retry_strategy=self.retry_strategy ) + if retry_strategy is None: + retry_strategy = retry.DEFAULT_RETRY_STRATEGY if retry_strategy: if not isinstance(retry_strategy, retry.NoneRetryStrategy): @@ -382,11 +409,15 @@ def get_fleet(self, fleet_id, **kwargs): :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. - This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. + This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.jms.models.Fleet` :rtype: :class:`~oci.response.Response` @@ -398,6 +429,7 @@ def get_fleet(self, fleet_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -427,6 +459,8 @@ def get_fleet(self, fleet_id, **kwargs): operation_retry_strategy=kwargs.get('retry_strategy'), client_retry_strategy=self.retry_strategy ) + if retry_strategy is None: + retry_strategy = retry.DEFAULT_RETRY_STRATEGY if retry_strategy: if not isinstance(retry_strategy, retry.NoneRetryStrategy): @@ -463,11 +497,15 @@ def get_fleet_agent_configuration(self, fleet_id, **kwargs): :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. - This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. + This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.jms.models.FleetAgentConfiguration` :rtype: :class:`~oci.response.Response` @@ -479,6 +517,7 @@ def get_fleet_agent_configuration(self, fleet_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -508,6 +547,8 @@ def get_fleet_agent_configuration(self, fleet_id, **kwargs): operation_retry_strategy=kwargs.get('retry_strategy'), client_retry_strategy=self.retry_strategy ) + if retry_strategy is None: + retry_strategy = retry.DEFAULT_RETRY_STRATEGY if retry_strategy: if not isinstance(retry_strategy, retry.NoneRetryStrategy): @@ -544,11 +585,15 @@ def get_work_request(self, work_request_id, **kwargs): :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. - This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. + This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.jms.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -560,6 +605,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -589,6 +635,8 @@ def get_work_request(self, work_request_id, **kwargs): operation_retry_strategy=kwargs.get('retry_strategy'), client_retry_strategy=self.retry_strategy ) + if retry_strategy is None: + retry_strategy = retry.DEFAULT_RETRY_STRATEGY if retry_strategy: if not isinstance(retry_strategy, retry.NoneRetryStrategy): @@ -657,11 +705,15 @@ def list_fleets(self, **kwargs): :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. - This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. + This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.jms.models.FleetCollection` :rtype: :class:`~oci.response.Response` @@ -673,6 +725,7 @@ def list_fleets(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "id", @@ -733,6 +786,8 @@ def list_fleets(self, **kwargs): operation_retry_strategy=kwargs.get('retry_strategy'), client_retry_strategy=self.retry_strategy ) + if retry_strategy is None: + retry_strategy = retry.DEFAULT_RETRY_STRATEGY if retry_strategy: if not isinstance(retry_strategy, retry.NoneRetryStrategy): @@ -811,11 +866,15 @@ def list_jre_usage(self, **kwargs): :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. - This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. + This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.jms.models.JreUsageCollection` :rtype: :class:`~oci.response.Response` @@ -827,6 +886,7 @@ def list_jre_usage(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "host_id", @@ -884,6 +944,8 @@ def list_jre_usage(self, **kwargs): operation_retry_strategy=kwargs.get('retry_strategy'), client_retry_strategy=self.retry_strategy ) + if retry_strategy is None: + retry_strategy = retry.DEFAULT_RETRY_STRATEGY if retry_strategy: if not isinstance(retry_strategy, retry.NoneRetryStrategy): @@ -926,11 +988,15 @@ def list_work_request_errors(self, work_request_id, **kwargs): :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. - This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. + This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.jms.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -942,6 +1008,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -979,6 +1046,8 @@ def list_work_request_errors(self, work_request_id, **kwargs): operation_retry_strategy=kwargs.get('retry_strategy'), client_retry_strategy=self.retry_strategy ) + if retry_strategy is None: + retry_strategy = retry.DEFAULT_RETRY_STRATEGY if retry_strategy: if not isinstance(retry_strategy, retry.NoneRetryStrategy): @@ -1023,11 +1092,15 @@ def list_work_request_logs(self, work_request_id, **kwargs): :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. - This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. + This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.jms.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -1039,6 +1112,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1076,6 +1150,8 @@ def list_work_request_logs(self, work_request_id, **kwargs): operation_retry_strategy=kwargs.get('retry_strategy'), client_retry_strategy=self.retry_strategy ) + if retry_strategy is None: + retry_strategy = retry.DEFAULT_RETRY_STRATEGY if retry_strategy: if not isinstance(retry_strategy, retry.NoneRetryStrategy): @@ -1123,11 +1199,15 @@ def list_work_requests(self, **kwargs): :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. - This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. + This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.jms.models.WorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -1139,6 +1219,7 @@ def list_work_requests(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "id", @@ -1170,6 +1251,8 @@ def list_work_requests(self, **kwargs): operation_retry_strategy=kwargs.get('retry_strategy'), client_retry_strategy=self.retry_strategy ) + if retry_strategy is None: + retry_strategy = retry.DEFAULT_RETRY_STRATEGY if retry_strategy: if not isinstance(retry_strategy, retry.NoneRetryStrategy): @@ -1272,11 +1355,15 @@ def summarize_application_usage(self, fleet_id, **kwargs): :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. - This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. + This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.jms.models.ApplicationUsageCollection` :rtype: :class:`~oci.response.Response` @@ -1288,6 +1375,7 @@ def summarize_application_usage(self, fleet_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "application_id", "display_name", @@ -1383,6 +1471,8 @@ def summarize_application_usage(self, fleet_id, **kwargs): operation_retry_strategy=kwargs.get('retry_strategy'), client_retry_strategy=self.retry_strategy ) + if retry_strategy is None: + retry_strategy = retry.DEFAULT_RETRY_STRATEGY if retry_strategy: if not isinstance(retry_strategy, retry.NoneRetryStrategy): @@ -1480,11 +1570,15 @@ def summarize_installation_usage(self, fleet_id, **kwargs): :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. - This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. + This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.jms.models.InstallationUsageCollection` :rtype: :class:`~oci.response.Response` @@ -1496,6 +1590,7 @@ def summarize_installation_usage(self, fleet_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "jre_vendor", "jre_distribution", @@ -1587,6 +1682,8 @@ def summarize_installation_usage(self, fleet_id, **kwargs): operation_retry_strategy=kwargs.get('retry_strategy'), client_retry_strategy=self.retry_strategy ) + if retry_strategy is None: + retry_strategy = retry.DEFAULT_RETRY_STRATEGY if retry_strategy: if not isinstance(retry_strategy, retry.NoneRetryStrategy): @@ -1688,11 +1785,15 @@ def summarize_jre_usage(self, fleet_id, **kwargs): :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. - This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. + This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.jms.models.JreUsageCollection` :rtype: :class:`~oci.response.Response` @@ -1704,6 +1805,7 @@ def summarize_jre_usage(self, fleet_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "jre_vendor", "jre_distribution", @@ -1802,6 +1904,8 @@ def summarize_jre_usage(self, fleet_id, **kwargs): operation_retry_strategy=kwargs.get('retry_strategy'), client_retry_strategy=self.retry_strategy ) + if retry_strategy is None: + retry_strategy = retry.DEFAULT_RETRY_STRATEGY if retry_strategy: if not isinstance(retry_strategy, retry.NoneRetryStrategy): @@ -1905,11 +2009,15 @@ def summarize_managed_instance_usage(self, fleet_id, **kwargs): :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. - This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. + This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.jms.models.ManagedInstanceUsageCollection` :rtype: :class:`~oci.response.Response` @@ -1921,6 +2029,7 @@ def summarize_managed_instance_usage(self, fleet_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "managed_instance_id", "managed_instance_type", @@ -2021,6 +2130,8 @@ def summarize_managed_instance_usage(self, fleet_id, **kwargs): operation_retry_strategy=kwargs.get('retry_strategy'), client_retry_strategy=self.retry_strategy ) + if retry_strategy is None: + retry_strategy = retry.DEFAULT_RETRY_STRATEGY if retry_strategy: if not isinstance(retry_strategy, retry.NoneRetryStrategy): @@ -2069,11 +2180,15 @@ def summarize_resource_inventory(self, **kwargs): :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. - This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. + This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.jms.models.ResourceInventory` :rtype: :class:`~oci.response.Response` @@ -2085,6 +2200,7 @@ def summarize_resource_inventory(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "time_start", @@ -2114,6 +2230,8 @@ def summarize_resource_inventory(self, **kwargs): operation_retry_strategy=kwargs.get('retry_strategy'), client_retry_strategy=self.retry_strategy ) + if retry_strategy is None: + retry_strategy = retry.DEFAULT_RETRY_STRATEGY if retry_strategy: if not isinstance(retry_strategy, retry.NoneRetryStrategy): @@ -2160,11 +2278,15 @@ def update_fleet(self, fleet_id, update_fleet_details, **kwargs): :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. - This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. + This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2176,6 +2298,7 @@ def update_fleet(self, fleet_id, update_fleet_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2207,6 +2330,8 @@ def update_fleet(self, fleet_id, update_fleet_details, **kwargs): operation_retry_strategy=kwargs.get('retry_strategy'), client_retry_strategy=self.retry_strategy ) + if retry_strategy is None: + retry_strategy = retry.DEFAULT_RETRY_STRATEGY if retry_strategy: if not isinstance(retry_strategy, retry.NoneRetryStrategy): @@ -2253,11 +2378,15 @@ def update_fleet_agent_configuration(self, fleet_id, update_fleet_agent_configur :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. - This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. + This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2269,6 +2398,7 @@ def update_fleet_agent_configuration(self, fleet_id, update_fleet_agent_configur # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2300,6 +2430,8 @@ def update_fleet_agent_configuration(self, fleet_id, update_fleet_agent_configur operation_retry_strategy=kwargs.get('retry_strategy'), client_retry_strategy=self.retry_strategy ) + if retry_strategy is None: + retry_strategy = retry.DEFAULT_RETRY_STRATEGY if retry_strategy: if not isinstance(retry_strategy, retry.NoneRetryStrategy): diff --git a/src/oci/jms/java_management_service_client_composite_operations.py b/src/oci/jms/java_management_service_client_composite_operations.py index 90c3f03999..b0d060e20d 100644 --- a/src/oci/jms/java_management_service_client_composite_operations.py +++ b/src/oci/jms/java_management_service_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/jms/models/__init__.py b/src/oci/jms/models/__init__.py index 8fbcb656c0..5579611772 100644 --- a/src/oci/jms/models/__init__.py +++ b/src/oci/jms/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/jms/models/application_usage.py b/src/oci/jms/models/application_usage.py index 85a0e02484..85b48950ea 100644 --- a/src/oci/jms/models/application_usage.py +++ b/src/oci/jms/models/application_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -277,7 +277,7 @@ def approximate_managed_instance_count(self, approximate_managed_instance_count) def time_start(self): """ Gets the time_start of this ApplicationUsage. - Lower bound of the specified time period filter. + Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter. :return: The time_start of this ApplicationUsage. @@ -289,7 +289,7 @@ def time_start(self): def time_start(self, time_start): """ Sets the time_start of this ApplicationUsage. - Lower bound of the specified time period filter. + Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter. :param time_start: The time_start of this ApplicationUsage. @@ -301,7 +301,7 @@ def time_start(self, time_start): def time_end(self): """ Gets the time_end of this ApplicationUsage. - Upper bound of the specified time period filter. + Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter. :return: The time_end of this ApplicationUsage. @@ -313,7 +313,7 @@ def time_end(self): def time_end(self, time_end): """ Sets the time_end of this ApplicationUsage. - Upper bound of the specified time period filter. + Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter. :param time_end: The time_end of this ApplicationUsage. diff --git a/src/oci/jms/models/application_usage_collection.py b/src/oci/jms/models/application_usage_collection.py index b633271596..af11eff879 100644 --- a/src/oci/jms/models/application_usage_collection.py +++ b/src/oci/jms/models/application_usage_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/change_fleet_compartment_details.py b/src/oci/jms/models/change_fleet_compartment_details.py index 70c78f331d..d9692f58dd 100644 --- a/src/oci/jms/models/change_fleet_compartment_details.py +++ b/src/oci/jms/models/change_fleet_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/create_fleet_details.py b/src/oci/jms/models/create_fleet_details.py index 2611b4c3cd..a8222a08c8 100644 --- a/src/oci/jms/models/create_fleet_details.py +++ b/src/oci/jms/models/create_fleet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/fleet.py b/src/oci/jms/models/fleet.py index c218a0d8ef..5b015ce6e2 100644 --- a/src/oci/jms/models/fleet.py +++ b/src/oci/jms/models/fleet.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/fleet_agent_configuration.py b/src/oci/jms/models/fleet_agent_configuration.py index 4b25cb13ac..70ef749704 100644 --- a/src/oci/jms/models/fleet_agent_configuration.py +++ b/src/oci/jms/models/fleet_agent_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/fleet_agent_os_configuration.py b/src/oci/jms/models/fleet_agent_os_configuration.py index e3a5bb443b..302c3281ad 100644 --- a/src/oci/jms/models/fleet_agent_os_configuration.py +++ b/src/oci/jms/models/fleet_agent_os_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/fleet_collection.py b/src/oci/jms/models/fleet_collection.py index c389080780..dc4f683f83 100644 --- a/src/oci/jms/models/fleet_collection.py +++ b/src/oci/jms/models/fleet_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/fleet_summary.py b/src/oci/jms/models/fleet_summary.py index 1d29eb1515..9227434b05 100644 --- a/src/oci/jms/models/fleet_summary.py +++ b/src/oci/jms/models/fleet_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/installation_usage.py b/src/oci/jms/models/installation_usage.py index dd5279061e..7d6df0f616 100644 --- a/src/oci/jms/models/installation_usage.py +++ b/src/oci/jms/models/installation_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -334,7 +334,7 @@ def approximate_managed_instance_count(self, approximate_managed_instance_count) def time_start(self): """ Gets the time_start of this InstallationUsage. - Lower bound of the specified time period filter. + Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter. :return: The time_start of this InstallationUsage. @@ -346,7 +346,7 @@ def time_start(self): def time_start(self, time_start): """ Sets the time_start of this InstallationUsage. - Lower bound of the specified time period filter. + Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter. :param time_start: The time_start of this InstallationUsage. @@ -358,7 +358,7 @@ def time_start(self, time_start): def time_end(self): """ Gets the time_end of this InstallationUsage. - Upper bound of the specified time period filter. + Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter. :return: The time_end of this InstallationUsage. @@ -370,7 +370,7 @@ def time_end(self): def time_end(self, time_end): """ Sets the time_end of this InstallationUsage. - Upper bound of the specified time period filter. + Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter. :param time_end: The time_end of this InstallationUsage. diff --git a/src/oci/jms/models/installation_usage_collection.py b/src/oci/jms/models/installation_usage_collection.py index 5d057a0ed1..41ffebc30e 100644 --- a/src/oci/jms/models/installation_usage_collection.py +++ b/src/oci/jms/models/installation_usage_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/jre_usage.py b/src/oci/jms/models/jre_usage.py index 4fd5588741..7909b318d3 100644 --- a/src/oci/jms/models/jre_usage.py +++ b/src/oci/jms/models/jre_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -501,7 +501,7 @@ def approximate_managed_instance_count(self, approximate_managed_instance_count) def time_start(self): """ Gets the time_start of this JreUsage. - Lower bound of the specified time period filter. + Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter. :return: The time_start of this JreUsage. @@ -513,7 +513,7 @@ def time_start(self): def time_start(self, time_start): """ Sets the time_start of this JreUsage. - Lower bound of the specified time period filter. + Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter. :param time_start: The time_start of this JreUsage. @@ -525,7 +525,7 @@ def time_start(self, time_start): def time_end(self): """ Gets the time_end of this JreUsage. - Upper bound of the specified time period filter. + Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter. :return: The time_end of this JreUsage. @@ -537,7 +537,7 @@ def time_end(self): def time_end(self, time_end): """ Sets the time_end of this JreUsage. - Upper bound of the specified time period filter. + Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter. :param time_end: The time_end of this JreUsage. diff --git a/src/oci/jms/models/jre_usage_collection.py b/src/oci/jms/models/jre_usage_collection.py index eca2489167..7c2b7d680b 100644 --- a/src/oci/jms/models/jre_usage_collection.py +++ b/src/oci/jms/models/jre_usage_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/managed_instance_usage.py b/src/oci/jms/models/managed_instance_usage.py index 6b47694017..d8ce2f67e0 100644 --- a/src/oci/jms/models/managed_instance_usage.py +++ b/src/oci/jms/models/managed_instance_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -325,7 +325,7 @@ def approximate_jre_count(self, approximate_jre_count): def time_start(self): """ Gets the time_start of this ManagedInstanceUsage. - Lower bound of the specified time period filter. + Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter. :return: The time_start of this ManagedInstanceUsage. @@ -337,7 +337,7 @@ def time_start(self): def time_start(self, time_start): """ Sets the time_start of this ManagedInstanceUsage. - Lower bound of the specified time period filter. + Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter. :param time_start: The time_start of this ManagedInstanceUsage. @@ -349,7 +349,7 @@ def time_start(self, time_start): def time_end(self): """ Gets the time_end of this ManagedInstanceUsage. - Upper bound of the specified time period filter. + Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter. :return: The time_end of this ManagedInstanceUsage. @@ -361,7 +361,7 @@ def time_end(self): def time_end(self, time_end): """ Sets the time_end of this ManagedInstanceUsage. - Upper bound of the specified time period filter. + Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter. :param time_end: The time_end of this ManagedInstanceUsage. diff --git a/src/oci/jms/models/managed_instance_usage_collection.py b/src/oci/jms/models/managed_instance_usage_collection.py index d21acf3fa6..f2ae131afc 100644 --- a/src/oci/jms/models/managed_instance_usage_collection.py +++ b/src/oci/jms/models/managed_instance_usage_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/operating_system.py b/src/oci/jms/models/operating_system.py index 683463b567..13181eebe3 100644 --- a/src/oci/jms/models/operating_system.py +++ b/src/oci/jms/models/operating_system.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/request_summarized_application_usage_details.py b/src/oci/jms/models/request_summarized_application_usage_details.py index 52d43c0e6e..31f7a2f288 100644 --- a/src/oci/jms/models/request_summarized_application_usage_details.py +++ b/src/oci/jms/models/request_summarized_application_usage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/request_summarized_installation_usage_details.py b/src/oci/jms/models/request_summarized_installation_usage_details.py index 6160c0282b..5819cb8a8f 100644 --- a/src/oci/jms/models/request_summarized_installation_usage_details.py +++ b/src/oci/jms/models/request_summarized_installation_usage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/request_summarized_jre_usage_details.py b/src/oci/jms/models/request_summarized_jre_usage_details.py index 2391c5b5ef..d02e7c8180 100644 --- a/src/oci/jms/models/request_summarized_jre_usage_details.py +++ b/src/oci/jms/models/request_summarized_jre_usage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/request_summarized_managed_instance_usage_details.py b/src/oci/jms/models/request_summarized_managed_instance_usage_details.py index e842adb196..9fccdd8b88 100644 --- a/src/oci/jms/models/request_summarized_managed_instance_usage_details.py +++ b/src/oci/jms/models/request_summarized_managed_instance_usage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/resource_inventory.py b/src/oci/jms/models/resource_inventory.py index cbd0cdd619..a17366eb98 100644 --- a/src/oci/jms/models/resource_inventory.py +++ b/src/oci/jms/models/resource_inventory.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/update_fleet_agent_configuration_details.py b/src/oci/jms/models/update_fleet_agent_configuration_details.py index 280f0bd895..7827aa0d37 100644 --- a/src/oci/jms/models/update_fleet_agent_configuration_details.py +++ b/src/oci/jms/models/update_fleet_agent_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/update_fleet_details.py b/src/oci/jms/models/update_fleet_details.py index 9a33d35005..9160ecfec7 100644 --- a/src/oci/jms/models/update_fleet_details.py +++ b/src/oci/jms/models/update_fleet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/work_request.py b/src/oci/jms/models/work_request.py index ba8f1b53fb..7fa5d66bf3 100644 --- a/src/oci/jms/models/work_request.py +++ b/src/oci/jms/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/work_request_collection.py b/src/oci/jms/models/work_request_collection.py index ea9ecc5f79..5a20dab707 100644 --- a/src/oci/jms/models/work_request_collection.py +++ b/src/oci/jms/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/work_request_error.py b/src/oci/jms/models/work_request_error.py index fd4eebb3b6..66a43b4c32 100644 --- a/src/oci/jms/models/work_request_error.py +++ b/src/oci/jms/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/work_request_error_collection.py b/src/oci/jms/models/work_request_error_collection.py index b7849c4b96..b559c335e9 100644 --- a/src/oci/jms/models/work_request_error_collection.py +++ b/src/oci/jms/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/work_request_log_entry.py b/src/oci/jms/models/work_request_log_entry.py index 5d04dbe769..77748fdb47 100644 --- a/src/oci/jms/models/work_request_log_entry.py +++ b/src/oci/jms/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/work_request_log_entry_collection.py b/src/oci/jms/models/work_request_log_entry_collection.py index d5c22c2e5f..060b5ee73b 100644 --- a/src/oci/jms/models/work_request_log_entry_collection.py +++ b/src/oci/jms/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/jms/models/work_request_resource.py b/src/oci/jms/models/work_request_resource.py index 6bfe7eebd4..4eef7e0287 100644 --- a/src/oci/jms/models/work_request_resource.py +++ b/src/oci/jms/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/__init__.py b/src/oci/key_management/__init__.py index cf2ab0fb47..fdf4269865 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 cf6b1dfd0a..89f12671ed 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -63,6 +63,10 @@ def __init__(self, config, service_endpoint, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -93,6 +97,8 @@ def __init__(self, config, service_endpoint, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("kms_crypto", config, signer, key_management_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -120,6 +126,10 @@ def decrypt(self, decrypt_data_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.DecryptedData` :rtype: :class:`~oci.response.Response` @@ -131,6 +141,7 @@ def decrypt(self, decrypt_data_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -194,6 +205,10 @@ def encrypt(self, encrypt_data_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.EncryptedData` :rtype: :class:`~oci.response.Response` @@ -205,6 +220,7 @@ def encrypt(self, encrypt_data_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -262,6 +278,10 @@ def export_key(self, export_key_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.ExportedKeyData` :rtype: :class:`~oci.response.Response` @@ -327,6 +347,10 @@ def generate_data_encryption_key(self, generate_key_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.GeneratedKey` :rtype: :class:`~oci.response.Response` @@ -338,6 +362,7 @@ def generate_data_encryption_key(self, generate_key_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -402,6 +427,10 @@ def sign(self, sign_data_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.SignedData` :rtype: :class:`~oci.response.Response` @@ -413,6 +442,7 @@ def sign(self, sign_data_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -477,6 +507,10 @@ def verify(self, verify_data_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.VerifiedData` :rtype: :class:`~oci.response.Response` @@ -488,6 +522,7 @@ def verify(self, verify_data_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] 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 162893446f..a3a9e9c99b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/key_management/kms_management_client.py b/src/oci/key_management/kms_management_client.py index acd30df62d..4a9b7ea803 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, service_endpoint, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, service_endpoint, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("kms_management", config, signer, key_management_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -138,6 +144,10 @@ def backup_key(self, key_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.Key` :rtype: :class:`~oci.response.Response` @@ -149,6 +159,7 @@ def backup_key(self, key_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -249,6 +260,10 @@ def cancel_key_deletion(self, key_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.Key` :rtype: :class:`~oci.response.Response` @@ -260,6 +275,7 @@ def cancel_key_deletion(self, key_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -360,6 +376,10 @@ def cancel_key_version_deletion(self, key_id, key_version_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.KeyVersion` :rtype: :class:`~oci.response.Response` @@ -371,6 +391,7 @@ def cancel_key_version_deletion(self, key_id, key_version_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -474,6 +495,10 @@ def change_key_compartment(self, key_id, change_key_compartment_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -485,6 +510,7 @@ def change_key_compartment(self, key_id, change_key_compartment_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -573,6 +599,10 @@ def create_key(self, create_key_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.Key` :rtype: :class:`~oci.response.Response` @@ -584,6 +614,7 @@ def create_key(self, create_key_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -663,6 +694,10 @@ def create_key_version(self, key_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.KeyVersion` :rtype: :class:`~oci.response.Response` @@ -674,6 +709,7 @@ def create_key_version(self, key_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -768,6 +804,10 @@ def disable_key(self, key_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.Key` :rtype: :class:`~oci.response.Response` @@ -779,6 +819,7 @@ def disable_key(self, key_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -875,6 +916,10 @@ def enable_key(self, key_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.Key` :rtype: :class:`~oci.response.Response` @@ -886,6 +931,7 @@ def enable_key(self, key_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -966,6 +1012,10 @@ def get_key(self, key_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.Key` :rtype: :class:`~oci.response.Response` @@ -977,6 +1027,7 @@ def get_key(self, key_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1055,6 +1106,10 @@ def get_key_version(self, key_id, key_version_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.KeyVersion` :rtype: :class:`~oci.response.Response` @@ -1066,6 +1121,7 @@ def get_key_version(self, key_id, key_version_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1140,6 +1196,10 @@ def get_replication_status(self, replication_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.ReplicationStatusDetails` :rtype: :class:`~oci.response.Response` @@ -1151,6 +1211,7 @@ def get_replication_status(self, replication_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1219,6 +1280,10 @@ def get_wrapping_key(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.WrappingKey` :rtype: :class:`~oci.response.Response` @@ -1230,6 +1295,7 @@ def get_wrapping_key(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1298,6 +1364,10 @@ def import_key(self, import_key_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.Key` :rtype: :class:`~oci.response.Response` @@ -1309,6 +1379,7 @@ def import_key(self, import_key_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1387,6 +1458,10 @@ def import_key_version(self, key_id, import_key_version_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.KeyVersion` :rtype: :class:`~oci.response.Response` @@ -1398,6 +1473,7 @@ def import_key_version(self, key_id, import_key_version_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1500,6 +1576,10 @@ def list_key_versions(self, key_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.key_management.models.KeyVersionSummary` :rtype: :class:`~oci.response.Response` @@ -1511,6 +1591,7 @@ def list_key_versions(self, key_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -1655,6 +1736,10 @@ def list_keys(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.key_management.models.KeySummary` :rtype: :class:`~oci.response.Response` @@ -1666,6 +1751,7 @@ def list_keys(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -1810,6 +1896,10 @@ def restore_key_from_file(self, restore_key_from_file_details, **kwargs): The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings :param int buffer_limit: (optional) A buffer limit for the stream to be buffered. buffer_limit is used to set the buffer size capacity. Streams will be read until the size of the buffer reaches the buffer_limit. If the stream size is greater than the buffer_limit, a BufferError exception will be thrown. @@ -1829,6 +1919,7 @@ def restore_key_from_file(self, restore_key_from_file_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "buffer_limit", "content_length", @@ -1936,6 +2027,10 @@ def restore_key_from_object_store(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.Key` :rtype: :class:`~oci.response.Response` @@ -1947,6 +2042,7 @@ def restore_key_from_object_store(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2037,6 +2133,10 @@ def schedule_key_deletion(self, key_id, schedule_key_deletion_details, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.Key` :rtype: :class:`~oci.response.Response` @@ -2048,6 +2148,7 @@ def schedule_key_deletion(self, key_id, schedule_key_deletion_details, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2152,6 +2253,10 @@ def schedule_key_version_deletion(self, key_id, key_version_id, schedule_key_ver To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.KeyVersion` :rtype: :class:`~oci.response.Response` @@ -2163,6 +2268,7 @@ def schedule_key_version_deletion(self, key_id, key_version_id, schedule_key_ver # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2258,6 +2364,10 @@ def update_key(self, key_id, update_key_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.Key` :rtype: :class:`~oci.response.Response` @@ -2269,6 +2379,7 @@ def update_key(self, key_id, update_key_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" 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 a088586530..e9b59f9bbc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/key_management/kms_vault_client.py b/src/oci/key_management/kms_vault_client.py index 8ac4e60e4f..85b5145966 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -66,6 +66,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -96,6 +100,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("kms_vault", config, signer, key_management_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -141,6 +147,10 @@ def backup_vault(self, vault_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.Vault` :rtype: :class:`~oci.response.Response` @@ -152,6 +162,7 @@ def backup_vault(self, vault_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -253,6 +264,10 @@ def cancel_vault_deletion(self, vault_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.Vault` :rtype: :class:`~oci.response.Response` @@ -264,6 +279,7 @@ def cancel_vault_deletion(self, vault_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -366,6 +382,10 @@ def change_vault_compartment(self, vault_id, change_vault_compartment_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -377,6 +397,7 @@ def change_vault_compartment(self, vault_id, change_vault_compartment_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -468,6 +489,10 @@ def create_vault(self, create_vault_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.Vault` :rtype: :class:`~oci.response.Response` @@ -479,6 +504,7 @@ def create_vault(self, create_vault_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -569,6 +595,10 @@ def create_vault_replica(self, vault_id, create_vault_replica_details, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -580,6 +610,7 @@ def create_vault_replica(self, vault_id, create_vault_replica_details, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -678,6 +709,10 @@ def delete_vault_replica(self, vault_id, delete_vault_replica_details, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -689,6 +724,7 @@ def delete_vault_replica(self, vault_id, delete_vault_replica_details, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -769,6 +805,10 @@ def get_vault(self, vault_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.Vault` :rtype: :class:`~oci.response.Response` @@ -780,6 +820,7 @@ def get_vault(self, vault_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -850,6 +891,10 @@ def get_vault_usage(self, vault_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.VaultUsage` :rtype: :class:`~oci.response.Response` @@ -861,6 +906,7 @@ def get_vault_usage(self, vault_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -970,6 +1016,10 @@ def list_vault_replicas(self, vault_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.key_management.models.VaultReplicaSummary` :rtype: :class:`~oci.response.Response` @@ -981,6 +1031,7 @@ def list_vault_replicas(self, vault_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "limit", @@ -1108,6 +1159,10 @@ def list_vaults(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.key_management.models.VaultSummary` :rtype: :class:`~oci.response.Response` @@ -1119,6 +1174,7 @@ def list_vaults(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -1237,6 +1293,10 @@ def restore_vault_from_file(self, compartment_id, restore_vault_from_file_detail The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings :param int buffer_limit: (optional) A buffer limit for the stream to be buffered. buffer_limit is used to set the buffer size capacity. Streams will be read until the size of the buffer reaches the buffer_limit. If the stream size is greater than the buffer_limit, a BufferError exception will be thrown. @@ -1256,6 +1316,7 @@ def restore_vault_from_file(self, compartment_id, restore_vault_from_file_detail # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "buffer_limit", "content_length", @@ -1373,6 +1434,10 @@ def restore_vault_from_object_store(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.Vault` :rtype: :class:`~oci.response.Response` @@ -1384,6 +1449,7 @@ def restore_vault_from_object_store(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1484,6 +1550,10 @@ def schedule_vault_deletion(self, vault_id, schedule_vault_deletion_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.Vault` :rtype: :class:`~oci.response.Response` @@ -1495,6 +1565,7 @@ def schedule_vault_deletion(self, vault_id, schedule_vault_deletion_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1589,6 +1660,10 @@ def update_vault(self, vault_id, update_vault_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.key_management.models.Vault` :rtype: :class:`~oci.response.Response` @@ -1600,6 +1675,7 @@ def update_vault(self, vault_id, update_vault_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" 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 a2a05a3156..3075e43bdb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/key_management/models/__init__.py b/src/oci/key_management/models/__init__.py index 0b8d1dfb39..c95847534e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/key_management/models/backup_key_details.py b/src/oci/key_management/models/backup_key_details.py index a3f019982b..3d84a7f54a 100644 --- a/src/oci/key_management/models/backup_key_details.py +++ b/src/oci/key_management/models/backup_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/backup_location.py b/src/oci/key_management/models/backup_location.py index 249b1f9e5b..7838e7b934 100644 --- a/src/oci/key_management/models/backup_location.py +++ b/src/oci/key_management/models/backup_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/backup_location_bucket.py b/src/oci/key_management/models/backup_location_bucket.py index f89d5895af..0d8aa61031 100644 --- a/src/oci/key_management/models/backup_location_bucket.py +++ b/src/oci/key_management/models/backup_location_bucket.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .backup_location import BackupLocation diff --git a/src/oci/key_management/models/backup_location_uri.py b/src/oci/key_management/models/backup_location_uri.py index 93960284d3..c143b276c3 100644 --- a/src/oci/key_management/models/backup_location_uri.py +++ b/src/oci/key_management/models/backup_location_uri.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .backup_location import BackupLocation diff --git a/src/oci/key_management/models/backup_vault_details.py b/src/oci/key_management/models/backup_vault_details.py index 90ac4169fb..57ed3c14f5 100644 --- a/src/oci/key_management/models/backup_vault_details.py +++ b/src/oci/key_management/models/backup_vault_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 3044f33bfe..12dc1aac10 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 3efb0cf73b..52e0185be8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/create_key_details.py b/src/oci/key_management/models/create_key_details.py index 89d1d8e1f5..2abf4fb7e7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/create_vault_details.py b/src/oci/key_management/models/create_vault_details.py index 7129887cfb..687ccb9429 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/create_vault_replica_details.py b/src/oci/key_management/models/create_vault_replica_details.py index c75f9551be..7369924059 100644 --- a/src/oci/key_management/models/create_vault_replica_details.py +++ b/src/oci/key_management/models/create_vault_replica_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/decrypt_data_details.py b/src/oci/key_management/models/decrypt_data_details.py index fbe9e268fa..b7e7db0d09 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/decrypted_data.py b/src/oci/key_management/models/decrypted_data.py index 69cb11af0a..544d47d944 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/delete_vault_replica_details.py b/src/oci/key_management/models/delete_vault_replica_details.py index d2b69b5221..edb0d9cb70 100644 --- a/src/oci/key_management/models/delete_vault_replica_details.py +++ b/src/oci/key_management/models/delete_vault_replica_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/encrypt_data_details.py b/src/oci/key_management/models/encrypt_data_details.py index a1b2a588d7..67078edf2b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/encrypted_data.py b/src/oci/key_management/models/encrypted_data.py index 98886ac813..be49bbe057 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/export_key_details.py b/src/oci/key_management/models/export_key_details.py index 81ed03f4b5..719c2b602f 100644 --- a/src/oci/key_management/models/export_key_details.py +++ b/src/oci/key_management/models/export_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/exported_key_data.py b/src/oci/key_management/models/exported_key_data.py index c665738671..36bdc55978 100644 --- a/src/oci/key_management/models/exported_key_data.py +++ b/src/oci/key_management/models/exported_key_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/generate_key_details.py b/src/oci/key_management/models/generate_key_details.py index d538bf5583..297211ad60 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/generated_key.py b/src/oci/key_management/models/generated_key.py index 59ac3f69dd..6ef35c13cd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/import_key_details.py b/src/oci/key_management/models/import_key_details.py index da61d38cd7..8b8f03a162 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 b72caecbfb..4d13085fd8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/key.py b/src/oci/key_management/models/key.py index 1d5501a8d2..9c5a9bb8ee 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/key_replica_details.py b/src/oci/key_management/models/key_replica_details.py index 50524ab6a2..0dc2b21ee0 100644 --- a/src/oci/key_management/models/key_replica_details.py +++ b/src/oci/key_management/models/key_replica_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/key_shape.py b/src/oci/key_management/models/key_shape.py index f8f11750bb..69fda45884 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/key_summary.py b/src/oci/key_management/models/key_summary.py index 7ef77ea6f3..b76a7974a4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/key_version.py b/src/oci/key_management/models/key_version.py index 443a72d234..aefad4bfb0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/key_version_replica_details.py b/src/oci/key_management/models/key_version_replica_details.py index d5cc43ad4a..c05fd2c3a5 100644 --- a/src/oci/key_management/models/key_version_replica_details.py +++ b/src/oci/key_management/models/key_version_replica_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/key_version_summary.py b/src/oci/key_management/models/key_version_summary.py index dde3b472eb..09bdbb446a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/replica_details.py b/src/oci/key_management/models/replica_details.py index 8cf04648c4..68d0aba2fb 100644 --- a/src/oci/key_management/models/replica_details.py +++ b/src/oci/key_management/models/replica_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/replication_status_details.py b/src/oci/key_management/models/replication_status_details.py index 5669462bb2..e97b6094ba 100644 --- a/src/oci/key_management/models/replication_status_details.py +++ b/src/oci/key_management/models/replication_status_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/restore_key_from_object_store_details.py b/src/oci/key_management/models/restore_key_from_object_store_details.py index 39cf841af9..92dbfe5432 100644 --- a/src/oci/key_management/models/restore_key_from_object_store_details.py +++ b/src/oci/key_management/models/restore_key_from_object_store_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/restore_vault_from_object_store_details.py b/src/oci/key_management/models/restore_vault_from_object_store_details.py index 8c4836af8a..4ee9a57bfd 100644 --- a/src/oci/key_management/models/restore_vault_from_object_store_details.py +++ b/src/oci/key_management/models/restore_vault_from_object_store_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 bd2950abb0..f89988d910 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 4d38689a2f..89c7b2861e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 eb27a90ba9..c156afee71 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/sign_data_details.py b/src/oci/key_management/models/sign_data_details.py index 5749b33509..4662555de2 100644 --- a/src/oci/key_management/models/sign_data_details.py +++ b/src/oci/key_management/models/sign_data_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/signed_data.py b/src/oci/key_management/models/signed_data.py index 3b8e5dfe63..9197c60fe1 100644 --- a/src/oci/key_management/models/signed_data.py +++ b/src/oci/key_management/models/signed_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/update_key_details.py b/src/oci/key_management/models/update_key_details.py index f6f7866a60..5ab89cbaf0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/update_vault_details.py b/src/oci/key_management/models/update_vault_details.py index e7644f1491..2283c26c24 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/vault.py b/src/oci/key_management/models/vault.py index a405518faa..43f0998d2a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/vault_replica_details.py b/src/oci/key_management/models/vault_replica_details.py index b47d164188..b69edd4a03 100644 --- a/src/oci/key_management/models/vault_replica_details.py +++ b/src/oci/key_management/models/vault_replica_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/vault_replica_summary.py b/src/oci/key_management/models/vault_replica_summary.py index 6492a399ba..67c41fbd59 100644 --- a/src/oci/key_management/models/vault_replica_summary.py +++ b/src/oci/key_management/models/vault_replica_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/vault_summary.py b/src/oci/key_management/models/vault_summary.py index 5aba6f6e17..71ccb9f2ba 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/vault_usage.py b/src/oci/key_management/models/vault_usage.py index 1bb34f3e9e..44df1eac7d 100644 --- a/src/oci/key_management/models/vault_usage.py +++ b/src/oci/key_management/models/vault_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/verified_data.py b/src/oci/key_management/models/verified_data.py index 10ac73e995..53843592e4 100644 --- a/src/oci/key_management/models/verified_data.py +++ b/src/oci/key_management/models/verified_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/verify_data_details.py b/src/oci/key_management/models/verify_data_details.py index e8b76341f1..f78b07ad5b 100644 --- a/src/oci/key_management/models/verify_data_details.py +++ b/src/oci/key_management/models/verify_data_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/wrapped_import_key.py b/src/oci/key_management/models/wrapped_import_key.py index e12a4e6d91..13eda61fd9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/key_management/models/wrapping_key.py b/src/oci/key_management/models/wrapping_key.py index d35960a869..3fd88ffe2b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/limits/__init__.py b/src/oci/limits/__init__.py index ae69c5fa4f..4c05ff3386 100644 --- a/src/oci/limits/__init__.py +++ b/src/oci/limits/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/limits/limits_client.py b/src/oci/limits/limits_client.py index 76abffbd98..85d09d13b5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("limits", config, signer, limits_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -132,6 +138,10 @@ def get_resource_availability(self, service_name, limit_name, compartment_id, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.limits.models.ResourceAvailability` :rtype: :class:`~oci.response.Response` @@ -143,6 +153,7 @@ def get_resource_availability(self, service_name, limit_name, compartment_id, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "availability_domain", "opc_request_id" @@ -246,6 +257,10 @@ def list_limit_definitions(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.limits.models.LimitDefinitionSummary` :rtype: :class:`~oci.response.Response` @@ -257,6 +272,7 @@ def list_limit_definitions(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "service_name", "name", @@ -377,6 +393,10 @@ def list_limit_values(self, compartment_id, service_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.limits.models.LimitValueSummary` :rtype: :class:`~oci.response.Response` @@ -388,6 +408,7 @@ def list_limit_values(self, compartment_id, service_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "scope_type", "availability_domain", @@ -505,6 +526,10 @@ def list_services(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.limits.models.ServiceSummary` :rtype: :class:`~oci.response.Response` @@ -516,6 +541,7 @@ def list_services(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "sort_by", "sort_order", diff --git a/src/oci/limits/limits_client_composite_operations.py b/src/oci/limits/limits_client_composite_operations.py index 7fb43cc60d..013df3a8ff 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/limits/models/__init__.py b/src/oci/limits/models/__init__.py index 4c7b0d93a8..cd68a976bf 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 84cacdfb27..06be397772 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/limits/models/limit_definition_summary.py b/src/oci/limits/models/limit_definition_summary.py index e060a308c5..74c6685e5e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/limits/models/limit_value_summary.py b/src/oci/limits/models/limit_value_summary.py index aee0fb053c..17300647ae 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/limits/models/quota.py b/src/oci/limits/models/quota.py index 7cb9cc03a0..20c94d3bf3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/limits/models/quota_summary.py b/src/oci/limits/models/quota_summary.py index e27fd99dd7..69563df1cd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/limits/models/resource_availability.py b/src/oci/limits/models/resource_availability.py index cbcba64cb8..3d487ea16f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/limits/models/service_summary.py b/src/oci/limits/models/service_summary.py index de3380891a..7b236b1613 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/limits/models/update_quota_details.py b/src/oci/limits/models/update_quota_details.py index 17179b5f5e..f1b1eac60a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/limits/quotas_client.py b/src/oci/limits/quotas_client.py index d94701b9cf..29a8147cb4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("quotas", config, signer, limits_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -125,6 +131,10 @@ def create_quota(self, create_quota_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.limits.models.Quota` :rtype: :class:`~oci.response.Response` @@ -136,6 +146,7 @@ def create_quota(self, create_quota_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -203,6 +214,10 @@ def delete_quota(self, quota_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -214,6 +229,7 @@ def delete_quota(self, quota_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -283,6 +299,10 @@ def get_quota(self, quota_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.limits.models.Quota` :rtype: :class:`~oci.response.Response` @@ -294,6 +314,7 @@ def get_quota(self, quota_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -387,6 +408,10 @@ def list_quotas(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.limits.models.QuotaSummary` :rtype: :class:`~oci.response.Response` @@ -398,6 +423,7 @@ def list_quotas(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -503,6 +529,10 @@ def update_quota(self, quota_id, update_quota_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.limits.models.Quota` :rtype: :class:`~oci.response.Response` @@ -514,6 +544,7 @@ def update_quota(self, quota_id, update_quota_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" diff --git a/src/oci/limits/quotas_client_composite_operations.py b/src/oci/limits/quotas_client_composite_operations.py index 0bb64ad8ec..3c9581e495 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/load_balancer/__init__.py b/src/oci/load_balancer/__init__.py index 24722529f2..5f35754bd6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 92133e10e8..e777a3cf3b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("load_balancer", config, signer, load_balancer_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -141,6 +147,10 @@ def change_load_balancer_compartment(self, load_balancer_id, change_load_balance To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -152,6 +162,7 @@ def change_load_balancer_compartment(self, load_balancer_id, change_load_balance # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -243,6 +254,10 @@ def create_backend(self, create_backend_details, load_balancer_id, backend_set_n To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -254,6 +269,7 @@ def create_backend(self, create_backend_details, load_balancer_id, backend_set_n # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -339,6 +355,10 @@ def create_backend_set(self, create_backend_set_details, load_balancer_id, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -350,6 +370,7 @@ def create_backend_set(self, create_backend_set_details, load_balancer_id, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -434,6 +455,10 @@ def create_certificate(self, create_certificate_details, load_balancer_id, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -445,6 +470,7 @@ def create_certificate(self, create_certificate_details, load_balancer_id, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -532,6 +558,10 @@ def create_hostname(self, create_hostname_details, load_balancer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -543,6 +573,7 @@ def create_hostname(self, create_hostname_details, load_balancer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -627,6 +658,10 @@ def create_listener(self, create_listener_details, load_balancer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -638,6 +673,7 @@ def create_listener(self, create_listener_details, load_balancer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -748,6 +784,10 @@ def create_load_balancer(self, create_load_balancer_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -759,6 +799,7 @@ def create_load_balancer(self, create_load_balancer_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -834,6 +875,10 @@ def create_path_route_set(self, create_path_route_set_details, load_balancer_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -845,6 +890,7 @@ def create_path_route_set(self, create_path_route_set_details, load_balancer_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -932,6 +978,10 @@ def create_routing_policy(self, create_routing_policy_details, load_balancer_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -943,6 +993,7 @@ def create_routing_policy(self, create_routing_policy_details, load_balancer_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1023,6 +1074,10 @@ def create_rule_set(self, load_balancer_id, create_rule_set_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1034,6 +1089,7 @@ def create_rule_set(self, load_balancer_id, create_rule_set_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1115,6 +1171,10 @@ def create_ssl_cipher_suite(self, create_ssl_cipher_suite_details, load_balancer To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1126,6 +1186,7 @@ def create_ssl_cipher_suite(self, create_ssl_cipher_suite_details, load_balancer # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1210,6 +1271,10 @@ def delete_backend(self, load_balancer_id, backend_set_name, backend_name, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1221,6 +1286,7 @@ def delete_backend(self, load_balancer_id, backend_set_name, backend_name, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1299,6 +1365,10 @@ def delete_backend_set(self, load_balancer_id, backend_set_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1310,6 +1380,7 @@ def delete_backend_set(self, load_balancer_id, backend_set_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1386,6 +1457,10 @@ def delete_certificate(self, load_balancer_id, certificate_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1397,6 +1472,7 @@ def delete_certificate(self, load_balancer_id, certificate_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1472,6 +1548,10 @@ def delete_hostname(self, load_balancer_id, name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1483,6 +1563,7 @@ def delete_hostname(self, load_balancer_id, name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1558,6 +1639,10 @@ def delete_listener(self, load_balancer_id, listener_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1569,6 +1654,7 @@ def delete_listener(self, load_balancer_id, listener_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1639,6 +1725,10 @@ def delete_load_balancer(self, load_balancer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1650,6 +1740,7 @@ def delete_load_balancer(self, load_balancer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1727,6 +1818,10 @@ def delete_path_route_set(self, load_balancer_id, path_route_set_name, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1738,6 +1833,7 @@ def delete_path_route_set(self, load_balancer_id, path_route_set_name, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1816,6 +1912,10 @@ def delete_routing_policy(self, load_balancer_id, routing_policy_name, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1827,6 +1927,7 @@ def delete_routing_policy(self, load_balancer_id, routing_policy_name, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1905,6 +2006,10 @@ def delete_rule_set(self, load_balancer_id, rule_set_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1916,6 +2021,7 @@ def delete_rule_set(self, load_balancer_id, rule_set_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1991,6 +2097,10 @@ def delete_ssl_cipher_suite(self, load_balancer_id, name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2002,6 +2112,7 @@ def delete_ssl_cipher_suite(self, load_balancer_id, name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2082,6 +2193,10 @@ def get_backend(self, load_balancer_id, backend_set_name, backend_name, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.load_balancer.models.Backend` :rtype: :class:`~oci.response.Response` @@ -2093,6 +2208,7 @@ def get_backend(self, load_balancer_id, backend_set_name, backend_name, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2176,6 +2292,10 @@ def get_backend_health(self, load_balancer_id, backend_set_name, backend_name, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.load_balancer.models.BackendHealth` :rtype: :class:`~oci.response.Response` @@ -2187,6 +2307,7 @@ def get_backend_health(self, load_balancer_id, backend_set_name, backend_name, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2265,6 +2386,10 @@ def get_backend_set(self, load_balancer_id, backend_set_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.load_balancer.models.BackendSet` :rtype: :class:`~oci.response.Response` @@ -2276,6 +2401,7 @@ def get_backend_set(self, load_balancer_id, backend_set_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2353,6 +2479,10 @@ def get_backend_set_health(self, load_balancer_id, backend_set_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.load_balancer.models.BackendSetHealth` :rtype: :class:`~oci.response.Response` @@ -2364,6 +2494,7 @@ def get_backend_set_health(self, load_balancer_id, backend_set_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2441,6 +2572,10 @@ def get_health_checker(self, load_balancer_id, backend_set_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.load_balancer.models.HealthChecker` :rtype: :class:`~oci.response.Response` @@ -2452,6 +2587,7 @@ def get_health_checker(self, load_balancer_id, backend_set_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2529,6 +2665,10 @@ def get_hostname(self, load_balancer_id, name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.load_balancer.models.Hostname` :rtype: :class:`~oci.response.Response` @@ -2540,6 +2680,7 @@ def get_hostname(self, load_balancer_id, name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2612,6 +2753,10 @@ def get_load_balancer(self, load_balancer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.load_balancer.models.LoadBalancer` :rtype: :class:`~oci.response.Response` @@ -2623,6 +2768,7 @@ def get_load_balancer(self, load_balancer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2694,6 +2840,10 @@ def get_load_balancer_health(self, load_balancer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.load_balancer.models.LoadBalancerHealth` :rtype: :class:`~oci.response.Response` @@ -2705,6 +2855,7 @@ def get_load_balancer_health(self, load_balancer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2781,6 +2932,10 @@ def get_path_route_set(self, load_balancer_id, path_route_set_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.load_balancer.models.PathRouteSet` :rtype: :class:`~oci.response.Response` @@ -2792,6 +2947,7 @@ def get_path_route_set(self, load_balancer_id, path_route_set_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2869,6 +3025,10 @@ def get_routing_policy(self, load_balancer_id, routing_policy_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.load_balancer.models.RoutingPolicy` :rtype: :class:`~oci.response.Response` @@ -2880,6 +3040,7 @@ def get_routing_policy(self, load_balancer_id, routing_policy_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2957,6 +3118,10 @@ def get_rule_set(self, load_balancer_id, rule_set_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.load_balancer.models.RuleSet` :rtype: :class:`~oci.response.Response` @@ -2968,6 +3133,7 @@ def get_rule_set(self, load_balancer_id, rule_set_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3045,6 +3211,10 @@ def get_ssl_cipher_suite(self, load_balancer_id, name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.load_balancer.models.SSLCipherSuite` :rtype: :class:`~oci.response.Response` @@ -3056,6 +3226,7 @@ def get_ssl_cipher_suite(self, load_balancer_id, name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3128,6 +3299,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.load_balancer.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -3139,6 +3314,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3210,6 +3386,10 @@ def list_backend_sets(self, load_balancer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.load_balancer.models.BackendSet` :rtype: :class:`~oci.response.Response` @@ -3221,6 +3401,7 @@ def list_backend_sets(self, load_balancer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3297,6 +3478,10 @@ def list_backends(self, load_balancer_id, backend_set_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.load_balancer.models.Backend` :rtype: :class:`~oci.response.Response` @@ -3308,6 +3493,7 @@ def list_backends(self, load_balancer_id, backend_set_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3381,6 +3567,10 @@ def list_certificates(self, load_balancer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.load_balancer.models.Certificate` :rtype: :class:`~oci.response.Response` @@ -3392,6 +3582,7 @@ def list_certificates(self, load_balancer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3464,6 +3655,10 @@ def list_hostnames(self, load_balancer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.load_balancer.models.Hostname` :rtype: :class:`~oci.response.Response` @@ -3475,6 +3670,7 @@ def list_hostnames(self, load_balancer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3555,6 +3751,10 @@ def list_listener_rules(self, load_balancer_id, listener_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.load_balancer.models.ListenerRuleSummary` :rtype: :class:`~oci.response.Response` @@ -3566,6 +3766,7 @@ def list_listener_rules(self, load_balancer_id, listener_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3654,6 +3855,10 @@ def list_load_balancer_healths(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.load_balancer.models.LoadBalancerHealthSummary` :rtype: :class:`~oci.response.Response` @@ -3665,6 +3870,7 @@ def list_load_balancer_healths(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -3779,6 +3985,10 @@ def list_load_balancers(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.load_balancer.models.LoadBalancer` :rtype: :class:`~oci.response.Response` @@ -3790,6 +4000,7 @@ def list_load_balancers(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -3892,6 +4103,10 @@ def list_path_route_sets(self, load_balancer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.load_balancer.models.PathRouteSet` :rtype: :class:`~oci.response.Response` @@ -3903,6 +4118,7 @@ def list_path_route_sets(self, load_balancer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3990,6 +4206,10 @@ def list_policies(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.load_balancer.models.LoadBalancerPolicy` :rtype: :class:`~oci.response.Response` @@ -4001,6 +4221,7 @@ def list_policies(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -4087,6 +4308,10 @@ def list_protocols(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.load_balancer.models.LoadBalancerProtocol` :rtype: :class:`~oci.response.Response` @@ -4098,6 +4323,7 @@ def list_protocols(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -4184,6 +4410,10 @@ def list_routing_policies(self, load_balancer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.load_balancer.models.RoutingPolicy` :rtype: :class:`~oci.response.Response` @@ -4195,6 +4425,7 @@ def list_routing_policies(self, load_balancer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -4276,6 +4507,10 @@ def list_rule_sets(self, load_balancer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.load_balancer.models.RuleSet` :rtype: :class:`~oci.response.Response` @@ -4287,6 +4522,7 @@ def list_rule_sets(self, load_balancer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -4374,6 +4610,10 @@ def list_shapes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.load_balancer.models.LoadBalancerShape` :rtype: :class:`~oci.response.Response` @@ -4385,6 +4625,7 @@ def list_shapes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -4455,6 +4696,10 @@ def list_ssl_cipher_suites(self, load_balancer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.load_balancer.models.SSLCipherSuite` :rtype: :class:`~oci.response.Response` @@ -4466,6 +4711,7 @@ def list_ssl_cipher_suites(self, load_balancer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -4553,6 +4799,10 @@ def list_work_requests(self, load_balancer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.load_balancer.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -4564,6 +4814,7 @@ def list_work_requests(self, load_balancer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -4665,6 +4916,10 @@ def update_backend(self, update_backend_details, load_balancer_id, backend_set_n To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4676,6 +4931,7 @@ def update_backend(self, update_backend_details, load_balancer_id, backend_set_n # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -4767,6 +5023,10 @@ def update_backend_set(self, update_backend_set_details, load_balancer_id, backe To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4778,6 +5038,7 @@ def update_backend_set(self, update_backend_set_details, load_balancer_id, backe # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -4868,6 +5129,10 @@ def update_health_checker(self, health_checker, load_balancer_id, backend_set_na To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4879,6 +5144,7 @@ def update_health_checker(self, health_checker, load_balancer_id, backend_set_na # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -4964,6 +5230,10 @@ def update_hostname(self, update_hostname_details, load_balancer_id, name, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4975,6 +5245,7 @@ def update_hostname(self, update_hostname_details, load_balancer_id, name, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5062,6 +5333,10 @@ def update_listener(self, update_listener_details, load_balancer_id, listener_na To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5073,6 +5348,7 @@ def update_listener(self, update_listener_details, load_balancer_id, listener_na # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -5158,6 +5434,10 @@ def update_load_balancer(self, update_load_balancer_details, load_balancer_id, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5169,6 +5449,7 @@ def update_load_balancer(self, update_load_balancer_details, load_balancer_id, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -5258,6 +5539,10 @@ def update_load_balancer_shape(self, load_balancer_id, update_load_balancer_shap To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5269,6 +5554,7 @@ def update_load_balancer_shape(self, load_balancer_id, update_load_balancer_shap # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -5353,6 +5639,10 @@ def update_network_security_groups(self, update_network_security_groups_details, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5364,6 +5654,7 @@ def update_network_security_groups(self, update_network_security_groups_details, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -5458,6 +5749,10 @@ def update_path_route_set(self, update_path_route_set_details, load_balancer_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5469,6 +5764,7 @@ def update_path_route_set(self, update_path_route_set_details, load_balancer_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -5562,6 +5858,10 @@ def update_routing_policy(self, update_routing_policy_details, load_balancer_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5573,6 +5873,7 @@ def update_routing_policy(self, update_routing_policy_details, load_balancer_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -5659,6 +5960,10 @@ def update_rule_set(self, load_balancer_id, rule_set_name, update_rule_set_detai To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5670,6 +5975,7 @@ def update_rule_set(self, load_balancer_id, rule_set_name, update_rule_set_detai # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5757,6 +6063,10 @@ def update_ssl_cipher_suite(self, update_ssl_cipher_suite_details, load_balancer To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5768,6 +6078,7 @@ def update_ssl_cipher_suite(self, update_ssl_cipher_suite_details, load_balancer # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" 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 ab76574251..73a954ec1a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/load_balancer/models/__init__.py b/src/oci/load_balancer/models/__init__.py index 278b700fd5..d3035a9f72 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/load_balancer/models/action.py b/src/oci/load_balancer/models/action.py index 47abf375fc..3f63ae7a5e 100644 --- a/src/oci/load_balancer/models/action.py +++ b/src/oci/load_balancer/models/action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 d566f37d48..ed4b9194bf 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .rule import Rule 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 9e71110156..45db351709 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .rule import Rule diff --git a/src/oci/load_balancer/models/allow_rule.py b/src/oci/load_balancer/models/allow_rule.py index b1df77ca26..1986d76f9d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .rule import Rule diff --git a/src/oci/load_balancer/models/backend.py b/src/oci/load_balancer/models/backend.py index db6b4d6d31..9f1074b51b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/backend_details.py b/src/oci/load_balancer/models/backend_details.py index 9d32714ca6..30f1efcdec 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/backend_health.py b/src/oci/load_balancer/models/backend_health.py index a25d3ba8b1..e278dc3bdd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/backend_set.py b/src/oci/load_balancer/models/backend_set.py index ef97e908dc..9d1f0d475c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/backend_set_details.py b/src/oci/load_balancer/models/backend_set_details.py index 381ac1e8a1..acf0fbb004 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/backend_set_health.py b/src/oci/load_balancer/models/backend_set_health.py index b004d564b5..cd2365f38f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/certificate.py b/src/oci/load_balancer/models/certificate.py index 46ea498b5c..68830a76e9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/certificate_details.py b/src/oci/load_balancer/models/certificate_details.py index d354f2f52b..e8b08081e9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 db3266a0a6..e47abd0633 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/connection_configuration.py b/src/oci/load_balancer/models/connection_configuration.py index 626487ddab..21466d7922 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 a78651b09a..a61ed44c98 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .rule import Rule diff --git a/src/oci/load_balancer/models/create_backend_details.py b/src/oci/load_balancer/models/create_backend_details.py index a6997be628..2f653f5fb5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 435b096084..f0923eab51 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/create_certificate_details.py b/src/oci/load_balancer/models/create_certificate_details.py index 7955b29c48..cd126912bd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/create_hostname_details.py b/src/oci/load_balancer/models/create_hostname_details.py index ca0c4ed3c0..305ef3b725 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/create_listener_details.py b/src/oci/load_balancer/models/create_listener_details.py index a06dac416d..8adc172a78 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 45f97a7f44..d67a43699f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 677ea98299..7fd676f7f9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/create_routing_policy_details.py b/src/oci/load_balancer/models/create_routing_policy_details.py index 5a466f6770..d35d6f409f 100644 --- a/src/oci/load_balancer/models/create_routing_policy_details.py +++ b/src/oci/load_balancer/models/create_routing_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 71a739e1ae..cad3895d88 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/create_ssl_cipher_suite_details.py b/src/oci/load_balancer/models/create_ssl_cipher_suite_details.py index e03f31f944..4cf87ce023 100644 --- a/src/oci/load_balancer/models/create_ssl_cipher_suite_details.py +++ b/src/oci/load_balancer/models/create_ssl_cipher_suite_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 daeff1d545..2aca17b68d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .rule import Rule 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 93e514ff26..f876f7aee6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .rule import Rule diff --git a/src/oci/load_balancer/models/forward_to_backend_set.py b/src/oci/load_balancer/models/forward_to_backend_set.py index a1386c8d8c..702c329856 100644 --- a/src/oci/load_balancer/models/forward_to_backend_set.py +++ b/src/oci/load_balancer/models/forward_to_backend_set.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .action import Action diff --git a/src/oci/load_balancer/models/health_check_result.py b/src/oci/load_balancer/models/health_check_result.py index 7f78f82570..34a02c3583 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/health_checker.py b/src/oci/load_balancer/models/health_checker.py index 512bb8543c..1e58be136d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/health_checker_details.py b/src/oci/load_balancer/models/health_checker_details.py index 472d16cafc..1c81fbc1a9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/hostname.py b/src/oci/load_balancer/models/hostname.py index 7ae8302e05..c7845b898d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/hostname_details.py b/src/oci/load_balancer/models/hostname_details.py index 1b4c10072f..7400bc2f97 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/http_header_rule.py b/src/oci/load_balancer/models/http_header_rule.py index da686e6c58..de684fc3be 100644 --- a/src/oci/load_balancer/models/http_header_rule.py +++ b/src/oci/load_balancer/models/http_header_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .rule import Rule diff --git a/src/oci/load_balancer/models/ip_address.py b/src/oci/load_balancer/models/ip_address.py index 168a27b1d9..d476d59672 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 78b8ce100f..fc1a14b93c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/listener.py b/src/oci/load_balancer/models/listener.py index 312d28c8e1..e8576b6615 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/listener_details.py b/src/oci/load_balancer/models/listener_details.py index a1c072fe25..7843f42ad1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/listener_rule_summary.py b/src/oci/load_balancer/models/listener_rule_summary.py index 30ae575c8a..0ebc334400 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/load_balancer.py b/src/oci/load_balancer/models/load_balancer.py index 5fca9a5339..54ee213283 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/load_balancer_health.py b/src/oci/load_balancer/models/load_balancer_health.py index be5e608796..96d388dabc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 bd16d6c17e..8e8560e4e7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/load_balancer_policy.py b/src/oci/load_balancer/models/load_balancer_policy.py index e77ea31ae4..cfbf7c4101 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/load_balancer_protocol.py b/src/oci/load_balancer/models/load_balancer_protocol.py index 1f24ff9998..02a7bb3b88 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/load_balancer_shape.py b/src/oci/load_balancer/models/load_balancer_shape.py index d350502116..561ef7e227 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/path_match_condition.py b/src/oci/load_balancer/models/path_match_condition.py index f70d32b067..3ea334014d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .rule_condition import RuleCondition diff --git a/src/oci/load_balancer/models/path_match_type.py b/src/oci/load_balancer/models/path_match_type.py index fae8e95981..9199ccd5cf 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/path_route.py b/src/oci/load_balancer/models/path_route.py index ea79f3aaf1..692a2a6099 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/path_route_set.py b/src/oci/load_balancer/models/path_route_set.py index d196ee6dff..fe1acbc210 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 e7ffbe9675..e3e05477a5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/redirect_rule.py b/src/oci/load_balancer/models/redirect_rule.py index 5f5779894e..46886e07d2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .rule import Rule diff --git a/src/oci/load_balancer/models/redirect_uri.py b/src/oci/load_balancer/models/redirect_uri.py index 3156e9b9a9..61ba41b28f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 8e6d607d91..7e114117e2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .rule import Rule 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 4c8f35c2c0..fb64b48923 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .rule import Rule diff --git a/src/oci/load_balancer/models/reserved_ip.py b/src/oci/load_balancer/models/reserved_ip.py index 8a94a0bfcf..755484f9d2 100644 --- a/src/oci/load_balancer/models/reserved_ip.py +++ b/src/oci/load_balancer/models/reserved_ip.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/routing_policy.py b/src/oci/load_balancer/models/routing_policy.py index 6c4b46489e..f3e9db7550 100644 --- a/src/oci/load_balancer/models/routing_policy.py +++ b/src/oci/load_balancer/models/routing_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/routing_policy_details.py b/src/oci/load_balancer/models/routing_policy_details.py index 02259524f3..da94a0d7e6 100644 --- a/src/oci/load_balancer/models/routing_policy_details.py +++ b/src/oci/load_balancer/models/routing_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/routing_rule.py b/src/oci/load_balancer/models/routing_rule.py index cebd708c23..3233fc98e6 100644 --- a/src/oci/load_balancer/models/routing_rule.py +++ b/src/oci/load_balancer/models/routing_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/rule.py b/src/oci/load_balancer/models/rule.py index 046816a78a..8f4c47a643 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/rule_condition.py b/src/oci/load_balancer/models/rule_condition.py index c7e7a4819a..4a408d6f3a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/rule_set.py b/src/oci/load_balancer/models/rule_set.py index b1386d364d..05aa72fdea 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/rule_set_details.py b/src/oci/load_balancer/models/rule_set_details.py index 604dcedf9e..5be38d2ffd 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 2964943a5d..e196798354 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/shape_details.py b/src/oci/load_balancer/models/shape_details.py index 7c80d0497c..0c99895995 100644 --- a/src/oci/load_balancer/models/shape_details.py +++ b/src/oci/load_balancer/models/shape_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 50ecd96160..048273ed48 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .rule_condition import RuleCondition 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 8b159d91a4..93a8c85e84 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .rule_condition import RuleCondition 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 5b7d6ed185..ba6e1b7c6e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .rule_condition import RuleCondition diff --git a/src/oci/load_balancer/models/ssl_cipher_suite.py b/src/oci/load_balancer/models/ssl_cipher_suite.py index a6422d5f52..775f66a1f5 100644 --- a/src/oci/load_balancer/models/ssl_cipher_suite.py +++ b/src/oci/load_balancer/models/ssl_cipher_suite.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/ssl_cipher_suite_details.py b/src/oci/load_balancer/models/ssl_cipher_suite_details.py index 3aa25b109a..35e7ab31d2 100644 --- a/src/oci/load_balancer/models/ssl_cipher_suite_details.py +++ b/src/oci/load_balancer/models/ssl_cipher_suite_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/ssl_configuration.py b/src/oci/load_balancer/models/ssl_configuration.py index 4e4d0cc589..c32ec21e78 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/ssl_configuration_details.py b/src/oci/load_balancer/models/ssl_configuration_details.py index 5518760497..3f560268df 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/update_backend_details.py b/src/oci/load_balancer/models/update_backend_details.py index 20af4e91d4..29691f60e8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 93d9093f52..dd67e499a0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 fd9d46f928..c90dabd2f1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/update_hostname_details.py b/src/oci/load_balancer/models/update_hostname_details.py index b8824b37d2..5a445522ef 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/update_listener_details.py b/src/oci/load_balancer/models/update_listener_details.py index bc7ea576d8..64cde8de12 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 de1da874da..017cdbf861 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/update_load_balancer_shape_details.py b/src/oci/load_balancer/models/update_load_balancer_shape_details.py index 664c6e036c..0cb7857955 100644 --- a/src/oci/load_balancer/models/update_load_balancer_shape_details.py +++ b/src/oci/load_balancer/models/update_load_balancer_shape_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 6cb7ce6a38..ae917e3f88 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 afbc8f0e9d..8ff2ceb5c7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/update_routing_policy_details.py b/src/oci/load_balancer/models/update_routing_policy_details.py index 49dc268539..a7d5f76e52 100644 --- a/src/oci/load_balancer/models/update_routing_policy_details.py +++ b/src/oci/load_balancer/models/update_routing_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 222c76d5ff..cfc23d95cb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/update_ssl_cipher_suite_details.py b/src/oci/load_balancer/models/update_ssl_cipher_suite_details.py index 81b41f8527..40c1970ff5 100644 --- a/src/oci/load_balancer/models/update_ssl_cipher_suite_details.py +++ b/src/oci/load_balancer/models/update_ssl_cipher_suite_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/work_request.py b/src/oci/load_balancer/models/work_request.py index 04119f91db..3761b1b79f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/load_balancer/models/work_request_error.py b/src/oci/load_balancer/models/work_request_error.py index 70833ce15a..3f85d89b74 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/__init__.py b/src/oci/log_analytics/__init__.py index 0d3975ffa9..0611be1bae 100644 --- a/src/oci/log_analytics/__init__.py +++ b/src/oci/log_analytics/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/log_analytics/log_analytics_client.py b/src/oci/log_analytics/log_analytics_client.py index 5002a9378f..6f4f6cc3c3 100644 --- a/src/oci/log_analytics/log_analytics_client.py +++ b/src/oci/log_analytics/log_analytics_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("log_analytics", config, signer, log_analytics_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -138,6 +144,10 @@ def add_entity_association(self, namespace_name, log_analytics_entity_id, add_en To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -149,6 +159,7 @@ def add_entity_association(self, namespace_name, log_analytics_entity_id, add_en # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -240,6 +251,10 @@ def add_source_event_types(self, namespace_name, source_name, add_event_type_det To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -251,6 +266,7 @@ def add_source_event_types(self, namespace_name, source_name, add_event_type_det # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -357,6 +373,10 @@ def append_lookup_data(self, namespace_name, lookup_name, append_lookup_file_bod The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings :param int buffer_limit: (optional) A buffer limit for the stream to be buffered. buffer_limit is used to set the buffer size capacity. Streams will be read until the size of the buffer reaches the buffer_limit. If the stream size is greater than the buffer_limit, a BufferError exception will be thrown. @@ -376,6 +396,7 @@ def append_lookup_data(self, namespace_name, lookup_name, append_lookup_file_bod # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "buffer_limit", "is_force", @@ -509,6 +530,10 @@ def batch_get_basic_info(self, namespace_name, basic_details, is_include_deleted To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsLabelCollection` :rtype: :class:`~oci.response.Response` @@ -520,6 +545,7 @@ def batch_get_basic_info(self, namespace_name, basic_details, is_include_deleted # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -635,6 +661,10 @@ def cancel_query_work_request(self, namespace_name, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -646,6 +676,7 @@ def cancel_query_work_request(self, namespace_name, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -735,6 +766,10 @@ def change_log_analytics_em_bridge_compartment(self, namespace_name, log_analyti To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -746,6 +781,7 @@ def change_log_analytics_em_bridge_compartment(self, namespace_name, log_analyti # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -844,6 +880,10 @@ def change_log_analytics_entity_compartment(self, namespace_name, log_analytics_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -855,6 +895,7 @@ def change_log_analytics_entity_compartment(self, namespace_name, log_analytics_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -953,6 +994,10 @@ def change_log_analytics_log_group_compartment(self, namespace_name, log_analyti To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -964,6 +1009,7 @@ def change_log_analytics_log_group_compartment(self, namespace_name, log_analyti # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1057,6 +1103,10 @@ def change_log_analytics_object_collection_rule_compartment(self, namespace_name To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1068,6 +1118,7 @@ def change_log_analytics_object_collection_rule_compartment(self, namespace_name # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1164,6 +1215,10 @@ def change_scheduled_task_compartment(self, namespace_name, scheduled_task_id, c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1175,6 +1230,7 @@ def change_scheduled_task_compartment(self, namespace_name, scheduled_task_id, c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1273,6 +1329,10 @@ def clean(self, namespace_name, scheduled_task_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1284,6 +1344,7 @@ def clean(self, namespace_name, scheduled_task_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "time_start", "time_end", @@ -1367,6 +1428,10 @@ def compare_content(self, namespace_name, compare_content_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.CompareContentResult` :rtype: :class:`~oci.response.Response` @@ -1378,6 +1443,7 @@ def compare_content(self, namespace_name, compare_content_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1462,6 +1528,10 @@ def create_log_analytics_em_bridge(self, namespace_name, create_log_analytics_em To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsEmBridge` :rtype: :class:`~oci.response.Response` @@ -1473,6 +1543,7 @@ def create_log_analytics_em_bridge(self, namespace_name, create_log_analytics_em # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1560,6 +1631,10 @@ def create_log_analytics_entity(self, namespace_name, create_log_analytics_entit To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsEntity` :rtype: :class:`~oci.response.Response` @@ -1571,6 +1646,7 @@ def create_log_analytics_entity(self, namespace_name, create_log_analytics_entit # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1658,6 +1734,10 @@ def create_log_analytics_entity_type(self, namespace_name, create_log_analytics_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1669,6 +1749,7 @@ def create_log_analytics_entity_type(self, namespace_name, create_log_analytics_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1754,6 +1835,10 @@ def create_log_analytics_log_group(self, namespace_name, create_log_analytics_lo To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsLogGroup` :rtype: :class:`~oci.response.Response` @@ -1765,6 +1850,7 @@ def create_log_analytics_log_group(self, namespace_name, create_log_analytics_lo # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1845,6 +1931,10 @@ def create_log_analytics_object_collection_rule(self, namespace_name, create_log To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsObjectCollectionRule` :rtype: :class:`~oci.response.Response` @@ -1856,6 +1946,7 @@ def create_log_analytics_object_collection_rule(self, namespace_name, create_log # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1940,6 +2031,10 @@ def create_scheduled_task(self, namespace_name, create_scheduled_task_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.ScheduledTask` :rtype: :class:`~oci.response.Response` @@ -1951,6 +2046,7 @@ def create_scheduled_task(self, namespace_name, create_scheduled_task_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2038,6 +2134,10 @@ def delete_associations(self, namespace_name, delete_log_analytics_association_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2049,6 +2149,7 @@ def delete_associations(self, namespace_name, delete_log_analytics_association_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -2141,6 +2242,10 @@ def delete_field(self, namespace_name, field_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2152,6 +2257,7 @@ def delete_field(self, namespace_name, field_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -2241,6 +2347,10 @@ def delete_label(self, namespace_name, label_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2252,6 +2362,7 @@ def delete_label(self, namespace_name, label_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -2334,6 +2445,10 @@ def delete_log_analytics_em_bridge(self, namespace_name, log_analytics_em_bridge To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2345,6 +2460,7 @@ def delete_log_analytics_em_bridge(self, namespace_name, log_analytics_em_bridge # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2424,6 +2540,10 @@ def delete_log_analytics_entity(self, namespace_name, log_analytics_entity_id, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2435,6 +2555,7 @@ def delete_log_analytics_entity(self, namespace_name, log_analytics_entity_id, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2514,6 +2635,10 @@ def delete_log_analytics_entity_type(self, namespace_name, entity_type_name, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2525,6 +2650,7 @@ def delete_log_analytics_entity_type(self, namespace_name, entity_type_name, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2604,6 +2730,10 @@ def delete_log_analytics_log_group(self, namespace_name, log_analytics_log_group To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2615,6 +2745,7 @@ def delete_log_analytics_log_group(self, namespace_name, log_analytics_log_group # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2697,6 +2828,10 @@ def delete_log_analytics_object_collection_rule(self, namespace_name, log_analyt To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2708,6 +2843,7 @@ def delete_log_analytics_object_collection_rule(self, namespace_name, log_analyt # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -2797,6 +2933,10 @@ def delete_lookup(self, namespace_name, lookup_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2808,6 +2948,7 @@ def delete_lookup(self, namespace_name, lookup_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "is_force", "opc_retry_token", @@ -2905,6 +3046,10 @@ def delete_parser(self, namespace_name, parser_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2916,6 +3061,7 @@ def delete_parser(self, namespace_name, parser_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -2999,6 +3145,10 @@ def delete_scheduled_task(self, namespace_name, scheduled_task_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3010,6 +3160,7 @@ def delete_scheduled_task(self, namespace_name, scheduled_task_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -3096,6 +3247,10 @@ def delete_source(self, namespace_name, source_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3107,6 +3262,7 @@ def delete_source(self, namespace_name, source_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -3190,6 +3346,10 @@ def delete_upload(self, namespace_name, upload_reference, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3201,6 +3361,7 @@ def delete_upload(self, namespace_name, upload_reference, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3277,6 +3438,10 @@ def delete_upload_file(self, namespace_name, upload_reference, file_reference, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3288,6 +3453,7 @@ def delete_upload_file(self, namespace_name, upload_reference, file_reference, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3362,6 +3528,10 @@ def delete_upload_warning(self, namespace_name, upload_reference, warning_refere To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3373,6 +3543,7 @@ def delete_upload_warning(self, namespace_name, upload_reference, warning_refere # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3448,6 +3619,10 @@ def disable_archiving(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.Success` :rtype: :class:`~oci.response.Response` @@ -3459,6 +3634,7 @@ def disable_archiving(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -3544,6 +3720,10 @@ def disable_auto_association(self, namespace_name, source_name, disable_auto_ass To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3555,6 +3735,7 @@ def disable_auto_association(self, namespace_name, source_name, disable_auto_ass # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -3644,6 +3825,10 @@ def disable_source_event_types(self, namespace_name, source_name, disable_event_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3655,6 +3840,7 @@ def disable_source_event_types(self, namespace_name, source_name, disable_event_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -3738,6 +3924,10 @@ def enable_archiving(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.Success` :rtype: :class:`~oci.response.Response` @@ -3749,6 +3939,7 @@ def enable_archiving(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -3834,6 +4025,10 @@ def enable_auto_association(self, namespace_name, source_name, enable_auto_assoc To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3845,6 +4040,7 @@ def enable_auto_association(self, namespace_name, source_name, enable_auto_assoc # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -3934,6 +4130,10 @@ def enable_source_event_types(self, namespace_name, source_name, enable_event_ty To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3945,6 +4145,7 @@ def enable_source_event_types(self, namespace_name, source_name, enable_event_ty # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -4038,6 +4239,10 @@ def estimate_purge_data_size(self, namespace_name, estimate_purge_data_size_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.EstimatePurgeDataSizeResult` :rtype: :class:`~oci.response.Response` @@ -4049,6 +4254,7 @@ def estimate_purge_data_size(self, namespace_name, estimate_purge_data_size_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -4131,6 +4337,10 @@ def estimate_recall_data_size(self, namespace_name, estimate_recall_data_size_de To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.EstimateRecallDataSizeResult` :rtype: :class:`~oci.response.Response` @@ -4142,6 +4352,7 @@ def estimate_recall_data_size(self, namespace_name, estimate_recall_data_size_de # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -4219,6 +4430,10 @@ def estimate_release_data_size(self, namespace_name, estimate_release_data_size_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.EstimateReleaseDataSizeResult` :rtype: :class:`~oci.response.Response` @@ -4230,6 +4445,7 @@ def estimate_release_data_size(self, namespace_name, estimate_release_data_size_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -4314,6 +4530,10 @@ def export_custom_content(self, namespace_name, export_custom_content_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -4325,6 +4545,7 @@ def export_custom_content(self, namespace_name, export_custom_content_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -4405,6 +4626,10 @@ def export_query_result(self, namespace_name, export_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -4416,6 +4641,7 @@ def export_query_result(self, namespace_name, export_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -4505,6 +4731,10 @@ def extract_structured_log_field_paths(self, namespace_name, logan_parser_detail To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.ExtractLogFieldResults` :rtype: :class:`~oci.response.Response` @@ -4516,6 +4746,7 @@ def extract_structured_log_field_paths(self, namespace_name, logan_parser_detail # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "parser_type", "opc_retry_token", @@ -4623,6 +4854,10 @@ def extract_structured_log_header_paths(self, namespace_name, logan_parser_detai To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.ExtractLogHeaderResults` :rtype: :class:`~oci.response.Response` @@ -4634,6 +4869,7 @@ def extract_structured_log_header_paths(self, namespace_name, logan_parser_detai # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "parser_type", "opc_retry_token", @@ -4729,6 +4965,10 @@ def filter(self, namespace_name, filter_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.FilterOutput` :rtype: :class:`~oci.response.Response` @@ -4740,6 +4980,7 @@ def filter(self, namespace_name, filter_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -4817,6 +5058,10 @@ def get_association_summary(self, namespace_name, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.AssociationSummaryReport` :rtype: :class:`~oci.response.Response` @@ -4828,6 +5073,7 @@ def get_association_summary(self, namespace_name, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -4906,6 +5152,10 @@ def get_category(self, namespace_name, category_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsCategory` :rtype: :class:`~oci.response.Response` @@ -4917,6 +5167,7 @@ def get_category(self, namespace_name, category_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -4996,6 +5247,10 @@ def get_column_names(self, namespace_name, sql_query, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.ColumnNameCollection` :rtype: :class:`~oci.response.Response` @@ -5007,6 +5262,7 @@ def get_column_names(self, namespace_name, sql_query, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -5090,6 +5346,10 @@ def get_config_work_request(self, namespace_name, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsConfigWorkRequest` :rtype: :class:`~oci.response.Response` @@ -5101,6 +5361,7 @@ def get_config_work_request(self, namespace_name, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5173,6 +5434,10 @@ def get_field(self, namespace_name, field_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsField` :rtype: :class:`~oci.response.Response` @@ -5184,6 +5449,7 @@ def get_field(self, namespace_name, field_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5256,6 +5522,10 @@ def get_fields_summary(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.FieldSummaryReport` :rtype: :class:`~oci.response.Response` @@ -5267,6 +5537,7 @@ def get_fields_summary(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "is_show_detail", "opc_request_id" @@ -5346,6 +5617,10 @@ def get_label(self, namespace_name, label_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsLabel` :rtype: :class:`~oci.response.Response` @@ -5357,6 +5632,7 @@ def get_label(self, namespace_name, label_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5426,6 +5702,10 @@ def get_label_summary(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LabelSummaryReport` :rtype: :class:`~oci.response.Response` @@ -5437,6 +5717,7 @@ def get_label_summary(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5508,6 +5789,10 @@ def get_log_analytics_em_bridge(self, namespace_name, log_analytics_em_bridge_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsEmBridge` :rtype: :class:`~oci.response.Response` @@ -5519,6 +5804,7 @@ def get_log_analytics_em_bridge(self, namespace_name, log_analytics_em_bridge_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5591,6 +5877,10 @@ def get_log_analytics_em_bridge_summary(self, namespace_name, compartment_id, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsEmBridgeSummaryReport` :rtype: :class:`~oci.response.Response` @@ -5602,6 +5892,7 @@ def get_log_analytics_em_bridge_summary(self, namespace_name, compartment_id, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5680,6 +5971,10 @@ def get_log_analytics_entities_summary(self, namespace_name, compartment_id, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsEntitySummaryReport` :rtype: :class:`~oci.response.Response` @@ -5691,6 +5986,7 @@ def get_log_analytics_entities_summary(self, namespace_name, compartment_id, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5769,6 +6065,10 @@ def get_log_analytics_entity(self, namespace_name, log_analytics_entity_id, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsEntity` :rtype: :class:`~oci.response.Response` @@ -5780,6 +6080,7 @@ def get_log_analytics_entity(self, namespace_name, log_analytics_entity_id, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5852,6 +6153,10 @@ def get_log_analytics_entity_type(self, namespace_name, entity_type_name, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsEntityType` :rtype: :class:`~oci.response.Response` @@ -5863,6 +6168,7 @@ def get_log_analytics_entity_type(self, namespace_name, entity_type_name, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5935,6 +6241,10 @@ def get_log_analytics_log_group(self, namespace_name, log_analytics_log_group_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsLogGroup` :rtype: :class:`~oci.response.Response` @@ -5946,6 +6256,7 @@ def get_log_analytics_log_group(self, namespace_name, log_analytics_log_group_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6018,6 +6329,10 @@ def get_log_analytics_log_groups_summary(self, namespace_name, compartment_id, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogGroupSummaryReport` :rtype: :class:`~oci.response.Response` @@ -6029,6 +6344,7 @@ def get_log_analytics_log_groups_summary(self, namespace_name, compartment_id, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6109,6 +6425,10 @@ def get_log_analytics_object_collection_rule(self, namespace_name, log_analytics To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsObjectCollectionRule` :rtype: :class:`~oci.response.Response` @@ -6120,6 +6440,7 @@ def get_log_analytics_object_collection_rule(self, namespace_name, log_analytics # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6189,6 +6510,10 @@ def get_log_sets_count(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogSetsCount` :rtype: :class:`~oci.response.Response` @@ -6200,6 +6525,7 @@ def get_log_sets_count(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6271,6 +6597,10 @@ def get_lookup(self, namespace_name, lookup_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsLookup` :rtype: :class:`~oci.response.Response` @@ -6282,6 +6612,7 @@ def get_lookup(self, namespace_name, lookup_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6351,6 +6682,10 @@ def get_lookup_summary(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LookupSummaryReport` :rtype: :class:`~oci.response.Response` @@ -6362,6 +6697,7 @@ def get_lookup_summary(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6430,6 +6766,10 @@ def get_namespace(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.Namespace` :rtype: :class:`~oci.response.Response` @@ -6441,6 +6781,7 @@ def get_namespace(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6512,6 +6853,10 @@ def get_parser(self, namespace_name, parser_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsParser` :rtype: :class:`~oci.response.Response` @@ -6523,6 +6868,7 @@ def get_parser(self, namespace_name, parser_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6592,6 +6938,10 @@ def get_parser_summary(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.ParserSummaryReport` :rtype: :class:`~oci.response.Response` @@ -6603,6 +6953,7 @@ def get_parser_summary(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -6687,6 +7038,10 @@ def get_preferences(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsPreferenceCollection` :rtype: :class:`~oci.response.Response` @@ -6698,6 +7053,7 @@ def get_preferences(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "sort_order", "sort_by", @@ -6817,6 +7173,10 @@ def get_query_result(self, namespace_name, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.QueryAggregation` :rtype: :class:`~oci.response.Response` @@ -6828,6 +7188,7 @@ def get_query_result(self, namespace_name, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -6925,6 +7286,10 @@ def get_query_work_request(self, namespace_name, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.QueryWorkRequest` :rtype: :class:`~oci.response.Response` @@ -6936,6 +7301,7 @@ def get_query_work_request(self, namespace_name, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -7009,6 +7375,10 @@ def get_scheduled_task(self, namespace_name, scheduled_task_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.ScheduledTask` :rtype: :class:`~oci.response.Response` @@ -7020,6 +7390,7 @@ def get_scheduled_task(self, namespace_name, scheduled_task_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -7095,6 +7466,10 @@ def get_source(self, namespace_name, source_name, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsSource` :rtype: :class:`~oci.response.Response` @@ -7106,6 +7481,7 @@ def get_source(self, namespace_name, source_name, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -7182,6 +7558,10 @@ def get_source_summary(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.SourceSummaryReport` :rtype: :class:`~oci.response.Response` @@ -7193,6 +7573,7 @@ def get_source_summary(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -7261,6 +7642,10 @@ def get_storage(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.Storage` :rtype: :class:`~oci.response.Response` @@ -7272,6 +7657,7 @@ def get_storage(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -7341,6 +7727,10 @@ def get_storage_usage(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.StorageUsage` :rtype: :class:`~oci.response.Response` @@ -7352,6 +7742,7 @@ def get_storage_usage(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -7426,6 +7817,10 @@ def get_storage_work_request(self, work_request_id, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.StorageWorkRequest` :rtype: :class:`~oci.response.Response` @@ -7437,6 +7832,7 @@ def get_storage_work_request(self, work_request_id, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -7506,6 +7902,10 @@ def get_unprocessed_data_bucket(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.UnprocessedDataBucket` :rtype: :class:`~oci.response.Response` @@ -7517,6 +7917,7 @@ def get_unprocessed_data_bucket(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -7588,6 +7989,10 @@ def get_upload(self, namespace_name, upload_reference, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.Upload` :rtype: :class:`~oci.response.Response` @@ -7599,6 +8004,7 @@ def get_upload(self, namespace_name, upload_reference, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -7673,6 +8079,10 @@ def get_work_request(self, namespace_name, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -7684,6 +8094,7 @@ def get_work_request(self, namespace_name, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -7771,6 +8182,10 @@ def import_custom_content(self, namespace_name, import_custom_content_file_body, The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings :param int buffer_limit: (optional) A buffer limit for the stream to be buffered. buffer_limit is used to set the buffer size capacity. Streams will be read until the size of the buffer reaches the buffer_limit. If the stream size is greater than the buffer_limit, a BufferError exception will be thrown. @@ -7790,6 +8205,7 @@ def import_custom_content(self, namespace_name, import_custom_content_file_body, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "buffer_limit", "is_overwrite", @@ -7929,6 +8345,10 @@ def list_associable_entities(self, namespace_name, source_name, compartment_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.AssociableEntityCollection` :rtype: :class:`~oci.response.Response` @@ -7940,6 +8360,7 @@ def list_associable_entities(self, namespace_name, source_name, compartment_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "type", "search_text", @@ -8079,6 +8500,10 @@ def list_associated_entities(self, namespace_name, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsAssociatedEntityCollection` :rtype: :class:`~oci.response.Response` @@ -8090,6 +8515,7 @@ def list_associated_entities(self, namespace_name, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "entity_id", "entity_type", @@ -8212,6 +8638,10 @@ def list_auto_associations(self, namespace_name, source_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.AutoAssociationCollection` :rtype: :class:`~oci.response.Response` @@ -8223,6 +8653,7 @@ def list_auto_associations(self, namespace_name, source_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -8348,6 +8779,10 @@ def list_categories(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsCategoryCollection` :rtype: :class:`~oci.response.Response` @@ -8359,6 +8794,7 @@ def list_categories(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "category_type", "category_display_text", @@ -8477,6 +8913,10 @@ def list_config_work_requests(self, namespace_name, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsConfigWorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -8488,6 +8928,7 @@ def list_config_work_requests(self, namespace_name, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "sort_order", "sort_by", @@ -8607,6 +9048,10 @@ def list_entity_associations(self, namespace_name, log_analytics_entity_id, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsEntityCollection` :rtype: :class:`~oci.response.Response` @@ -8618,6 +9063,7 @@ def list_entity_associations(self, namespace_name, log_analytics_entity_id, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "direct_or_all_associations", "limit", @@ -8763,6 +9209,10 @@ def list_entity_source_associations(self, namespace_name, compartment_id, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsAssociationCollection` :rtype: :class:`~oci.response.Response` @@ -8774,6 +9224,7 @@ def list_entity_source_associations(self, namespace_name, compartment_id, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "entity_id", "entity_type", @@ -8939,6 +9390,10 @@ def list_fields(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsFieldCollection` :rtype: :class:`~oci.response.Response` @@ -8950,6 +9405,7 @@ def list_fields(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "is_match_all", "source_ids", @@ -9075,6 +9531,10 @@ def list_label_priorities(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LabelPriorityCollection` :rtype: :class:`~oci.response.Response` @@ -9086,6 +9546,7 @@ def list_label_priorities(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -9184,6 +9645,10 @@ def list_label_source_details(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LabelSourceCollection` :rtype: :class:`~oci.response.Response` @@ -9195,6 +9660,7 @@ def list_label_source_details(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "label_name", "limit", @@ -9336,6 +9802,10 @@ def list_labels(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsLabelCollection` :rtype: :class:`~oci.response.Response` @@ -9347,6 +9817,7 @@ def list_labels(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "label_name", "label_display_text", @@ -9506,6 +9977,10 @@ def list_log_analytics_em_bridges(self, namespace_name, compartment_id, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsEmBridgeCollection` :rtype: :class:`~oci.response.Response` @@ -9517,6 +9992,7 @@ def list_log_analytics_em_bridges(self, namespace_name, compartment_id, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "lifecycle_state", @@ -9705,6 +10181,10 @@ def list_log_analytics_entities(self, namespace_name, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsEntityCollection` :rtype: :class:`~oci.response.Response` @@ -9716,6 +10196,7 @@ def list_log_analytics_entities(self, namespace_name, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "name_contains", @@ -9885,6 +10366,10 @@ def list_log_analytics_entity_topology(self, namespace_name, log_analytics_entit To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsEntityTopologyCollection` :rtype: :class:`~oci.response.Response` @@ -9896,6 +10381,7 @@ def list_log_analytics_entity_topology(self, namespace_name, log_analytics_entit # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "limit", @@ -10038,6 +10524,10 @@ def list_log_analytics_entity_types(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsEntityTypeCollection` :rtype: :class:`~oci.response.Response` @@ -10049,6 +10539,7 @@ def list_log_analytics_entity_types(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "name_contains", @@ -10190,6 +10681,10 @@ def list_log_analytics_log_groups(self, namespace_name, compartment_id, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsLogGroupSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -10201,6 +10696,7 @@ def list_log_analytics_log_groups(self, namespace_name, compartment_id, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -10328,6 +10824,10 @@ def list_log_analytics_object_collection_rules(self, namespace_name, compartment To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsObjectCollectionRuleCollection` :rtype: :class:`~oci.response.Response` @@ -10339,6 +10839,7 @@ def list_log_analytics_object_collection_rules(self, namespace_name, compartment # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "lifecycle_state", @@ -10461,6 +10962,10 @@ def list_log_sets(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogSetCollection` :rtype: :class:`~oci.response.Response` @@ -10472,6 +10977,7 @@ def list_log_sets(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -10604,6 +11110,10 @@ def list_lookups(self, namespace_name, type, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsLookupCollection` :rtype: :class:`~oci.response.Response` @@ -10615,6 +11125,7 @@ def list_lookups(self, namespace_name, type, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lookup_display_text", "is_system", @@ -10758,6 +11269,10 @@ def list_meta_source_types(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsMetaSourceTypeCollection` :rtype: :class:`~oci.response.Response` @@ -10769,6 +11284,7 @@ def list_meta_source_types(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -10866,6 +11382,10 @@ def list_namespaces(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.NamespaceCollection` :rtype: :class:`~oci.response.Response` @@ -10877,6 +11397,7 @@ def list_namespaces(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -10959,6 +11480,10 @@ def list_parser_functions(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsParserFunctionCollection` :rtype: :class:`~oci.response.Response` @@ -10970,6 +11495,7 @@ def list_parser_functions(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "parser_name", "limit", @@ -11084,6 +11610,10 @@ def list_parser_meta_plugins(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsParserMetaPluginCollection` :rtype: :class:`~oci.response.Response` @@ -11095,6 +11625,7 @@ def list_parser_meta_plugins(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -11243,6 +11774,10 @@ def list_parsers(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsParserCollection` :rtype: :class:`~oci.response.Response` @@ -11254,6 +11789,7 @@ def list_parsers(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "is_match_all", "source_type", @@ -11409,6 +11945,10 @@ def list_query_work_requests(self, namespace_name, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.QueryWorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -11420,6 +11960,7 @@ def list_query_work_requests(self, namespace_name, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "mode", "opc_request_id", @@ -11549,6 +12090,10 @@ def list_recalled_data(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.RecalledDataCollection` :rtype: :class:`~oci.response.Response` @@ -11560,6 +12105,7 @@ def list_recalled_data(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -11688,6 +12234,10 @@ def list_resource_categories(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsResourceCategoryCollection` :rtype: :class:`~oci.response.Response` @@ -11699,6 +12249,7 @@ def list_resource_categories(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "categories", "resource_types", @@ -11835,6 +12386,10 @@ def list_scheduled_tasks(self, namespace_name, task_type, compartment_id, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.ScheduledTaskCollection` :rtype: :class:`~oci.response.Response` @@ -11846,6 +12401,7 @@ def list_scheduled_tasks(self, namespace_name, task_type, compartment_id, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -11990,6 +12546,10 @@ def list_source_associations(self, namespace_name, source_name, compartment_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsAssociationCollection` :rtype: :class:`~oci.response.Response` @@ -12001,6 +12561,7 @@ def list_source_associations(self, namespace_name, source_name, compartment_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "entity_id", "life_cycle_state", @@ -12145,6 +12706,10 @@ def list_source_event_types(self, namespace_name, source_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.EventTypeCollection` :rtype: :class:`~oci.response.Response` @@ -12156,6 +12721,7 @@ def list_source_event_types(self, namespace_name, source_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_text", "is_system", @@ -12285,6 +12851,10 @@ def list_source_extended_field_definitions(self, namespace_name, source_name, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsSourceExtendedFieldDefinitionCollection` :rtype: :class:`~oci.response.Response` @@ -12296,6 +12866,7 @@ def list_source_extended_field_definitions(self, namespace_name, source_name, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -12409,6 +12980,10 @@ def list_source_label_operators(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsLabelOperatorCollection` :rtype: :class:`~oci.response.Response` @@ -12420,6 +12995,7 @@ def list_source_label_operators(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -12532,6 +13108,10 @@ def list_source_meta_functions(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsMetaFunctionCollection` :rtype: :class:`~oci.response.Response` @@ -12543,6 +13123,7 @@ def list_source_meta_functions(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -12661,6 +13242,10 @@ def list_source_patterns(self, namespace_name, source_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsSourcePatternCollection` :rtype: :class:`~oci.response.Response` @@ -12672,6 +13257,7 @@ def list_source_patterns(self, namespace_name, source_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "is_include", "limit", @@ -12822,6 +13408,10 @@ def list_sources(self, namespace_name, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsSourceCollection` :rtype: :class:`~oci.response.Response` @@ -12833,6 +13423,7 @@ def list_sources(self, namespace_name, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "entity_type", "source_display_text", @@ -12975,6 +13566,10 @@ def list_storage_work_request_errors(self, compartment_id, work_request_id, name To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -12986,6 +13581,7 @@ def list_storage_work_request_errors(self, compartment_id, work_request_id, name # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -13126,6 +13722,10 @@ def list_storage_work_requests(self, compartment_id, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.StorageWorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -13137,6 +13737,7 @@ def list_storage_work_requests(self, compartment_id, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -13266,6 +13867,10 @@ def list_supported_char_encodings(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.CharEncodingCollection` :rtype: :class:`~oci.response.Response` @@ -13277,6 +13882,7 @@ def list_supported_char_encodings(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -13361,6 +13967,10 @@ def list_supported_timezones(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.TimezoneCollection` :rtype: :class:`~oci.response.Response` @@ -13372,6 +13982,7 @@ def list_supported_timezones(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -13478,6 +14089,10 @@ def list_upload_files(self, namespace_name, upload_reference, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.UploadFileCollection` :rtype: :class:`~oci.response.Response` @@ -13489,6 +14104,7 @@ def list_upload_files(self, namespace_name, upload_reference, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -13607,6 +14223,10 @@ def list_upload_warnings(self, namespace_name, upload_reference, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.UploadWarningCollection` :rtype: :class:`~oci.response.Response` @@ -13618,6 +14238,7 @@ def list_upload_warnings(self, namespace_name, upload_reference, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -13727,6 +14348,10 @@ def list_uploads(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.UploadCollection` :rtype: :class:`~oci.response.Response` @@ -13738,6 +14363,7 @@ def list_uploads(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "name_contains", @@ -13906,6 +14532,10 @@ def list_warnings(self, namespace_name, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsWarningCollection` :rtype: :class:`~oci.response.Response` @@ -13917,6 +14547,7 @@ def list_warnings(self, namespace_name, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "warning_state", "source_name", @@ -14052,6 +14683,10 @@ def list_work_request_errors(self, namespace_name, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -14063,6 +14698,7 @@ def list_work_request_errors(self, namespace_name, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -14153,6 +14789,10 @@ def list_work_request_logs(self, namespace_name, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.WorkRequestLogCollection` :rtype: :class:`~oci.response.Response` @@ -14164,6 +14804,7 @@ def list_work_request_logs(self, namespace_name, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -14252,6 +14893,10 @@ def list_work_requests(self, namespace_name, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.WorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -14263,6 +14908,7 @@ def list_work_requests(self, namespace_name, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -14349,6 +14995,10 @@ def offboard_namespace(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -14360,6 +15010,7 @@ def offboard_namespace(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -14436,6 +15087,10 @@ def onboard_namespace(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -14447,6 +15102,7 @@ def onboard_namespace(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -14519,6 +15175,10 @@ def parse_query(self, namespace_name, parse_query_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.ParseQueryOutput` :rtype: :class:`~oci.response.Response` @@ -14530,6 +15190,7 @@ def parse_query(self, namespace_name, parse_query_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -14615,6 +15276,10 @@ def pause_scheduled_task(self, namespace_name, scheduled_task_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.ScheduledTask` :rtype: :class:`~oci.response.Response` @@ -14626,6 +15291,7 @@ def pause_scheduled_task(self, namespace_name, scheduled_task_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -14715,6 +15381,10 @@ def purge_storage_data(self, namespace_name, purge_storage_data_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -14726,6 +15396,7 @@ def purge_storage_data(self, namespace_name, purge_storage_data_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -14815,6 +15486,10 @@ def put_query_work_request_background(self, namespace_name, work_request_id, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.QueryWorkRequest` :rtype: :class:`~oci.response.Response` @@ -14826,6 +15501,7 @@ def put_query_work_request_background(self, namespace_name, work_request_id, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -14906,6 +15582,10 @@ def query(self, namespace_name, query_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.QueryAggregation` :rtype: :class:`~oci.response.Response` @@ -14917,6 +15597,7 @@ def query(self, namespace_name, query_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "opc_request_id", @@ -15018,6 +15699,10 @@ def recall_archived_data(self, namespace_name, recall_archived_data_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -15029,6 +15714,7 @@ def recall_archived_data(self, namespace_name, recall_archived_data_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -15138,6 +15824,10 @@ def register_lookup(self, namespace_name, type, register_lookup_content_file_bod The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings :param int buffer_limit: (optional) A buffer limit for the stream to be buffered. buffer_limit is used to set the buffer size capacity. Streams will be read until the size of the buffer reaches the buffer_limit. If the stream size is greater than the buffer_limit, a BufferError exception will be thrown. @@ -15157,6 +15847,7 @@ def register_lookup(self, namespace_name, type, register_lookup_content_file_bod # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "buffer_limit", "name", @@ -15295,6 +15986,10 @@ def release_recalled_data(self, namespace_name, release_recalled_data_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -15306,6 +16001,7 @@ def release_recalled_data(self, namespace_name, release_recalled_data_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -15403,6 +16099,10 @@ def remove_entity_associations(self, namespace_name, log_analytics_entity_id, re To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -15414,6 +16114,7 @@ def remove_entity_associations(self, namespace_name, log_analytics_entity_id, re # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -15502,6 +16203,10 @@ def remove_preferences(self, namespace_name, remove_preferences_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -15513,6 +16218,7 @@ def remove_preferences(self, namespace_name, remove_preferences_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -15591,6 +16297,10 @@ def remove_resource_categories(self, namespace_name, remove_resource_categories_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -15602,6 +16312,7 @@ def remove_resource_categories(self, namespace_name, remove_resource_categories_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -15687,6 +16398,10 @@ def remove_source_event_types(self, namespace_name, source_name, remove_event_ty To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -15698,6 +16413,7 @@ def remove_source_event_types(self, namespace_name, source_name, remove_event_ty # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -15785,6 +16501,10 @@ def resume_scheduled_task(self, namespace_name, scheduled_task_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.ScheduledTask` :rtype: :class:`~oci.response.Response` @@ -15796,6 +16516,7 @@ def resume_scheduled_task(self, namespace_name, scheduled_task_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -15888,6 +16609,10 @@ def run(self, namespace_name, scheduled_task_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -15899,6 +16624,7 @@ def run(self, namespace_name, scheduled_task_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "time_start", "time_end", @@ -15988,6 +16714,10 @@ def set_unprocessed_data_bucket(self, namespace_name, bucket_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.UnprocessedDataBucket` :rtype: :class:`~oci.response.Response` @@ -15999,6 +16729,7 @@ def set_unprocessed_data_bucket(self, namespace_name, bucket_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "is_enabled", "opc_request_id" @@ -16079,6 +16810,10 @@ def suggest(self, namespace_name, suggest_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.SuggestOutput` :rtype: :class:`~oci.response.Response` @@ -16090,6 +16825,7 @@ def suggest(self, namespace_name, suggest_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -16177,6 +16913,10 @@ def suppress_warning(self, namespace_name, warning_reference_details, compartmen To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -16188,6 +16928,7 @@ def suppress_warning(self, namespace_name, warning_reference_details, compartmen # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -16289,6 +17030,10 @@ def test_parser(self, namespace_name, test_parser_payload_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.ParserTestResult` :rtype: :class:`~oci.response.Response` @@ -16300,6 +17045,7 @@ def test_parser(self, namespace_name, test_parser_payload_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "scope", "req_origin_module", @@ -16407,6 +17153,10 @@ def unsuppress_warning(self, namespace_name, warning_reference_details, compartm To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -16418,6 +17168,7 @@ def unsuppress_warning(self, namespace_name, warning_reference_details, compartm # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -16513,6 +17264,10 @@ def update_log_analytics_em_bridge(self, namespace_name, log_analytics_em_bridge To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsEmBridge` :rtype: :class:`~oci.response.Response` @@ -16524,6 +17279,7 @@ def update_log_analytics_em_bridge(self, namespace_name, log_analytics_em_bridge # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -16614,6 +17370,10 @@ def update_log_analytics_entity(self, namespace_name, log_analytics_entity_id, u To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsEntity` :rtype: :class:`~oci.response.Response` @@ -16625,6 +17385,7 @@ def update_log_analytics_entity(self, namespace_name, log_analytics_entity_id, u # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -16715,6 +17476,10 @@ def update_log_analytics_entity_type(self, namespace_name, update_log_analytics_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -16726,6 +17491,7 @@ def update_log_analytics_entity_type(self, namespace_name, update_log_analytics_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -16814,6 +17580,10 @@ def update_log_analytics_log_group(self, namespace_name, log_analytics_log_group To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsLogGroup` :rtype: :class:`~oci.response.Response` @@ -16825,6 +17595,7 @@ def update_log_analytics_log_group(self, namespace_name, log_analytics_log_group # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -16917,6 +17688,10 @@ def update_log_analytics_object_collection_rule(self, namespace_name, log_analyt To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsObjectCollectionRule` :rtype: :class:`~oci.response.Response` @@ -16928,6 +17703,7 @@ def update_log_analytics_object_collection_rule(self, namespace_name, log_analyt # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -17025,6 +17801,10 @@ def update_lookup(self, namespace_name, lookup_name, update_lookup_metadata_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsLookup` :rtype: :class:`~oci.response.Response` @@ -17036,6 +17816,7 @@ def update_lookup(self, namespace_name, lookup_name, update_lookup_metadata_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -17146,6 +17927,10 @@ def update_lookup_data(self, namespace_name, lookup_name, update_lookup_file_bod The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings :param int buffer_limit: (optional) A buffer limit for the stream to be buffered. buffer_limit is used to set the buffer size capacity. Streams will be read until the size of the buffer reaches the buffer_limit. If the stream size is greater than the buffer_limit, a BufferError exception will be thrown. @@ -17165,6 +17950,7 @@ def update_lookup_data(self, namespace_name, lookup_name, update_lookup_file_bod # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "buffer_limit", "is_force", @@ -17286,6 +18072,10 @@ def update_preferences(self, namespace_name, update_preferences_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -17297,6 +18087,7 @@ def update_preferences(self, namespace_name, update_preferences_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -17375,6 +18166,10 @@ def update_resource_categories(self, namespace_name, update_resource_categories_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -17386,6 +18181,7 @@ def update_resource_categories(self, namespace_name, update_resource_categories_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -17473,6 +18269,10 @@ def update_scheduled_task(self, namespace_name, scheduled_task_id, update_schedu To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.ScheduledTask` :rtype: :class:`~oci.response.Response` @@ -17484,6 +18284,7 @@ def update_scheduled_task(self, namespace_name, scheduled_task_id, update_schedu # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -17571,6 +18372,10 @@ def update_storage(self, namespace_name, update_storage_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.Storage` :rtype: :class:`~oci.response.Response` @@ -17582,6 +18387,7 @@ def update_storage(self, namespace_name, update_storage_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -17690,6 +18496,10 @@ def upload_log_events_file(self, namespace_name, log_group_id, upload_log_events The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings :param int buffer_limit: (optional) A buffer limit for the stream to be buffered. buffer_limit is used to set the buffer size capacity. Streams will be read until the size of the buffer reaches the buffer_limit. If the stream size is greater than the buffer_limit, a BufferError exception will be thrown. @@ -17709,6 +18519,7 @@ def upload_log_events_file(self, namespace_name, log_group_id, upload_log_events # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "buffer_limit", "opc_request_id", @@ -17799,6 +18610,7 @@ def upload_log_events_file(self, namespace_name, log_group_id, upload_log_events query_params=query_params, header_params=header_params, body=upload_log_events_file_details, + allow_control_chars=kwargs.get('allow_control_chars'), enforce_content_headers=False) else: return self.base_client.call_api( @@ -17808,6 +18620,7 @@ def upload_log_events_file(self, namespace_name, log_group_id, upload_log_events query_params=query_params, header_params=header_params, body=upload_log_events_file_details, + allow_control_chars=kwargs.get('allow_control_chars'), enforce_content_headers=False) def upload_log_file(self, namespace_name, upload_name, log_source_name, filename, opc_meta_loggrpid, upload_log_file_body, **kwargs): @@ -17887,6 +18700,10 @@ def upload_log_file(self, namespace_name, upload_name, log_source_name, filename The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings :param int buffer_limit: (optional) A buffer limit for the stream to be buffered. buffer_limit is used to set the buffer size capacity. Streams will be read until the size of the buffer reaches the buffer_limit. If the stream size is greater than the buffer_limit, a BufferError exception will be thrown. @@ -17906,6 +18723,7 @@ def upload_log_file(self, namespace_name, upload_name, log_source_name, filename # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "buffer_limit", "entity_id", @@ -18005,6 +18823,7 @@ def upload_log_file(self, namespace_name, upload_name, log_source_name, filename header_params=header_params, body=upload_log_file_body, response_type="Upload", + allow_control_chars=kwargs.get('allow_control_chars'), enforce_content_headers=False) else: return self.base_client.call_api( @@ -18015,6 +18834,7 @@ def upload_log_file(self, namespace_name, upload_name, log_source_name, filename header_params=header_params, body=upload_log_file_body, response_type="Upload", + allow_control_chars=kwargs.get('allow_control_chars'), enforce_content_headers=False) def upsert_associations(self, namespace_name, upsert_log_analytics_association_details, **kwargs): @@ -18049,6 +18869,10 @@ def upsert_associations(self, namespace_name, upsert_log_analytics_association_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -18060,6 +18884,7 @@ def upsert_associations(self, namespace_name, upsert_log_analytics_association_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "is_from_republish", "opc_retry_token", @@ -18160,6 +18985,10 @@ def upsert_field(self, namespace_name, upsert_log_analytics_field_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsField` :rtype: :class:`~oci.response.Response` @@ -18171,6 +19000,7 @@ def upsert_field(self, namespace_name, upsert_log_analytics_field_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -18267,6 +19097,10 @@ def upsert_label(self, namespace_name, upsert_log_analytics_label_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsLabel` :rtype: :class:`~oci.response.Response` @@ -18278,6 +19112,7 @@ def upsert_label(self, namespace_name, upsert_log_analytics_label_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -18374,6 +19209,10 @@ def upsert_parser(self, namespace_name, upsert_log_analytics_parser_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsParser` :rtype: :class:`~oci.response.Response` @@ -18385,6 +19224,7 @@ def upsert_parser(self, namespace_name, upsert_log_analytics_parser_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -18492,6 +19332,10 @@ def upsert_source(self, namespace_name, upsert_log_analytics_source_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsSource` :rtype: :class:`~oci.response.Response` @@ -18503,6 +19347,7 @@ def upsert_source(self, namespace_name, upsert_log_analytics_source_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "create_like_source_id", "is_incremental", @@ -18620,6 +19465,10 @@ def validate_association_parameters(self, namespace_name, upsert_log_analytics_a To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.LogAnalyticsAssociationParameterCollection` :rtype: :class:`~oci.response.Response` @@ -18631,6 +19480,7 @@ def validate_association_parameters(self, namespace_name, upsert_log_analytics_a # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -18742,6 +19592,10 @@ def validate_file(self, namespace_name, object_location, filename, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.FileValidationResponse` :rtype: :class:`~oci.response.Response` @@ -18753,6 +19607,7 @@ def validate_file(self, namespace_name, object_location, filename, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -18850,6 +19705,10 @@ def validate_source(self, namespace_name, upsert_log_analytics_source_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.SourceValidateResults` :rtype: :class:`~oci.response.Response` @@ -18861,6 +19720,7 @@ def validate_source(self, namespace_name, upsert_log_analytics_source_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "create_like_source_id", "is_incremental", @@ -18960,6 +19820,10 @@ def validate_source_extended_field_details(self, namespace_name, log_analytics_s To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.ExtendedFieldsValidationResult` :rtype: :class:`~oci.response.Response` @@ -18971,6 +19835,7 @@ def validate_source_extended_field_details(self, namespace_name, log_analytics_s # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -19057,6 +19922,10 @@ def validate_source_mapping(self, namespace_name, object_location, filename, log To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.SourceMappingResponse` :rtype: :class:`~oci.response.Response` @@ -19068,6 +19937,7 @@ def validate_source_mapping(self, namespace_name, object_location, filename, log # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -19163,6 +20033,10 @@ def verify(self, namespace_name, scheduled_task_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.log_analytics.models.VerifyOutput` :rtype: :class:`~oci.response.Response` @@ -19174,6 +20048,7 @@ def verify(self, namespace_name, scheduled_task_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "should_include_results", "opc_request_id", diff --git a/src/oci/log_analytics/log_analytics_client_composite_operations.py b/src/oci/log_analytics/log_analytics_client_composite_operations.py index cdfb443b06..6fc6ecd3af 100644 --- a/src/oci/log_analytics/log_analytics_client_composite_operations.py +++ b/src/oci/log_analytics/log_analytics_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/log_analytics/models/__init__.py b/src/oci/log_analytics/models/__init__.py index e94f73efab..4bbd6d6828 100644 --- a/src/oci/log_analytics/models/__init__.py +++ b/src/oci/log_analytics/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/log_analytics/models/abstract_column.py b/src/oci/log_analytics/models/abstract_column.py index 73bc896102..80fa624d01 100644 --- a/src/oci/log_analytics/models/abstract_column.py +++ b/src/oci/log_analytics/models/abstract_column.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/abstract_command_descriptor.py b/src/oci/log_analytics/models/abstract_command_descriptor.py index b49f9a7693..bc84f34696 100644 --- a/src/oci/log_analytics/models/abstract_command_descriptor.py +++ b/src/oci/log_analytics/models/abstract_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/abstract_field.py b/src/oci/log_analytics/models/abstract_field.py index 64fe755fc5..5d18781d42 100644 --- a/src/oci/log_analytics/models/abstract_field.py +++ b/src/oci/log_analytics/models/abstract_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/abstract_parser_test_result_log_entry.py b/src/oci/log_analytics/models/abstract_parser_test_result_log_entry.py index 6ac9218491..533aae181d 100644 --- a/src/oci/log_analytics/models/abstract_parser_test_result_log_entry.py +++ b/src/oci/log_analytics/models/abstract_parser_test_result_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/abstract_parser_test_result_log_line.py b/src/oci/log_analytics/models/abstract_parser_test_result_log_line.py index 6320661d6f..a2d927ca47 100644 --- a/src/oci/log_analytics/models/abstract_parser_test_result_log_line.py +++ b/src/oci/log_analytics/models/abstract_parser_test_result_log_line.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/action.py b/src/oci/log_analytics/models/action.py index 8d71f63430..79757898b4 100644 --- a/src/oci/log_analytics/models/action.py +++ b/src/oci/log_analytics/models/action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/add_entity_association_details.py b/src/oci/log_analytics/models/add_entity_association_details.py index d5c72e0581..86acb16e0f 100644 --- a/src/oci/log_analytics/models/add_entity_association_details.py +++ b/src/oci/log_analytics/models/add_entity_association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/add_fields_command_descriptor.py b/src/oci/log_analytics/models/add_fields_command_descriptor.py index 96c350521f..7fafff1bf8 100644 --- a/src/oci/log_analytics/models/add_fields_command_descriptor.py +++ b/src/oci/log_analytics/models/add_fields_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/agent_upload.py b/src/oci/log_analytics/models/agent_upload.py index 66af41eb07..651e153248 100644 --- a/src/oci/log_analytics/models/agent_upload.py +++ b/src/oci/log_analytics/models/agent_upload.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/archiving_configuration.py b/src/oci/log_analytics/models/archiving_configuration.py index f2590bdb2e..80042e8e02 100644 --- a/src/oci/log_analytics/models/archiving_configuration.py +++ b/src/oci/log_analytics/models/archiving_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/argument.py b/src/oci/log_analytics/models/argument.py index b275608fb2..2142735a97 100644 --- a/src/oci/log_analytics/models/argument.py +++ b/src/oci/log_analytics/models/argument.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/associable_entity.py b/src/oci/log_analytics/models/associable_entity.py index b1417c4b16..9ebe0d1276 100644 --- a/src/oci/log_analytics/models/associable_entity.py +++ b/src/oci/log_analytics/models/associable_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/associable_entity_collection.py b/src/oci/log_analytics/models/associable_entity_collection.py index bbb9bcf30d..198a17529e 100644 --- a/src/oci/log_analytics/models/associable_entity_collection.py +++ b/src/oci/log_analytics/models/associable_entity_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/association_summary_report.py b/src/oci/log_analytics/models/association_summary_report.py index bdf65dd872..2fb3b89f54 100644 --- a/src/oci/log_analytics/models/association_summary_report.py +++ b/src/oci/log_analytics/models/association_summary_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/attribute.py b/src/oci/log_analytics/models/attribute.py index abe81accd6..f6c97ada9a 100644 --- a/src/oci/log_analytics/models/attribute.py +++ b/src/oci/log_analytics/models/attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/auto_association_collection.py b/src/oci/log_analytics/models/auto_association_collection.py index 962fefe6c6..ab97020943 100644 --- a/src/oci/log_analytics/models/auto_association_collection.py +++ b/src/oci/log_analytics/models/auto_association_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/auto_association_state.py b/src/oci/log_analytics/models/auto_association_state.py index 4790ebdd10..9b11b1db8d 100644 --- a/src/oci/log_analytics/models/auto_association_state.py +++ b/src/oci/log_analytics/models/auto_association_state.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/auto_lookups.py b/src/oci/log_analytics/models/auto_lookups.py index 10b101164e..877ece56a7 100644 --- a/src/oci/log_analytics/models/auto_lookups.py +++ b/src/oci/log_analytics/models/auto_lookups.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/bottom_command_descriptor.py b/src/oci/log_analytics/models/bottom_command_descriptor.py index a44169856d..5da014d236 100644 --- a/src/oci/log_analytics/models/bottom_command_descriptor.py +++ b/src/oci/log_analytics/models/bottom_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/bucket_command_descriptor.py b/src/oci/log_analytics/models/bucket_command_descriptor.py index 25711ef19a..39f45cecf7 100644 --- a/src/oci/log_analytics/models/bucket_command_descriptor.py +++ b/src/oci/log_analytics/models/bucket_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/bucket_range.py b/src/oci/log_analytics/models/bucket_range.py index 4f82f789d2..642a5073a6 100644 --- a/src/oci/log_analytics/models/bucket_range.py +++ b/src/oci/log_analytics/models/bucket_range.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/change_log_analytics_em_bridge_compartment_details.py b/src/oci/log_analytics/models/change_log_analytics_em_bridge_compartment_details.py index d91b76de60..4a4f58b207 100644 --- a/src/oci/log_analytics/models/change_log_analytics_em_bridge_compartment_details.py +++ b/src/oci/log_analytics/models/change_log_analytics_em_bridge_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/change_log_analytics_entity_compartment_details.py b/src/oci/log_analytics/models/change_log_analytics_entity_compartment_details.py index 2c88038b3f..ee8d41f6b0 100644 --- a/src/oci/log_analytics/models/change_log_analytics_entity_compartment_details.py +++ b/src/oci/log_analytics/models/change_log_analytics_entity_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/change_log_analytics_log_group_compartment_details.py b/src/oci/log_analytics/models/change_log_analytics_log_group_compartment_details.py index 44c9ef1dd5..7c3934ad5e 100644 --- a/src/oci/log_analytics/models/change_log_analytics_log_group_compartment_details.py +++ b/src/oci/log_analytics/models/change_log_analytics_log_group_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/change_log_analytics_object_collection_rule_compartment_details.py b/src/oci/log_analytics/models/change_log_analytics_object_collection_rule_compartment_details.py index ad226efbdc..b9a7e50970 100644 --- a/src/oci/log_analytics/models/change_log_analytics_object_collection_rule_compartment_details.py +++ b/src/oci/log_analytics/models/change_log_analytics_object_collection_rule_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/change_scheduled_task_compartment_details.py b/src/oci/log_analytics/models/change_scheduled_task_compartment_details.py index aafa933504..7fb92f9334 100644 --- a/src/oci/log_analytics/models/change_scheduled_task_compartment_details.py +++ b/src/oci/log_analytics/models/change_scheduled_task_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/char_encoding_collection.py b/src/oci/log_analytics/models/char_encoding_collection.py index b8fcd7ae76..a506b4b30b 100644 --- a/src/oci/log_analytics/models/char_encoding_collection.py +++ b/src/oci/log_analytics/models/char_encoding_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/chart_column.py b/src/oci/log_analytics/models/chart_column.py index 42bfc167a7..118aa4cd3c 100644 --- a/src/oci/log_analytics/models/chart_column.py +++ b/src/oci/log_analytics/models/chart_column.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_column import AbstractColumn diff --git a/src/oci/log_analytics/models/chart_data_column.py b/src/oci/log_analytics/models/chart_data_column.py index e2f0b83ad2..fa4a01d587 100644 --- a/src/oci/log_analytics/models/chart_data_column.py +++ b/src/oci/log_analytics/models/chart_data_column.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_column import AbstractColumn diff --git a/src/oci/log_analytics/models/classify_column.py b/src/oci/log_analytics/models/classify_column.py index e08d79e460..960fcb28a7 100644 --- a/src/oci/log_analytics/models/classify_column.py +++ b/src/oci/log_analytics/models/classify_column.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_column import AbstractColumn diff --git a/src/oci/log_analytics/models/classify_command_descriptor.py b/src/oci/log_analytics/models/classify_command_descriptor.py index f70c1fe016..c466b96d0c 100644 --- a/src/oci/log_analytics/models/classify_command_descriptor.py +++ b/src/oci/log_analytics/models/classify_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/cluster_command_descriptor.py b/src/oci/log_analytics/models/cluster_command_descriptor.py index 1a434dfee8..ef881b89df 100644 --- a/src/oci/log_analytics/models/cluster_command_descriptor.py +++ b/src/oci/log_analytics/models/cluster_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/cluster_compare_command_descriptor.py b/src/oci/log_analytics/models/cluster_compare_command_descriptor.py index 54b92aecc8..64feee26ad 100644 --- a/src/oci/log_analytics/models/cluster_compare_command_descriptor.py +++ b/src/oci/log_analytics/models/cluster_compare_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/cluster_details_command_descriptor.py b/src/oci/log_analytics/models/cluster_details_command_descriptor.py index 5bfd7e796c..882c9f5594 100644 --- a/src/oci/log_analytics/models/cluster_details_command_descriptor.py +++ b/src/oci/log_analytics/models/cluster_details_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/cluster_split_command_descriptor.py b/src/oci/log_analytics/models/cluster_split_command_descriptor.py index ecc6f6dbe9..8c9bb740ff 100644 --- a/src/oci/log_analytics/models/cluster_split_command_descriptor.py +++ b/src/oci/log_analytics/models/cluster_split_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/column.py b/src/oci/log_analytics/models/column.py index 10161f1a19..6a2554dbde 100644 --- a/src/oci/log_analytics/models/column.py +++ b/src/oci/log_analytics/models/column.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_column import AbstractColumn diff --git a/src/oci/log_analytics/models/column_name.py b/src/oci/log_analytics/models/column_name.py index da92a8c99e..19dc53b5b1 100644 --- a/src/oci/log_analytics/models/column_name.py +++ b/src/oci/log_analytics/models/column_name.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/column_name_collection.py b/src/oci/log_analytics/models/column_name_collection.py index 60e9072a1a..0e414f8a97 100644 --- a/src/oci/log_analytics/models/column_name_collection.py +++ b/src/oci/log_analytics/models/column_name_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/command_descriptor.py b/src/oci/log_analytics/models/command_descriptor.py index 4943d39d84..4fc4dd1953 100644 --- a/src/oci/log_analytics/models/command_descriptor.py +++ b/src/oci/log_analytics/models/command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/compare_command_descriptor.py b/src/oci/log_analytics/models/compare_command_descriptor.py index 97e268802f..8afc6fe6ce 100644 --- a/src/oci/log_analytics/models/compare_command_descriptor.py +++ b/src/oci/log_analytics/models/compare_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/compare_content_details.py b/src/oci/log_analytics/models/compare_content_details.py index 6d94c3e6b8..65b2c437eb 100644 --- a/src/oci/log_analytics/models/compare_content_details.py +++ b/src/oci/log_analytics/models/compare_content_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/compare_content_result.py b/src/oci/log_analytics/models/compare_content_result.py index 779beba40f..e221d41810 100644 --- a/src/oci/log_analytics/models/compare_content_result.py +++ b/src/oci/log_analytics/models/compare_content_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/compare_line_result.py b/src/oci/log_analytics/models/compare_line_result.py index 55621e7a9f..f608fa510e 100644 --- a/src/oci/log_analytics/models/compare_line_result.py +++ b/src/oci/log_analytics/models/compare_line_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/create_acceleration_task_details.py b/src/oci/log_analytics/models/create_acceleration_task_details.py index 5b060ebd07..a27fef3a26 100644 --- a/src/oci/log_analytics/models/create_acceleration_task_details.py +++ b/src/oci/log_analytics/models/create_acceleration_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_scheduled_task_details import CreateScheduledTaskDetails diff --git a/src/oci/log_analytics/models/create_log_analytics_em_bridge_details.py b/src/oci/log_analytics/models/create_log_analytics_em_bridge_details.py index 959b0c3636..508e46a2af 100644 --- a/src/oci/log_analytics/models/create_log_analytics_em_bridge_details.py +++ b/src/oci/log_analytics/models/create_log_analytics_em_bridge_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/create_log_analytics_entity_details.py b/src/oci/log_analytics/models/create_log_analytics_entity_details.py index e55ec4f4b2..c35f290902 100644 --- a/src/oci/log_analytics/models/create_log_analytics_entity_details.py +++ b/src/oci/log_analytics/models/create_log_analytics_entity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/create_log_analytics_entity_type_details.py b/src/oci/log_analytics/models/create_log_analytics_entity_type_details.py index 8c90923ecc..fa14c45b99 100644 --- a/src/oci/log_analytics/models/create_log_analytics_entity_type_details.py +++ b/src/oci/log_analytics/models/create_log_analytics_entity_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/create_log_analytics_log_group_details.py b/src/oci/log_analytics/models/create_log_analytics_log_group_details.py index dac7c01d6a..136a2b0121 100644 --- a/src/oci/log_analytics/models/create_log_analytics_log_group_details.py +++ b/src/oci/log_analytics/models/create_log_analytics_log_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/create_log_analytics_object_collection_rule_details.py b/src/oci/log_analytics/models/create_log_analytics_object_collection_rule_details.py index 041800311d..9c99ad1b06 100644 --- a/src/oci/log_analytics/models/create_log_analytics_object_collection_rule_details.py +++ b/src/oci/log_analytics/models/create_log_analytics_object_collection_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/create_namespace_details.py b/src/oci/log_analytics/models/create_namespace_details.py index 11333dd612..6a65235ef8 100644 --- a/src/oci/log_analytics/models/create_namespace_details.py +++ b/src/oci/log_analytics/models/create_namespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/create_scheduled_task_details.py b/src/oci/log_analytics/models/create_scheduled_task_details.py index ea6943137e..602448dc3b 100644 --- a/src/oci/log_analytics/models/create_scheduled_task_details.py +++ b/src/oci/log_analytics/models/create_scheduled_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/create_standard_task_details.py b/src/oci/log_analytics/models/create_standard_task_details.py index 4694432a96..8fc955f696 100644 --- a/src/oci/log_analytics/models/create_standard_task_details.py +++ b/src/oci/log_analytics/models/create_standard_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_scheduled_task_details import CreateScheduledTaskDetails diff --git a/src/oci/log_analytics/models/create_view_command_descriptor.py b/src/oci/log_analytics/models/create_view_command_descriptor.py index a2ac051f78..b0cd5b35be 100644 --- a/src/oci/log_analytics/models/create_view_command_descriptor.py +++ b/src/oci/log_analytics/models/create_view_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/creation_source.py b/src/oci/log_analytics/models/creation_source.py index 105e56755b..0b4fe5a424 100644 --- a/src/oci/log_analytics/models/creation_source.py +++ b/src/oci/log_analytics/models/creation_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/cron_schedule.py b/src/oci/log_analytics/models/cron_schedule.py index ccea4f8c34..8e3e01f82a 100644 --- a/src/oci/log_analytics/models/cron_schedule.py +++ b/src/oci/log_analytics/models/cron_schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .schedule import Schedule diff --git a/src/oci/log_analytics/models/delete_command_descriptor.py b/src/oci/log_analytics/models/delete_command_descriptor.py index d116627e3a..8498a4b109 100644 --- a/src/oci/log_analytics/models/delete_command_descriptor.py +++ b/src/oci/log_analytics/models/delete_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/delete_log_analytics_association.py b/src/oci/log_analytics/models/delete_log_analytics_association.py index 97cb118db4..e008966e71 100644 --- a/src/oci/log_analytics/models/delete_log_analytics_association.py +++ b/src/oci/log_analytics/models/delete_log_analytics_association.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/delete_log_analytics_association_details.py b/src/oci/log_analytics/models/delete_log_analytics_association_details.py index 85245120ec..7c598232b8 100644 --- a/src/oci/log_analytics/models/delete_log_analytics_association_details.py +++ b/src/oci/log_analytics/models/delete_log_analytics_association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/delta_command_descriptor.py b/src/oci/log_analytics/models/delta_command_descriptor.py index 83568bfb74..57a043ff22 100644 --- a/src/oci/log_analytics/models/delta_command_descriptor.py +++ b/src/oci/log_analytics/models/delta_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/demo_mode_command_descriptor.py b/src/oci/log_analytics/models/demo_mode_command_descriptor.py index 75001e6a5a..4f4e5c2d0a 100644 --- a/src/oci/log_analytics/models/demo_mode_command_descriptor.py +++ b/src/oci/log_analytics/models/demo_mode_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/disable_auto_association_detail.py b/src/oci/log_analytics/models/disable_auto_association_detail.py index b6642e3032..35e3890d83 100644 --- a/src/oci/log_analytics/models/disable_auto_association_detail.py +++ b/src/oci/log_analytics/models/disable_auto_association_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/disable_auto_association_details.py b/src/oci/log_analytics/models/disable_auto_association_details.py index fd3c281e54..6dd58ba434 100644 --- a/src/oci/log_analytics/models/disable_auto_association_details.py +++ b/src/oci/log_analytics/models/disable_auto_association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/distinct_command_descriptor.py b/src/oci/log_analytics/models/distinct_command_descriptor.py index 2fb09f94f5..02edf5cc08 100644 --- a/src/oci/log_analytics/models/distinct_command_descriptor.py +++ b/src/oci/log_analytics/models/distinct_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/efd_regex_result.py b/src/oci/log_analytics/models/efd_regex_result.py index 1efe04612b..313908f513 100644 --- a/src/oci/log_analytics/models/efd_regex_result.py +++ b/src/oci/log_analytics/models/efd_regex_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/enable_auto_association_detail.py b/src/oci/log_analytics/models/enable_auto_association_detail.py index adc44abd68..259178cab6 100644 --- a/src/oci/log_analytics/models/enable_auto_association_detail.py +++ b/src/oci/log_analytics/models/enable_auto_association_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/enable_auto_association_details.py b/src/oci/log_analytics/models/enable_auto_association_details.py index 975f7eac9c..e0e66e4505 100644 --- a/src/oci/log_analytics/models/enable_auto_association_details.py +++ b/src/oci/log_analytics/models/enable_auto_association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/entity_type_property.py b/src/oci/log_analytics/models/entity_type_property.py index 086d17599a..37a835e9d0 100644 --- a/src/oci/log_analytics/models/entity_type_property.py +++ b/src/oci/log_analytics/models/entity_type_property.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/error_details.py b/src/oci/log_analytics/models/error_details.py index 28df9cee6f..738d2fab21 100644 --- a/src/oci/log_analytics/models/error_details.py +++ b/src/oci/log_analytics/models/error_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/estimate_purge_data_size_details.py b/src/oci/log_analytics/models/estimate_purge_data_size_details.py index 4cda12b6e4..7e5c83e9df 100644 --- a/src/oci/log_analytics/models/estimate_purge_data_size_details.py +++ b/src/oci/log_analytics/models/estimate_purge_data_size_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/estimate_purge_data_size_result.py b/src/oci/log_analytics/models/estimate_purge_data_size_result.py index 2a89f79d9d..4953e809ba 100644 --- a/src/oci/log_analytics/models/estimate_purge_data_size_result.py +++ b/src/oci/log_analytics/models/estimate_purge_data_size_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/estimate_recall_data_size_details.py b/src/oci/log_analytics/models/estimate_recall_data_size_details.py index c37491910b..a65cf0ec12 100644 --- a/src/oci/log_analytics/models/estimate_recall_data_size_details.py +++ b/src/oci/log_analytics/models/estimate_recall_data_size_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/estimate_recall_data_size_result.py b/src/oci/log_analytics/models/estimate_recall_data_size_result.py index b00ea2bb9f..7283245b7f 100644 --- a/src/oci/log_analytics/models/estimate_recall_data_size_result.py +++ b/src/oci/log_analytics/models/estimate_recall_data_size_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/estimate_release_data_size_details.py b/src/oci/log_analytics/models/estimate_release_data_size_details.py index 957612e157..92234bc34d 100644 --- a/src/oci/log_analytics/models/estimate_release_data_size_details.py +++ b/src/oci/log_analytics/models/estimate_release_data_size_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/estimate_release_data_size_result.py b/src/oci/log_analytics/models/estimate_release_data_size_result.py index 5c0042b543..5d0461dc20 100644 --- a/src/oci/log_analytics/models/estimate_release_data_size_result.py +++ b/src/oci/log_analytics/models/estimate_release_data_size_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/eval_command_descriptor.py b/src/oci/log_analytics/models/eval_command_descriptor.py index 5cb7fd07e9..a297f2c8ca 100644 --- a/src/oci/log_analytics/models/eval_command_descriptor.py +++ b/src/oci/log_analytics/models/eval_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/event_stats_command_descriptor.py b/src/oci/log_analytics/models/event_stats_command_descriptor.py index 68d4e8c8ae..0bc5e8df77 100644 --- a/src/oci/log_analytics/models/event_stats_command_descriptor.py +++ b/src/oci/log_analytics/models/event_stats_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/event_type.py b/src/oci/log_analytics/models/event_type.py index 8880ae5857..85c23e2dfe 100644 --- a/src/oci/log_analytics/models/event_type.py +++ b/src/oci/log_analytics/models/event_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/event_type_collection.py b/src/oci/log_analytics/models/event_type_collection.py index b99511cb14..e9a0e699d5 100644 --- a/src/oci/log_analytics/models/event_type_collection.py +++ b/src/oci/log_analytics/models/event_type_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/event_type_details.py b/src/oci/log_analytics/models/event_type_details.py index 7ea9f3fb33..ccf307bc5d 100644 --- a/src/oci/log_analytics/models/event_type_details.py +++ b/src/oci/log_analytics/models/event_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/export_content.py b/src/oci/log_analytics/models/export_content.py index 441228799f..30de8e6a09 100644 --- a/src/oci/log_analytics/models/export_content.py +++ b/src/oci/log_analytics/models/export_content.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/export_details.py b/src/oci/log_analytics/models/export_details.py index 60a5464ad0..b252d9a58a 100644 --- a/src/oci/log_analytics/models/export_details.py +++ b/src/oci/log_analytics/models/export_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/extended_fields_validation_result.py b/src/oci/log_analytics/models/extended_fields_validation_result.py index d806b78ab8..5d11bd496e 100644 --- a/src/oci/log_analytics/models/extended_fields_validation_result.py +++ b/src/oci/log_analytics/models/extended_fields_validation_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/extract_command_descriptor.py b/src/oci/log_analytics/models/extract_command_descriptor.py index 9ba32702dd..18f8471759 100644 --- a/src/oci/log_analytics/models/extract_command_descriptor.py +++ b/src/oci/log_analytics/models/extract_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/extract_log_field_results.py b/src/oci/log_analytics/models/extract_log_field_results.py index 447305ca07..23ea5d5b42 100644 --- a/src/oci/log_analytics/models/extract_log_field_results.py +++ b/src/oci/log_analytics/models/extract_log_field_results.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/extract_log_header_details.py b/src/oci/log_analytics/models/extract_log_header_details.py index bc68904894..e67f696283 100644 --- a/src/oci/log_analytics/models/extract_log_header_details.py +++ b/src/oci/log_analytics/models/extract_log_header_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/extract_log_header_results.py b/src/oci/log_analytics/models/extract_log_header_results.py index ea26cf3ec4..aba30d3956 100644 --- a/src/oci/log_analytics/models/extract_log_header_results.py +++ b/src/oci/log_analytics/models/extract_log_header_results.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/field.py b/src/oci/log_analytics/models/field.py index 6c2e673183..b9a9af9671 100644 --- a/src/oci/log_analytics/models/field.py +++ b/src/oci/log_analytics/models/field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_field import AbstractField diff --git a/src/oci/log_analytics/models/field_argument.py b/src/oci/log_analytics/models/field_argument.py index 6f307b1b20..433034df7e 100644 --- a/src/oci/log_analytics/models/field_argument.py +++ b/src/oci/log_analytics/models/field_argument.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .argument import Argument diff --git a/src/oci/log_analytics/models/field_map.py b/src/oci/log_analytics/models/field_map.py index b0ec290367..b004ae86e2 100644 --- a/src/oci/log_analytics/models/field_map.py +++ b/src/oci/log_analytics/models/field_map.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/field_summary_command_descriptor.py b/src/oci/log_analytics/models/field_summary_command_descriptor.py index d8e5fb8cbc..48ab9ff0f2 100644 --- a/src/oci/log_analytics/models/field_summary_command_descriptor.py +++ b/src/oci/log_analytics/models/field_summary_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/field_summary_report.py b/src/oci/log_analytics/models/field_summary_report.py index 0c45ddcd57..55fd1abe26 100644 --- a/src/oci/log_analytics/models/field_summary_report.py +++ b/src/oci/log_analytics/models/field_summary_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/field_value.py b/src/oci/log_analytics/models/field_value.py index 25a6922592..f45ddf3428 100644 --- a/src/oci/log_analytics/models/field_value.py +++ b/src/oci/log_analytics/models/field_value.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/fields_add_remove_field.py b/src/oci/log_analytics/models/fields_add_remove_field.py index 530526e7e9..d34e65261f 100644 --- a/src/oci/log_analytics/models/fields_add_remove_field.py +++ b/src/oci/log_analytics/models/fields_add_remove_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_field import AbstractField diff --git a/src/oci/log_analytics/models/fields_command_descriptor.py b/src/oci/log_analytics/models/fields_command_descriptor.py index 63ccf49a08..efec6875b1 100644 --- a/src/oci/log_analytics/models/fields_command_descriptor.py +++ b/src/oci/log_analytics/models/fields_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/file_validation_response.py b/src/oci/log_analytics/models/file_validation_response.py index df12db7506..9aef766df5 100644 --- a/src/oci/log_analytics/models/file_validation_response.py +++ b/src/oci/log_analytics/models/file_validation_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/filter.py b/src/oci/log_analytics/models/filter.py index 6b7666eb71..134e233030 100644 --- a/src/oci/log_analytics/models/filter.py +++ b/src/oci/log_analytics/models/filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/filter_details.py b/src/oci/log_analytics/models/filter_details.py index ef2572ffef..26beda63d2 100644 --- a/src/oci/log_analytics/models/filter_details.py +++ b/src/oci/log_analytics/models/filter_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/filter_output.py b/src/oci/log_analytics/models/filter_output.py index 810efffbbb..535c04cc65 100644 --- a/src/oci/log_analytics/models/filter_output.py +++ b/src/oci/log_analytics/models/filter_output.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/fixed_frequency_schedule.py b/src/oci/log_analytics/models/fixed_frequency_schedule.py index 213b6e18a4..120cffb56c 100644 --- a/src/oci/log_analytics/models/fixed_frequency_schedule.py +++ b/src/oci/log_analytics/models/fixed_frequency_schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .schedule import Schedule diff --git a/src/oci/log_analytics/models/function_field.py b/src/oci/log_analytics/models/function_field.py index 0c8a2354ce..2e6a6839a0 100644 --- a/src/oci/log_analytics/models/function_field.py +++ b/src/oci/log_analytics/models/function_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_field import AbstractField diff --git a/src/oci/log_analytics/models/generate_agent_object_name_details.py b/src/oci/log_analytics/models/generate_agent_object_name_details.py index 0a7a20b4b3..e9c3390e43 100644 --- a/src/oci/log_analytics/models/generate_agent_object_name_details.py +++ b/src/oci/log_analytics/models/generate_agent_object_name_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/geo_stats_command_descriptor.py b/src/oci/log_analytics/models/geo_stats_command_descriptor.py index a7546ba510..61254d4d3b 100644 --- a/src/oci/log_analytics/models/geo_stats_command_descriptor.py +++ b/src/oci/log_analytics/models/geo_stats_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/head_command_descriptor.py b/src/oci/log_analytics/models/head_command_descriptor.py index 7683d7e4d8..aad36ebd52 100644 --- a/src/oci/log_analytics/models/head_command_descriptor.py +++ b/src/oci/log_analytics/models/head_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/highlight_command_descriptor.py b/src/oci/log_analytics/models/highlight_command_descriptor.py index 0a2473aed6..b046023ba2 100644 --- a/src/oci/log_analytics/models/highlight_command_descriptor.py +++ b/src/oci/log_analytics/models/highlight_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/highlight_groups_command_descriptor.py b/src/oci/log_analytics/models/highlight_groups_command_descriptor.py index ef1a1fe4dd..bd2ad3af31 100644 --- a/src/oci/log_analytics/models/highlight_groups_command_descriptor.py +++ b/src/oci/log_analytics/models/highlight_groups_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/highlight_rows_command_descriptor.py b/src/oci/log_analytics/models/highlight_rows_command_descriptor.py index 26fb095b7b..18cae8307e 100644 --- a/src/oci/log_analytics/models/highlight_rows_command_descriptor.py +++ b/src/oci/log_analytics/models/highlight_rows_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/indexes.py b/src/oci/log_analytics/models/indexes.py index e9aef5bf3f..1ced26d67f 100644 --- a/src/oci/log_analytics/models/indexes.py +++ b/src/oci/log_analytics/models/indexes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/json_extract_command_descriptor.py b/src/oci/log_analytics/models/json_extract_command_descriptor.py index e81f051fea..16f9737ada 100644 --- a/src/oci/log_analytics/models/json_extract_command_descriptor.py +++ b/src/oci/log_analytics/models/json_extract_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/label_names.py b/src/oci/log_analytics/models/label_names.py index 24d239f2f7..382a39816a 100644 --- a/src/oci/log_analytics/models/label_names.py +++ b/src/oci/log_analytics/models/label_names.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/label_priority.py b/src/oci/log_analytics/models/label_priority.py index 8c779c64ef..8053c3629c 100644 --- a/src/oci/log_analytics/models/label_priority.py +++ b/src/oci/log_analytics/models/label_priority.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/label_priority_collection.py b/src/oci/log_analytics/models/label_priority_collection.py index c8814b3b46..7eea0e7e1e 100644 --- a/src/oci/log_analytics/models/label_priority_collection.py +++ b/src/oci/log_analytics/models/label_priority_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/label_source_collection.py b/src/oci/log_analytics/models/label_source_collection.py index 2989b2511d..fb47d35137 100644 --- a/src/oci/log_analytics/models/label_source_collection.py +++ b/src/oci/log_analytics/models/label_source_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/label_source_summary.py b/src/oci/log_analytics/models/label_source_summary.py index 09315c1681..c96f357906 100644 --- a/src/oci/log_analytics/models/label_source_summary.py +++ b/src/oci/log_analytics/models/label_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/label_summary_report.py b/src/oci/log_analytics/models/label_summary_report.py index 7109fbb346..81b9b35581 100644 --- a/src/oci/log_analytics/models/label_summary_report.py +++ b/src/oci/log_analytics/models/label_summary_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/link_command_descriptor.py b/src/oci/log_analytics/models/link_command_descriptor.py index 42cb824103..bd55f5130d 100644 --- a/src/oci/log_analytics/models/link_command_descriptor.py +++ b/src/oci/log_analytics/models/link_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/link_details_command_descriptor.py b/src/oci/log_analytics/models/link_details_command_descriptor.py index 1ebbb0d8b4..c18fdc0fca 100644 --- a/src/oci/log_analytics/models/link_details_command_descriptor.py +++ b/src/oci/log_analytics/models/link_details_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/literal_argument.py b/src/oci/log_analytics/models/literal_argument.py index 34e6d59e02..ca6184a303 100644 --- a/src/oci/log_analytics/models/literal_argument.py +++ b/src/oci/log_analytics/models/literal_argument.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .argument import Argument diff --git a/src/oci/log_analytics/models/log_analytics.py b/src/oci/log_analytics/models/log_analytics.py index 5ee2bfa62f..38ddc5c1c4 100644 --- a/src/oci/log_analytics/models/log_analytics.py +++ b/src/oci/log_analytics/models/log_analytics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_associated_entity.py b/src/oci/log_analytics/models/log_analytics_associated_entity.py index d1e613181f..82f504bb4c 100644 --- a/src/oci/log_analytics/models/log_analytics_associated_entity.py +++ b/src/oci/log_analytics/models/log_analytics_associated_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_associated_entity_collection.py b/src/oci/log_analytics/models/log_analytics_associated_entity_collection.py index c43135986c..111b1a37cb 100644 --- a/src/oci/log_analytics/models/log_analytics_associated_entity_collection.py +++ b/src/oci/log_analytics/models/log_analytics_associated_entity_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_association.py b/src/oci/log_analytics/models/log_analytics_association.py index bce184e301..ffd7a9df7b 100644 --- a/src/oci/log_analytics/models/log_analytics_association.py +++ b/src/oci/log_analytics/models/log_analytics_association.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_association_collection.py b/src/oci/log_analytics/models/log_analytics_association_collection.py index 88476ef803..35eb65a11c 100644 --- a/src/oci/log_analytics/models/log_analytics_association_collection.py +++ b/src/oci/log_analytics/models/log_analytics_association_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_association_parameter.py b/src/oci/log_analytics/models/log_analytics_association_parameter.py index b990a1bcfb..a1a4cb58bf 100644 --- a/src/oci/log_analytics/models/log_analytics_association_parameter.py +++ b/src/oci/log_analytics/models/log_analytics_association_parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_association_parameter_collection.py b/src/oci/log_analytics/models/log_analytics_association_parameter_collection.py index 2ba1550c09..ca8f07425e 100644 --- a/src/oci/log_analytics/models/log_analytics_association_parameter_collection.py +++ b/src/oci/log_analytics/models/log_analytics_association_parameter_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_category.py b/src/oci/log_analytics/models/log_analytics_category.py index fdbca05f65..de3d56005c 100644 --- a/src/oci/log_analytics/models/log_analytics_category.py +++ b/src/oci/log_analytics/models/log_analytics_category.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_category_collection.py b/src/oci/log_analytics/models/log_analytics_category_collection.py index 6514b3705b..c56bb2a682 100644 --- a/src/oci/log_analytics/models/log_analytics_category_collection.py +++ b/src/oci/log_analytics/models/log_analytics_category_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_collection_warning.py b/src/oci/log_analytics/models/log_analytics_collection_warning.py index 6ed3eded18..b2a415da8d 100644 --- a/src/oci/log_analytics/models/log_analytics_collection_warning.py +++ b/src/oci/log_analytics/models/log_analytics_collection_warning.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_config_work_request.py b/src/oci/log_analytics/models/log_analytics_config_work_request.py index 4021563d45..6801190048 100644 --- a/src/oci/log_analytics/models/log_analytics_config_work_request.py +++ b/src/oci/log_analytics/models/log_analytics_config_work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_config_work_request_collection.py b/src/oci/log_analytics/models/log_analytics_config_work_request_collection.py index bb030f6240..211d04cf38 100644 --- a/src/oci/log_analytics/models/log_analytics_config_work_request_collection.py +++ b/src/oci/log_analytics/models/log_analytics_config_work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_config_work_request_payload.py b/src/oci/log_analytics/models/log_analytics_config_work_request_payload.py index 8ec0dbac5e..3d5b18ce1a 100644 --- a/src/oci/log_analytics/models/log_analytics_config_work_request_payload.py +++ b/src/oci/log_analytics/models/log_analytics_config_work_request_payload.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_config_work_request_summary.py b/src/oci/log_analytics/models/log_analytics_config_work_request_summary.py index 10fbea5f08..7096391986 100644 --- a/src/oci/log_analytics/models/log_analytics_config_work_request_summary.py +++ b/src/oci/log_analytics/models/log_analytics_config_work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_em_bridge.py b/src/oci/log_analytics/models/log_analytics_em_bridge.py index 21a7a97bfb..737ec80f90 100644 --- a/src/oci/log_analytics/models/log_analytics_em_bridge.py +++ b/src/oci/log_analytics/models/log_analytics_em_bridge.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_em_bridge_collection.py b/src/oci/log_analytics/models/log_analytics_em_bridge_collection.py index 346a08b216..0db710d860 100644 --- a/src/oci/log_analytics/models/log_analytics_em_bridge_collection.py +++ b/src/oci/log_analytics/models/log_analytics_em_bridge_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_em_bridge_summary.py b/src/oci/log_analytics/models/log_analytics_em_bridge_summary.py index 43f9db13fb..83355ec4b9 100644 --- a/src/oci/log_analytics/models/log_analytics_em_bridge_summary.py +++ b/src/oci/log_analytics/models/log_analytics_em_bridge_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_em_bridge_summary_report.py b/src/oci/log_analytics/models/log_analytics_em_bridge_summary_report.py index 65c1ac5a3e..29baea7b4f 100644 --- a/src/oci/log_analytics/models/log_analytics_em_bridge_summary_report.py +++ b/src/oci/log_analytics/models/log_analytics_em_bridge_summary_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_entity.py b/src/oci/log_analytics/models/log_analytics_entity.py index fcbf84d7c6..1227dbc710 100644 --- a/src/oci/log_analytics/models/log_analytics_entity.py +++ b/src/oci/log_analytics/models/log_analytics_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_entity_collection.py b/src/oci/log_analytics/models/log_analytics_entity_collection.py index 884a707bf9..8d38f92c21 100644 --- a/src/oci/log_analytics/models/log_analytics_entity_collection.py +++ b/src/oci/log_analytics/models/log_analytics_entity_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_entity_summary.py b/src/oci/log_analytics/models/log_analytics_entity_summary.py index c6cc8191d9..e552ed664a 100644 --- a/src/oci/log_analytics/models/log_analytics_entity_summary.py +++ b/src/oci/log_analytics/models/log_analytics_entity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_entity_summary_report.py b/src/oci/log_analytics/models/log_analytics_entity_summary_report.py index 8244650693..4816af4926 100644 --- a/src/oci/log_analytics/models/log_analytics_entity_summary_report.py +++ b/src/oci/log_analytics/models/log_analytics_entity_summary_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_entity_topology_collection.py b/src/oci/log_analytics/models/log_analytics_entity_topology_collection.py index 5a3d8e8dd4..30ec09cfab 100644 --- a/src/oci/log_analytics/models/log_analytics_entity_topology_collection.py +++ b/src/oci/log_analytics/models/log_analytics_entity_topology_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_entity_topology_link.py b/src/oci/log_analytics/models/log_analytics_entity_topology_link.py index bf22ab89eb..55a4d7a4b1 100644 --- a/src/oci/log_analytics/models/log_analytics_entity_topology_link.py +++ b/src/oci/log_analytics/models/log_analytics_entity_topology_link.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_entity_topology_link_collection.py b/src/oci/log_analytics/models/log_analytics_entity_topology_link_collection.py index 5c3b2f660d..d16ed33eb1 100644 --- a/src/oci/log_analytics/models/log_analytics_entity_topology_link_collection.py +++ b/src/oci/log_analytics/models/log_analytics_entity_topology_link_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_entity_topology_summary.py b/src/oci/log_analytics/models/log_analytics_entity_topology_summary.py index ba700724c1..4fe73a02e3 100644 --- a/src/oci/log_analytics/models/log_analytics_entity_topology_summary.py +++ b/src/oci/log_analytics/models/log_analytics_entity_topology_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_entity_type.py b/src/oci/log_analytics/models/log_analytics_entity_type.py index 4f5fe45812..c8e48cec6e 100644 --- a/src/oci/log_analytics/models/log_analytics_entity_type.py +++ b/src/oci/log_analytics/models/log_analytics_entity_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_entity_type_collection.py b/src/oci/log_analytics/models/log_analytics_entity_type_collection.py index 5966407679..65af887795 100644 --- a/src/oci/log_analytics/models/log_analytics_entity_type_collection.py +++ b/src/oci/log_analytics/models/log_analytics_entity_type_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_entity_type_summary.py b/src/oci/log_analytics/models/log_analytics_entity_type_summary.py index 6dcea2461d..3f1c9a909d 100644 --- a/src/oci/log_analytics/models/log_analytics_entity_type_summary.py +++ b/src/oci/log_analytics/models/log_analytics_entity_type_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_extended_field.py b/src/oci/log_analytics/models/log_analytics_extended_field.py index 6cc596a669..8c0315337b 100644 --- a/src/oci/log_analytics/models/log_analytics_extended_field.py +++ b/src/oci/log_analytics/models/log_analytics_extended_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_field.py b/src/oci/log_analytics/models/log_analytics_field.py index bafd8f5266..f7c6bc3d25 100644 --- a/src/oci/log_analytics/models/log_analytics_field.py +++ b/src/oci/log_analytics/models/log_analytics_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_field_collection.py b/src/oci/log_analytics/models/log_analytics_field_collection.py index c7fda4a996..f274f81fed 100644 --- a/src/oci/log_analytics/models/log_analytics_field_collection.py +++ b/src/oci/log_analytics/models/log_analytics_field_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_field_summary.py b/src/oci/log_analytics/models/log_analytics_field_summary.py index af52e57cb6..eaaa1e6a7b 100644 --- a/src/oci/log_analytics/models/log_analytics_field_summary.py +++ b/src/oci/log_analytics/models/log_analytics_field_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_import_custom_change_list.py b/src/oci/log_analytics/models/log_analytics_import_custom_change_list.py index 0382918998..21063aac2b 100644 --- a/src/oci/log_analytics/models/log_analytics_import_custom_change_list.py +++ b/src/oci/log_analytics/models/log_analytics_import_custom_change_list.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_import_custom_content.py b/src/oci/log_analytics/models/log_analytics_import_custom_content.py index 79c7078bca..931bedd701 100644 --- a/src/oci/log_analytics/models/log_analytics_import_custom_content.py +++ b/src/oci/log_analytics/models/log_analytics_import_custom_content.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_label.py b/src/oci/log_analytics/models/log_analytics_label.py index 603dc80105..896a288cda 100644 --- a/src/oci/log_analytics/models/log_analytics_label.py +++ b/src/oci/log_analytics/models/log_analytics_label.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_label_alias.py b/src/oci/log_analytics/models/log_analytics_label_alias.py index c12b112378..cd5f8260f5 100644 --- a/src/oci/log_analytics/models/log_analytics_label_alias.py +++ b/src/oci/log_analytics/models/log_analytics_label_alias.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_label_collection.py b/src/oci/log_analytics/models/log_analytics_label_collection.py index e3e4bfb326..7a0fec1ba9 100644 --- a/src/oci/log_analytics/models/log_analytics_label_collection.py +++ b/src/oci/log_analytics/models/log_analytics_label_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_label_definition.py b/src/oci/log_analytics/models/log_analytics_label_definition.py index 94078d9f64..c43b67d935 100644 --- a/src/oci/log_analytics/models/log_analytics_label_definition.py +++ b/src/oci/log_analytics/models/log_analytics_label_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_label_operator.py b/src/oci/log_analytics/models/log_analytics_label_operator.py index f6c3185a4c..9e67fa0f6d 100644 --- a/src/oci/log_analytics/models/log_analytics_label_operator.py +++ b/src/oci/log_analytics/models/log_analytics_label_operator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_label_operator_collection.py b/src/oci/log_analytics/models/log_analytics_label_operator_collection.py index 8176e5c1d3..c3dbf35246 100644 --- a/src/oci/log_analytics/models/log_analytics_label_operator_collection.py +++ b/src/oci/log_analytics/models/log_analytics_label_operator_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_label_summary.py b/src/oci/log_analytics/models/log_analytics_label_summary.py index cb56c29a72..d4143e532d 100644 --- a/src/oci/log_analytics/models/log_analytics_label_summary.py +++ b/src/oci/log_analytics/models/log_analytics_label_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_label_view.py b/src/oci/log_analytics/models/log_analytics_label_view.py index 83c08f644b..eccc599e0b 100644 --- a/src/oci/log_analytics/models/log_analytics_label_view.py +++ b/src/oci/log_analytics/models/log_analytics_label_view.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_log_group.py b/src/oci/log_analytics/models/log_analytics_log_group.py index 983001c02e..046371633a 100644 --- a/src/oci/log_analytics/models/log_analytics_log_group.py +++ b/src/oci/log_analytics/models/log_analytics_log_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_log_group_summary.py b/src/oci/log_analytics/models/log_analytics_log_group_summary.py index fbf26f629f..be312d2c24 100644 --- a/src/oci/log_analytics/models/log_analytics_log_group_summary.py +++ b/src/oci/log_analytics/models/log_analytics_log_group_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_log_group_summary_collection.py b/src/oci/log_analytics/models/log_analytics_log_group_summary_collection.py index 0b44ef9e0f..3287130e7b 100644 --- a/src/oci/log_analytics/models/log_analytics_log_group_summary_collection.py +++ b/src/oci/log_analytics/models/log_analytics_log_group_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_lookup.py b/src/oci/log_analytics/models/log_analytics_lookup.py index 099488b17e..d560cf86f8 100644 --- a/src/oci/log_analytics/models/log_analytics_lookup.py +++ b/src/oci/log_analytics/models/log_analytics_lookup.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_lookup_collection.py b/src/oci/log_analytics/models/log_analytics_lookup_collection.py index 08ef57eba9..017afd5288 100644 --- a/src/oci/log_analytics/models/log_analytics_lookup_collection.py +++ b/src/oci/log_analytics/models/log_analytics_lookup_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_lookup_fields.py b/src/oci/log_analytics/models/log_analytics_lookup_fields.py index c1f05ccf53..7e1e669ae4 100644 --- a/src/oci/log_analytics/models/log_analytics_lookup_fields.py +++ b/src/oci/log_analytics/models/log_analytics_lookup_fields.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_meta_function.py b/src/oci/log_analytics/models/log_analytics_meta_function.py index 5948386336..44f385f0f3 100644 --- a/src/oci/log_analytics/models/log_analytics_meta_function.py +++ b/src/oci/log_analytics/models/log_analytics_meta_function.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_meta_function_argument.py b/src/oci/log_analytics/models/log_analytics_meta_function_argument.py index a530699278..fed43ac4a9 100644 --- a/src/oci/log_analytics/models/log_analytics_meta_function_argument.py +++ b/src/oci/log_analytics/models/log_analytics_meta_function_argument.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_meta_function_collection.py b/src/oci/log_analytics/models/log_analytics_meta_function_collection.py index eca26f318b..ab21455b42 100644 --- a/src/oci/log_analytics/models/log_analytics_meta_function_collection.py +++ b/src/oci/log_analytics/models/log_analytics_meta_function_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_meta_source_type.py b/src/oci/log_analytics/models/log_analytics_meta_source_type.py index 352cd1c992..cd1700a880 100644 --- a/src/oci/log_analytics/models/log_analytics_meta_source_type.py +++ b/src/oci/log_analytics/models/log_analytics_meta_source_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_meta_source_type_collection.py b/src/oci/log_analytics/models/log_analytics_meta_source_type_collection.py index c88aad8038..65850f8a02 100644 --- a/src/oci/log_analytics/models/log_analytics_meta_source_type_collection.py +++ b/src/oci/log_analytics/models/log_analytics_meta_source_type_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_metric.py b/src/oci/log_analytics/models/log_analytics_metric.py index 4cdeaec9bf..60642237f3 100644 --- a/src/oci/log_analytics/models/log_analytics_metric.py +++ b/src/oci/log_analytics/models/log_analytics_metric.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_object_collection_rule.py b/src/oci/log_analytics/models/log_analytics_object_collection_rule.py index b846cf8ebd..84711bc6f2 100644 --- a/src/oci/log_analytics/models/log_analytics_object_collection_rule.py +++ b/src/oci/log_analytics/models/log_analytics_object_collection_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_object_collection_rule_collection.py b/src/oci/log_analytics/models/log_analytics_object_collection_rule_collection.py index 61b7d8b370..ee3244b5cf 100644 --- a/src/oci/log_analytics/models/log_analytics_object_collection_rule_collection.py +++ b/src/oci/log_analytics/models/log_analytics_object_collection_rule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_object_collection_rule_summary.py b/src/oci/log_analytics/models/log_analytics_object_collection_rule_summary.py index 09c0162017..fb3f9b049c 100644 --- a/src/oci/log_analytics/models/log_analytics_object_collection_rule_summary.py +++ b/src/oci/log_analytics/models/log_analytics_object_collection_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_parameter.py b/src/oci/log_analytics/models/log_analytics_parameter.py index e7f03fdbff..a70ddef15b 100644 --- a/src/oci/log_analytics/models/log_analytics_parameter.py +++ b/src/oci/log_analytics/models/log_analytics_parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_parser.py b/src/oci/log_analytics/models/log_analytics_parser.py index 5a098ca98f..353bbb4f38 100644 --- a/src/oci/log_analytics/models/log_analytics_parser.py +++ b/src/oci/log_analytics/models/log_analytics_parser.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_parser_collection.py b/src/oci/log_analytics/models/log_analytics_parser_collection.py index ead02016fa..952652ff3f 100644 --- a/src/oci/log_analytics/models/log_analytics_parser_collection.py +++ b/src/oci/log_analytics/models/log_analytics_parser_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_parser_field.py b/src/oci/log_analytics/models/log_analytics_parser_field.py index 0691982e30..a44f44ea43 100644 --- a/src/oci/log_analytics/models/log_analytics_parser_field.py +++ b/src/oci/log_analytics/models/log_analytics_parser_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_parser_filter.py b/src/oci/log_analytics/models/log_analytics_parser_filter.py index 1e13ed19e8..468f6c916f 100644 --- a/src/oci/log_analytics/models/log_analytics_parser_filter.py +++ b/src/oci/log_analytics/models/log_analytics_parser_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_parser_function.py b/src/oci/log_analytics/models/log_analytics_parser_function.py index 008eef3f92..e03126c132 100644 --- a/src/oci/log_analytics/models/log_analytics_parser_function.py +++ b/src/oci/log_analytics/models/log_analytics_parser_function.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_parser_function_collection.py b/src/oci/log_analytics/models/log_analytics_parser_function_collection.py index 354584459b..a4fca51ebc 100644 --- a/src/oci/log_analytics/models/log_analytics_parser_function_collection.py +++ b/src/oci/log_analytics/models/log_analytics_parser_function_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_parser_function_parameter.py b/src/oci/log_analytics/models/log_analytics_parser_function_parameter.py index 67c028ab51..356b9d0ba3 100644 --- a/src/oci/log_analytics/models/log_analytics_parser_function_parameter.py +++ b/src/oci/log_analytics/models/log_analytics_parser_function_parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_parser_meta_plugin.py b/src/oci/log_analytics/models/log_analytics_parser_meta_plugin.py index 7cdc266a6e..8ac20c4747 100644 --- a/src/oci/log_analytics/models/log_analytics_parser_meta_plugin.py +++ b/src/oci/log_analytics/models/log_analytics_parser_meta_plugin.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_parser_meta_plugin_collection.py b/src/oci/log_analytics/models/log_analytics_parser_meta_plugin_collection.py index 55d71accea..19b04a6d82 100644 --- a/src/oci/log_analytics/models/log_analytics_parser_meta_plugin_collection.py +++ b/src/oci/log_analytics/models/log_analytics_parser_meta_plugin_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_parser_meta_plugin_parameter.py b/src/oci/log_analytics/models/log_analytics_parser_meta_plugin_parameter.py index 9f4ca71f9e..cea338d919 100644 --- a/src/oci/log_analytics/models/log_analytics_parser_meta_plugin_parameter.py +++ b/src/oci/log_analytics/models/log_analytics_parser_meta_plugin_parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_parser_summary.py b/src/oci/log_analytics/models/log_analytics_parser_summary.py index 6b9bf18a34..110c22b995 100644 --- a/src/oci/log_analytics/models/log_analytics_parser_summary.py +++ b/src/oci/log_analytics/models/log_analytics_parser_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_pattern_filter.py b/src/oci/log_analytics/models/log_analytics_pattern_filter.py index aaefbc1513..884fa0fc51 100644 --- a/src/oci/log_analytics/models/log_analytics_pattern_filter.py +++ b/src/oci/log_analytics/models/log_analytics_pattern_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_preference.py b/src/oci/log_analytics/models/log_analytics_preference.py index e2b7e78147..d6920adeb3 100644 --- a/src/oci/log_analytics/models/log_analytics_preference.py +++ b/src/oci/log_analytics/models/log_analytics_preference.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_preference_collection.py b/src/oci/log_analytics/models/log_analytics_preference_collection.py index 7cadb45406..4a5c382419 100644 --- a/src/oci/log_analytics/models/log_analytics_preference_collection.py +++ b/src/oci/log_analytics/models/log_analytics_preference_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_preference_details.py b/src/oci/log_analytics/models/log_analytics_preference_details.py index 979f9713d9..6a8bf3a367 100644 --- a/src/oci/log_analytics/models/log_analytics_preference_details.py +++ b/src/oci/log_analytics/models/log_analytics_preference_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_resource_category.py b/src/oci/log_analytics/models/log_analytics_resource_category.py index e2e1571eb2..e4b6cf17e4 100644 --- a/src/oci/log_analytics/models/log_analytics_resource_category.py +++ b/src/oci/log_analytics/models/log_analytics_resource_category.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_resource_category_collection.py b/src/oci/log_analytics/models/log_analytics_resource_category_collection.py index 7ca12a1d06..66a1239826 100644 --- a/src/oci/log_analytics/models/log_analytics_resource_category_collection.py +++ b/src/oci/log_analytics/models/log_analytics_resource_category_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_resource_category_details.py b/src/oci/log_analytics/models/log_analytics_resource_category_details.py index 6f9896ac70..f04ccb4a33 100644 --- a/src/oci/log_analytics/models/log_analytics_resource_category_details.py +++ b/src/oci/log_analytics/models/log_analytics_resource_category_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_source.py b/src/oci/log_analytics/models/log_analytics_source.py index 4fab83600c..044c301647 100644 --- a/src/oci/log_analytics/models/log_analytics_source.py +++ b/src/oci/log_analytics/models/log_analytics_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_source_collection.py b/src/oci/log_analytics/models/log_analytics_source_collection.py index 18c4ff855b..f2c6744447 100644 --- a/src/oci/log_analytics/models/log_analytics_source_collection.py +++ b/src/oci/log_analytics/models/log_analytics_source_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_source_data_filter.py b/src/oci/log_analytics/models/log_analytics_source_data_filter.py index f3bb09ce87..b8157f0b9b 100644 --- a/src/oci/log_analytics/models/log_analytics_source_data_filter.py +++ b/src/oci/log_analytics/models/log_analytics_source_data_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_source_entity_type.py b/src/oci/log_analytics/models/log_analytics_source_entity_type.py index 557b15cef9..7770cb8cea 100644 --- a/src/oci/log_analytics/models/log_analytics_source_entity_type.py +++ b/src/oci/log_analytics/models/log_analytics_source_entity_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_source_extended_field_definition.py b/src/oci/log_analytics/models/log_analytics_source_extended_field_definition.py index b680641ee0..cd2f9ca48f 100644 --- a/src/oci/log_analytics/models/log_analytics_source_extended_field_definition.py +++ b/src/oci/log_analytics/models/log_analytics_source_extended_field_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_source_extended_field_definition_collection.py b/src/oci/log_analytics/models/log_analytics_source_extended_field_definition_collection.py index 38234fab82..564610692e 100644 --- a/src/oci/log_analytics/models/log_analytics_source_extended_field_definition_collection.py +++ b/src/oci/log_analytics/models/log_analytics_source_extended_field_definition_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_source_function.py b/src/oci/log_analytics/models/log_analytics_source_function.py index e7255ae9e8..dc138f339a 100644 --- a/src/oci/log_analytics/models/log_analytics_source_function.py +++ b/src/oci/log_analytics/models/log_analytics_source_function.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_source_label_condition.py b/src/oci/log_analytics/models/log_analytics_source_label_condition.py index 8b11bb7e22..8f54402e11 100644 --- a/src/oci/log_analytics/models/log_analytics_source_label_condition.py +++ b/src/oci/log_analytics/models/log_analytics_source_label_condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_source_metadata_field.py b/src/oci/log_analytics/models/log_analytics_source_metadata_field.py index 585d951433..29316e706c 100644 --- a/src/oci/log_analytics/models/log_analytics_source_metadata_field.py +++ b/src/oci/log_analytics/models/log_analytics_source_metadata_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_source_metric.py b/src/oci/log_analytics/models/log_analytics_source_metric.py index b86340c7f3..9d33a77f6f 100644 --- a/src/oci/log_analytics/models/log_analytics_source_metric.py +++ b/src/oci/log_analytics/models/log_analytics_source_metric.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_source_pattern.py b/src/oci/log_analytics/models/log_analytics_source_pattern.py index 3eb33cdac9..dfb40d4cb4 100644 --- a/src/oci/log_analytics/models/log_analytics_source_pattern.py +++ b/src/oci/log_analytics/models/log_analytics_source_pattern.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_source_pattern_collection.py b/src/oci/log_analytics/models/log_analytics_source_pattern_collection.py index 709f6cda7e..84d6b23864 100644 --- a/src/oci/log_analytics/models/log_analytics_source_pattern_collection.py +++ b/src/oci/log_analytics/models/log_analytics_source_pattern_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_source_summary.py b/src/oci/log_analytics/models/log_analytics_source_summary.py index 0b30b629b4..a62ad034e3 100644 --- a/src/oci/log_analytics/models/log_analytics_source_summary.py +++ b/src/oci/log_analytics/models/log_analytics_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_summary.py b/src/oci/log_analytics/models/log_analytics_summary.py index 2d66136339..a1d4d8e177 100644 --- a/src/oci/log_analytics/models/log_analytics_summary.py +++ b/src/oci/log_analytics/models/log_analytics_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_warning.py b/src/oci/log_analytics/models/log_analytics_warning.py index 23479c7bd8..60cac97a0f 100644 --- a/src/oci/log_analytics/models/log_analytics_warning.py +++ b/src/oci/log_analytics/models/log_analytics_warning.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_analytics_warning_collection.py b/src/oci/log_analytics/models/log_analytics_warning_collection.py index af8b1f41ee..b0784f4748 100644 --- a/src/oci/log_analytics/models/log_analytics_warning_collection.py +++ b/src/oci/log_analytics/models/log_analytics_warning_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_group_summary_report.py b/src/oci/log_analytics/models/log_group_summary_report.py index 267dcd02f7..57d968a48b 100644 --- a/src/oci/log_analytics/models/log_group_summary_report.py +++ b/src/oci/log_analytics/models/log_group_summary_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_set_collection.py b/src/oci/log_analytics/models/log_set_collection.py index 74a6e917f5..d740240c5b 100644 --- a/src/oci/log_analytics/models/log_set_collection.py +++ b/src/oci/log_analytics/models/log_set_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/log_sets_count.py b/src/oci/log_analytics/models/log_sets_count.py index 78438e2745..92068eab2a 100644 --- a/src/oci/log_analytics/models/log_sets_count.py +++ b/src/oci/log_analytics/models/log_sets_count.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/lookup_command_descriptor.py b/src/oci/log_analytics/models/lookup_command_descriptor.py index 1676bbc39a..02f94e09ea 100644 --- a/src/oci/log_analytics/models/lookup_command_descriptor.py +++ b/src/oci/log_analytics/models/lookup_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/lookup_field.py b/src/oci/log_analytics/models/lookup_field.py index 4e028e0028..fcaf5c649f 100644 --- a/src/oci/log_analytics/models/lookup_field.py +++ b/src/oci/log_analytics/models/lookup_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/lookup_summary_report.py b/src/oci/log_analytics/models/lookup_summary_report.py index 6bb82d1e94..67c006ec50 100644 --- a/src/oci/log_analytics/models/lookup_summary_report.py +++ b/src/oci/log_analytics/models/lookup_summary_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/macro_command_descriptor.py b/src/oci/log_analytics/models/macro_command_descriptor.py index 268b37f179..f0fa63283d 100644 --- a/src/oci/log_analytics/models/macro_command_descriptor.py +++ b/src/oci/log_analytics/models/macro_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/map_command_descriptor.py b/src/oci/log_analytics/models/map_command_descriptor.py index 158ce9b200..3e1f5c1e4c 100644 --- a/src/oci/log_analytics/models/map_command_descriptor.py +++ b/src/oci/log_analytics/models/map_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/match_info.py b/src/oci/log_analytics/models/match_info.py index 8d4196225d..1a8a19c5a9 100644 --- a/src/oci/log_analytics/models/match_info.py +++ b/src/oci/log_analytics/models/match_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/metric_extraction.py b/src/oci/log_analytics/models/metric_extraction.py index 805bf642d1..4a72d59975 100644 --- a/src/oci/log_analytics/models/metric_extraction.py +++ b/src/oci/log_analytics/models/metric_extraction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/multi_search_command_descriptor.py b/src/oci/log_analytics/models/multi_search_command_descriptor.py index 649cc9b860..4c82926adb 100644 --- a/src/oci/log_analytics/models/multi_search_command_descriptor.py +++ b/src/oci/log_analytics/models/multi_search_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/namespace.py b/src/oci/log_analytics/models/namespace.py index f5e7fa8ded..a4fd68fa5c 100644 --- a/src/oci/log_analytics/models/namespace.py +++ b/src/oci/log_analytics/models/namespace.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/namespace_collection.py b/src/oci/log_analytics/models/namespace_collection.py index 5075905f90..dcef588512 100644 --- a/src/oci/log_analytics/models/namespace_collection.py +++ b/src/oci/log_analytics/models/namespace_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/namespace_summary.py b/src/oci/log_analytics/models/namespace_summary.py index fca3f1e02c..17bd8709e0 100644 --- a/src/oci/log_analytics/models/namespace_summary.py +++ b/src/oci/log_analytics/models/namespace_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/nlp_command_descriptor.py b/src/oci/log_analytics/models/nlp_command_descriptor.py index 0829e8ca21..0f682e4f3d 100644 --- a/src/oci/log_analytics/models/nlp_command_descriptor.py +++ b/src/oci/log_analytics/models/nlp_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/out_of_box_entity_type_details.py b/src/oci/log_analytics/models/out_of_box_entity_type_details.py index 7be33fc6fe..258eca6bb3 100644 --- a/src/oci/log_analytics/models/out_of_box_entity_type_details.py +++ b/src/oci/log_analytics/models/out_of_box_entity_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/parse_query_details.py b/src/oci/log_analytics/models/parse_query_details.py index 9520b99592..82f4fd13b1 100644 --- a/src/oci/log_analytics/models/parse_query_details.py +++ b/src/oci/log_analytics/models/parse_query_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/parse_query_output.py b/src/oci/log_analytics/models/parse_query_output.py index fc74ee744d..c291bd44c8 100644 --- a/src/oci/log_analytics/models/parse_query_output.py +++ b/src/oci/log_analytics/models/parse_query_output.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/parsed_content.py b/src/oci/log_analytics/models/parsed_content.py index a64f95d3e9..41c9be561f 100644 --- a/src/oci/log_analytics/models/parsed_content.py +++ b/src/oci/log_analytics/models/parsed_content.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/parsed_field.py b/src/oci/log_analytics/models/parsed_field.py index 9daa3b5e3e..8ae57e7845 100644 --- a/src/oci/log_analytics/models/parsed_field.py +++ b/src/oci/log_analytics/models/parsed_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/parser_summary_report.py b/src/oci/log_analytics/models/parser_summary_report.py index 8913809428..48465cae5a 100644 --- a/src/oci/log_analytics/models/parser_summary_report.py +++ b/src/oci/log_analytics/models/parser_summary_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/parser_test_result.py b/src/oci/log_analytics/models/parser_test_result.py index f71622aea7..9afe65afdd 100644 --- a/src/oci/log_analytics/models/parser_test_result.py +++ b/src/oci/log_analytics/models/parser_test_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/property_override.py b/src/oci/log_analytics/models/property_override.py index 9b956b0328..ce39bc06c7 100644 --- a/src/oci/log_analytics/models/property_override.py +++ b/src/oci/log_analytics/models/property_override.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/purge_action.py b/src/oci/log_analytics/models/purge_action.py index 865efd5a7c..bda9c64d06 100644 --- a/src/oci/log_analytics/models/purge_action.py +++ b/src/oci/log_analytics/models/purge_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .action import Action diff --git a/src/oci/log_analytics/models/purge_storage_data_details.py b/src/oci/log_analytics/models/purge_storage_data_details.py index 2b96a83804..64f1e8a4a2 100644 --- a/src/oci/log_analytics/models/purge_storage_data_details.py +++ b/src/oci/log_analytics/models/purge_storage_data_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/query.py b/src/oci/log_analytics/models/query.py index afe40002a9..854fd996e1 100644 --- a/src/oci/log_analytics/models/query.py +++ b/src/oci/log_analytics/models/query.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/query_aggregation.py b/src/oci/log_analytics/models/query_aggregation.py index b257be393d..ffba6535cb 100644 --- a/src/oci/log_analytics/models/query_aggregation.py +++ b/src/oci/log_analytics/models/query_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/query_details.py b/src/oci/log_analytics/models/query_details.py index 3df0af937b..11fd6ca574 100644 --- a/src/oci/log_analytics/models/query_details.py +++ b/src/oci/log_analytics/models/query_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/query_work_request.py b/src/oci/log_analytics/models/query_work_request.py index ae9c49d580..ef18135cab 100644 --- a/src/oci/log_analytics/models/query_work_request.py +++ b/src/oci/log_analytics/models/query_work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/query_work_request_collection.py b/src/oci/log_analytics/models/query_work_request_collection.py index 0d9c469d70..e02e3a11c5 100644 --- a/src/oci/log_analytics/models/query_work_request_collection.py +++ b/src/oci/log_analytics/models/query_work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/query_work_request_resource.py b/src/oci/log_analytics/models/query_work_request_resource.py index 2a8468c2ad..c3a58031e8 100644 --- a/src/oci/log_analytics/models/query_work_request_resource.py +++ b/src/oci/log_analytics/models/query_work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/query_work_request_summary.py b/src/oci/log_analytics/models/query_work_request_summary.py index 2f6928f93e..fe06df7e76 100644 --- a/src/oci/log_analytics/models/query_work_request_summary.py +++ b/src/oci/log_analytics/models/query_work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/recall_archived_data_details.py b/src/oci/log_analytics/models/recall_archived_data_details.py index b6be684079..87a07e427b 100644 --- a/src/oci/log_analytics/models/recall_archived_data_details.py +++ b/src/oci/log_analytics/models/recall_archived_data_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/recalled_data.py b/src/oci/log_analytics/models/recalled_data.py index af2ba33782..8ec37dde81 100644 --- a/src/oci/log_analytics/models/recalled_data.py +++ b/src/oci/log_analytics/models/recalled_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/recalled_data_collection.py b/src/oci/log_analytics/models/recalled_data_collection.py index d02468a668..89bbcfdb24 100644 --- a/src/oci/log_analytics/models/recalled_data_collection.py +++ b/src/oci/log_analytics/models/recalled_data_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/regex_command_descriptor.py b/src/oci/log_analytics/models/regex_command_descriptor.py index 5a5fa8f6d2..dc6f2e30a7 100644 --- a/src/oci/log_analytics/models/regex_command_descriptor.py +++ b/src/oci/log_analytics/models/regex_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/regex_match_result.py b/src/oci/log_analytics/models/regex_match_result.py index 7ae42b3a95..c1f7880e93 100644 --- a/src/oci/log_analytics/models/regex_match_result.py +++ b/src/oci/log_analytics/models/regex_match_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/register_entity_types_details.py b/src/oci/log_analytics/models/register_entity_types_details.py index c4e68c25dc..66dff4268f 100644 --- a/src/oci/log_analytics/models/register_entity_types_details.py +++ b/src/oci/log_analytics/models/register_entity_types_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/release_recalled_data_details.py b/src/oci/log_analytics/models/release_recalled_data_details.py index 15bbb8c13f..59226d0eb9 100644 --- a/src/oci/log_analytics/models/release_recalled_data_details.py +++ b/src/oci/log_analytics/models/release_recalled_data_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/remove_entity_associations_details.py b/src/oci/log_analytics/models/remove_entity_associations_details.py index aa4fbb1d03..b287aad293 100644 --- a/src/oci/log_analytics/models/remove_entity_associations_details.py +++ b/src/oci/log_analytics/models/remove_entity_associations_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/rename_command_descriptor.py b/src/oci/log_analytics/models/rename_command_descriptor.py index 9595a37783..693f04625d 100644 --- a/src/oci/log_analytics/models/rename_command_descriptor.py +++ b/src/oci/log_analytics/models/rename_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/result_column.py b/src/oci/log_analytics/models/result_column.py index b47ef9fe1f..9b7d61abd1 100644 --- a/src/oci/log_analytics/models/result_column.py +++ b/src/oci/log_analytics/models/result_column.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/schedule.py b/src/oci/log_analytics/models/schedule.py index b271e424d6..eddf2d2149 100644 --- a/src/oci/log_analytics/models/schedule.py +++ b/src/oci/log_analytics/models/schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/scheduled_task.py b/src/oci/log_analytics/models/scheduled_task.py index 0f957f8543..d7377b2c31 100644 --- a/src/oci/log_analytics/models/scheduled_task.py +++ b/src/oci/log_analytics/models/scheduled_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/scheduled_task_collection.py b/src/oci/log_analytics/models/scheduled_task_collection.py index 2dcaff03a7..2f4efd6f00 100644 --- a/src/oci/log_analytics/models/scheduled_task_collection.py +++ b/src/oci/log_analytics/models/scheduled_task_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/scheduled_task_summary.py b/src/oci/log_analytics/models/scheduled_task_summary.py index 8b39ede0c5..0fc43d8d05 100644 --- a/src/oci/log_analytics/models/scheduled_task_summary.py +++ b/src/oci/log_analytics/models/scheduled_task_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/scheduler_resource.py b/src/oci/log_analytics/models/scheduler_resource.py index 87ee17bc24..a90910c42b 100644 --- a/src/oci/log_analytics/models/scheduler_resource.py +++ b/src/oci/log_analytics/models/scheduler_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/scope_filter.py b/src/oci/log_analytics/models/scope_filter.py index be598213da..602c69432c 100644 --- a/src/oci/log_analytics/models/scope_filter.py +++ b/src/oci/log_analytics/models/scope_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/search_command_descriptor.py b/src/oci/log_analytics/models/search_command_descriptor.py index 12e2989cac..64901150f6 100644 --- a/src/oci/log_analytics/models/search_command_descriptor.py +++ b/src/oci/log_analytics/models/search_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/search_lookup_command_descriptor.py b/src/oci/log_analytics/models/search_lookup_command_descriptor.py index a17125bc36..704a43604c 100644 --- a/src/oci/log_analytics/models/search_lookup_command_descriptor.py +++ b/src/oci/log_analytics/models/search_lookup_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/service_tenancy.py b/src/oci/log_analytics/models/service_tenancy.py index 502e9a3d7c..0bf4d17c4f 100644 --- a/src/oci/log_analytics/models/service_tenancy.py +++ b/src/oci/log_analytics/models/service_tenancy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/sort_command_descriptor.py b/src/oci/log_analytics/models/sort_command_descriptor.py index d2c798724a..7f43d58b18 100644 --- a/src/oci/log_analytics/models/sort_command_descriptor.py +++ b/src/oci/log_analytics/models/sort_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/sort_field.py b/src/oci/log_analytics/models/sort_field.py index 2b7d1b5a7a..50457f45cc 100644 --- a/src/oci/log_analytics/models/sort_field.py +++ b/src/oci/log_analytics/models/sort_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_field import AbstractField diff --git a/src/oci/log_analytics/models/source_mapping_response.py b/src/oci/log_analytics/models/source_mapping_response.py index 0e631cdd95..ed317f0d36 100644 --- a/src/oci/log_analytics/models/source_mapping_response.py +++ b/src/oci/log_analytics/models/source_mapping_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/source_summary_report.py b/src/oci/log_analytics/models/source_summary_report.py index 3cd9f9baae..f631b640e0 100644 --- a/src/oci/log_analytics/models/source_summary_report.py +++ b/src/oci/log_analytics/models/source_summary_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/source_validate_details.py b/src/oci/log_analytics/models/source_validate_details.py index 4bc426aa2d..20b8d2b358 100644 --- a/src/oci/log_analytics/models/source_validate_details.py +++ b/src/oci/log_analytics/models/source_validate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/source_validate_results.py b/src/oci/log_analytics/models/source_validate_results.py index 79cbd004f9..34954fc0a7 100644 --- a/src/oci/log_analytics/models/source_validate_results.py +++ b/src/oci/log_analytics/models/source_validate_results.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/standard_task.py b/src/oci/log_analytics/models/standard_task.py index 44ab5f8ac4..3d206e2333 100644 --- a/src/oci/log_analytics/models/standard_task.py +++ b/src/oci/log_analytics/models/standard_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .scheduled_task import ScheduledTask diff --git a/src/oci/log_analytics/models/stats_command_descriptor.py b/src/oci/log_analytics/models/stats_command_descriptor.py index 5f163939d1..71b5ce9c5e 100644 --- a/src/oci/log_analytics/models/stats_command_descriptor.py +++ b/src/oci/log_analytics/models/stats_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/status_summary.py b/src/oci/log_analytics/models/status_summary.py index ebb61b88d4..4190d8d2a3 100644 --- a/src/oci/log_analytics/models/status_summary.py +++ b/src/oci/log_analytics/models/status_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/step_info.py b/src/oci/log_analytics/models/step_info.py index c7375d6b57..7cb6a09a5c 100644 --- a/src/oci/log_analytics/models/step_info.py +++ b/src/oci/log_analytics/models/step_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/storage.py b/src/oci/log_analytics/models/storage.py index 0a56a1100b..0cdba0f3cb 100644 --- a/src/oci/log_analytics/models/storage.py +++ b/src/oci/log_analytics/models/storage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/storage_usage.py b/src/oci/log_analytics/models/storage_usage.py index ded1aeba33..b9bbfbc6c4 100644 --- a/src/oci/log_analytics/models/storage_usage.py +++ b/src/oci/log_analytics/models/storage_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/storage_work_request.py b/src/oci/log_analytics/models/storage_work_request.py index 43c1aa6385..921a4c770e 100644 --- a/src/oci/log_analytics/models/storage_work_request.py +++ b/src/oci/log_analytics/models/storage_work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/storage_work_request_collection.py b/src/oci/log_analytics/models/storage_work_request_collection.py index 8222244ada..239b7dff05 100644 --- a/src/oci/log_analytics/models/storage_work_request_collection.py +++ b/src/oci/log_analytics/models/storage_work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/storage_work_request_summary.py b/src/oci/log_analytics/models/storage_work_request_summary.py index 3431fc906f..64bbd6cb37 100644 --- a/src/oci/log_analytics/models/storage_work_request_summary.py +++ b/src/oci/log_analytics/models/storage_work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/stream_action.py b/src/oci/log_analytics/models/stream_action.py index 579085f392..f817eae185 100644 --- a/src/oci/log_analytics/models/stream_action.py +++ b/src/oci/log_analytics/models/stream_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .action import Action diff --git a/src/oci/log_analytics/models/string_list_details.py b/src/oci/log_analytics/models/string_list_details.py index b233912354..e3933b0d55 100644 --- a/src/oci/log_analytics/models/string_list_details.py +++ b/src/oci/log_analytics/models/string_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/success.py b/src/oci/log_analytics/models/success.py index 3d79c4785a..253034b418 100644 --- a/src/oci/log_analytics/models/success.py +++ b/src/oci/log_analytics/models/success.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/suggest_details.py b/src/oci/log_analytics/models/suggest_details.py index 439da1749c..3aa954b261 100644 --- a/src/oci/log_analytics/models/suggest_details.py +++ b/src/oci/log_analytics/models/suggest_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/suggest_output.py b/src/oci/log_analytics/models/suggest_output.py index da74a3e18e..b731a5f210 100644 --- a/src/oci/log_analytics/models/suggest_output.py +++ b/src/oci/log_analytics/models/suggest_output.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/tail_command_descriptor.py b/src/oci/log_analytics/models/tail_command_descriptor.py index e0cbdb9dc9..02d1ca56ea 100644 --- a/src/oci/log_analytics/models/tail_command_descriptor.py +++ b/src/oci/log_analytics/models/tail_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/test_parser_payload_details.py b/src/oci/log_analytics/models/test_parser_payload_details.py index 04b0f27955..7f1ca5018a 100644 --- a/src/oci/log_analytics/models/test_parser_payload_details.py +++ b/src/oci/log_analytics/models/test_parser_payload_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/time_column.py b/src/oci/log_analytics/models/time_column.py index ecd3fbb311..7251deda48 100644 --- a/src/oci/log_analytics/models/time_column.py +++ b/src/oci/log_analytics/models/time_column.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_column import AbstractColumn diff --git a/src/oci/log_analytics/models/time_compare_command_descriptor.py b/src/oci/log_analytics/models/time_compare_command_descriptor.py index 149cb01263..8de6477886 100644 --- a/src/oci/log_analytics/models/time_compare_command_descriptor.py +++ b/src/oci/log_analytics/models/time_compare_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/time_range.py b/src/oci/log_analytics/models/time_range.py index 5d25ce7f70..577255cd6a 100644 --- a/src/oci/log_analytics/models/time_range.py +++ b/src/oci/log_analytics/models/time_range.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/time_stats_command_descriptor.py b/src/oci/log_analytics/models/time_stats_command_descriptor.py index 30f983c821..53727acc5c 100644 --- a/src/oci/log_analytics/models/time_stats_command_descriptor.py +++ b/src/oci/log_analytics/models/time_stats_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/timezone_collection.py b/src/oci/log_analytics/models/timezone_collection.py index 8c881bca72..394f0c5a86 100644 --- a/src/oci/log_analytics/models/timezone_collection.py +++ b/src/oci/log_analytics/models/timezone_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/top_command_descriptor.py b/src/oci/log_analytics/models/top_command_descriptor.py index 79cb63c925..12b5da0abd 100644 --- a/src/oci/log_analytics/models/top_command_descriptor.py +++ b/src/oci/log_analytics/models/top_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/trend_column.py b/src/oci/log_analytics/models/trend_column.py index 3b6acf01d7..b444c782ef 100644 --- a/src/oci/log_analytics/models/trend_column.py +++ b/src/oci/log_analytics/models/trend_column.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_column import AbstractColumn diff --git a/src/oci/log_analytics/models/ui_parser_test_metadata.py b/src/oci/log_analytics/models/ui_parser_test_metadata.py index a510fca761..ef9901d934 100644 --- a/src/oci/log_analytics/models/ui_parser_test_metadata.py +++ b/src/oci/log_analytics/models/ui_parser_test_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/unprocessed_data_bucket.py b/src/oci/log_analytics/models/unprocessed_data_bucket.py index 5198b477d6..789e8054b6 100644 --- a/src/oci/log_analytics/models/unprocessed_data_bucket.py +++ b/src/oci/log_analytics/models/unprocessed_data_bucket.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/update_log_analytics_em_bridge_details.py b/src/oci/log_analytics/models/update_log_analytics_em_bridge_details.py index b6a9ab0ba0..019b417aea 100644 --- a/src/oci/log_analytics/models/update_log_analytics_em_bridge_details.py +++ b/src/oci/log_analytics/models/update_log_analytics_em_bridge_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/update_log_analytics_entity_details.py b/src/oci/log_analytics/models/update_log_analytics_entity_details.py index 0be421a29b..93e64491e6 100644 --- a/src/oci/log_analytics/models/update_log_analytics_entity_details.py +++ b/src/oci/log_analytics/models/update_log_analytics_entity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/update_log_analytics_entity_type_details.py b/src/oci/log_analytics/models/update_log_analytics_entity_type_details.py index 3e69a30e25..68b355c7c6 100644 --- a/src/oci/log_analytics/models/update_log_analytics_entity_type_details.py +++ b/src/oci/log_analytics/models/update_log_analytics_entity_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/update_log_analytics_log_group_details.py b/src/oci/log_analytics/models/update_log_analytics_log_group_details.py index 9a77580216..6489cf327b 100644 --- a/src/oci/log_analytics/models/update_log_analytics_log_group_details.py +++ b/src/oci/log_analytics/models/update_log_analytics_log_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/update_log_analytics_object_collection_rule_details.py b/src/oci/log_analytics/models/update_log_analytics_object_collection_rule_details.py index a641aefd99..95dcb13f56 100644 --- a/src/oci/log_analytics/models/update_log_analytics_object_collection_rule_details.py +++ b/src/oci/log_analytics/models/update_log_analytics_object_collection_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/update_lookup_metadata_details.py b/src/oci/log_analytics/models/update_lookup_metadata_details.py index 8cbda800cb..906c10b752 100644 --- a/src/oci/log_analytics/models/update_lookup_metadata_details.py +++ b/src/oci/log_analytics/models/update_lookup_metadata_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/update_scheduled_task_details.py b/src/oci/log_analytics/models/update_scheduled_task_details.py index 0c93a26ffb..1a6404d980 100644 --- a/src/oci/log_analytics/models/update_scheduled_task_details.py +++ b/src/oci/log_analytics/models/update_scheduled_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/update_standard_task_details.py b/src/oci/log_analytics/models/update_standard_task_details.py index ba45116023..f5b6984519 100644 --- a/src/oci/log_analytics/models/update_standard_task_details.py +++ b/src/oci/log_analytics/models/update_standard_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_scheduled_task_details import UpdateScheduledTaskDetails diff --git a/src/oci/log_analytics/models/update_storage_details.py b/src/oci/log_analytics/models/update_storage_details.py index b9fdf2a1f2..9d29113640 100644 --- a/src/oci/log_analytics/models/update_storage_details.py +++ b/src/oci/log_analytics/models/update_storage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/upload.py b/src/oci/log_analytics/models/upload.py index c892081747..0ec1f28525 100644 --- a/src/oci/log_analytics/models/upload.py +++ b/src/oci/log_analytics/models/upload.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/upload_collection.py b/src/oci/log_analytics/models/upload_collection.py index 87e2916073..b7cd0a2377 100644 --- a/src/oci/log_analytics/models/upload_collection.py +++ b/src/oci/log_analytics/models/upload_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/upload_file_collection.py b/src/oci/log_analytics/models/upload_file_collection.py index 62845f238f..8225370db8 100644 --- a/src/oci/log_analytics/models/upload_file_collection.py +++ b/src/oci/log_analytics/models/upload_file_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/upload_file_status.py b/src/oci/log_analytics/models/upload_file_status.py index 68955cc7e9..12ac4fa692 100644 --- a/src/oci/log_analytics/models/upload_file_status.py +++ b/src/oci/log_analytics/models/upload_file_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/upload_file_summary.py b/src/oci/log_analytics/models/upload_file_summary.py index 9003d75e56..ddef55d4e2 100644 --- a/src/oci/log_analytics/models/upload_file_summary.py +++ b/src/oci/log_analytics/models/upload_file_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/upload_summary.py b/src/oci/log_analytics/models/upload_summary.py index 6b3e6a8e2a..7bee66748f 100644 --- a/src/oci/log_analytics/models/upload_summary.py +++ b/src/oci/log_analytics/models/upload_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/upload_warning_collection.py b/src/oci/log_analytics/models/upload_warning_collection.py index 71fa9c5616..a08e811598 100644 --- a/src/oci/log_analytics/models/upload_warning_collection.py +++ b/src/oci/log_analytics/models/upload_warning_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/upload_warning_summary.py b/src/oci/log_analytics/models/upload_warning_summary.py index 5077bd222d..58c0979f0a 100644 --- a/src/oci/log_analytics/models/upload_warning_summary.py +++ b/src/oci/log_analytics/models/upload_warning_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/upsert_log_analytics_association.py b/src/oci/log_analytics/models/upsert_log_analytics_association.py index 869d1904c0..83960801d7 100644 --- a/src/oci/log_analytics/models/upsert_log_analytics_association.py +++ b/src/oci/log_analytics/models/upsert_log_analytics_association.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/upsert_log_analytics_association_details.py b/src/oci/log_analytics/models/upsert_log_analytics_association_details.py index f0042ac503..efdd428a30 100644 --- a/src/oci/log_analytics/models/upsert_log_analytics_association_details.py +++ b/src/oci/log_analytics/models/upsert_log_analytics_association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/upsert_log_analytics_field_details.py b/src/oci/log_analytics/models/upsert_log_analytics_field_details.py index 54921e83b6..adf45e340e 100644 --- a/src/oci/log_analytics/models/upsert_log_analytics_field_details.py +++ b/src/oci/log_analytics/models/upsert_log_analytics_field_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/upsert_log_analytics_label_details.py b/src/oci/log_analytics/models/upsert_log_analytics_label_details.py index 28c9513013..f07f47c26a 100644 --- a/src/oci/log_analytics/models/upsert_log_analytics_label_details.py +++ b/src/oci/log_analytics/models/upsert_log_analytics_label_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/upsert_log_analytics_parser_details.py b/src/oci/log_analytics/models/upsert_log_analytics_parser_details.py index 53ce43f415..6dfd8c6e50 100644 --- a/src/oci/log_analytics/models/upsert_log_analytics_parser_details.py +++ b/src/oci/log_analytics/models/upsert_log_analytics_parser_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/upsert_log_analytics_source_details.py b/src/oci/log_analytics/models/upsert_log_analytics_source_details.py index 9c91582c86..983943dddc 100644 --- a/src/oci/log_analytics/models/upsert_log_analytics_source_details.py +++ b/src/oci/log_analytics/models/upsert_log_analytics_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/usage_status_item.py b/src/oci/log_analytics/models/usage_status_item.py index 14dc7d3ed6..63dd7ce899 100644 --- a/src/oci/log_analytics/models/usage_status_item.py +++ b/src/oci/log_analytics/models/usage_status_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/verify_output.py b/src/oci/log_analytics/models/verify_output.py index e8229aef53..da8e67ff88 100644 --- a/src/oci/log_analytics/models/verify_output.py +++ b/src/oci/log_analytics/models/verify_output.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/violation.py b/src/oci/log_analytics/models/violation.py index 2d7a7e5f1c..5a8b10cbbf 100644 --- a/src/oci/log_analytics/models/violation.py +++ b/src/oci/log_analytics/models/violation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/warning_reference_details.py b/src/oci/log_analytics/models/warning_reference_details.py index a5e83b438d..6c4f02bade 100644 --- a/src/oci/log_analytics/models/warning_reference_details.py +++ b/src/oci/log_analytics/models/warning_reference_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/where_command_descriptor.py b/src/oci/log_analytics/models/where_command_descriptor.py index cbd927acf9..b3cb18ddc9 100644 --- a/src/oci/log_analytics/models/where_command_descriptor.py +++ b/src/oci/log_analytics/models/where_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/log_analytics/models/work_request.py b/src/oci/log_analytics/models/work_request.py index ae247d5125..1fc2f5c6cd 100644 --- a/src/oci/log_analytics/models/work_request.py +++ b/src/oci/log_analytics/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/work_request_collection.py b/src/oci/log_analytics/models/work_request_collection.py index 5f7064dbcb..28f16aa9aa 100644 --- a/src/oci/log_analytics/models/work_request_collection.py +++ b/src/oci/log_analytics/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/work_request_error.py b/src/oci/log_analytics/models/work_request_error.py index 04dde83e08..26ac6a8cc9 100644 --- a/src/oci/log_analytics/models/work_request_error.py +++ b/src/oci/log_analytics/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/work_request_error_collection.py b/src/oci/log_analytics/models/work_request_error_collection.py index 6dacbe8737..477d1ce4f1 100644 --- a/src/oci/log_analytics/models/work_request_error_collection.py +++ b/src/oci/log_analytics/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/work_request_log.py b/src/oci/log_analytics/models/work_request_log.py index 846705a045..7065e50559 100644 --- a/src/oci/log_analytics/models/work_request_log.py +++ b/src/oci/log_analytics/models/work_request_log.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/work_request_log_collection.py b/src/oci/log_analytics/models/work_request_log_collection.py index b7bf342ec1..7812b6fce6 100644 --- a/src/oci/log_analytics/models/work_request_log_collection.py +++ b/src/oci/log_analytics/models/work_request_log_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/work_request_resource.py b/src/oci/log_analytics/models/work_request_resource.py index 6decbf1282..4a492bf1d8 100644 --- a/src/oci/log_analytics/models/work_request_resource.py +++ b/src/oci/log_analytics/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/work_request_summary.py b/src/oci/log_analytics/models/work_request_summary.py index 1f2348d601..1a4729f6ec 100644 --- a/src/oci/log_analytics/models/work_request_summary.py +++ b/src/oci/log_analytics/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/log_analytics/models/xml_extract_command_descriptor.py b/src/oci/log_analytics/models/xml_extract_command_descriptor.py index a6ee449b2c..917f611d52 100644 --- a/src/oci/log_analytics/models/xml_extract_command_descriptor.py +++ b/src/oci/log_analytics/models/xml_extract_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .abstract_command_descriptor import AbstractCommandDescriptor diff --git a/src/oci/logging/__init__.py b/src/oci/logging/__init__.py index 01ee7c9825..7e1eac52ba 100644 --- a/src/oci/logging/__init__.py +++ b/src/oci/logging/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/logging/logging_management_client.py b/src/oci/logging/logging_management_client.py index 55fcadb28c..105e129ca9 100644 --- a/src/oci/logging/logging_management_client.py +++ b/src/oci/logging/logging_management_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("logging_management", config, signer, logging_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -131,6 +137,10 @@ def change_log_group_compartment(self, log_group_id, change_log_group_compartmen To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -142,6 +152,7 @@ def change_log_group_compartment(self, log_group_id, change_log_group_compartmen # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -226,6 +237,10 @@ def change_log_log_group(self, log_group_id, log_id, change_log_log_group_detail To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -237,6 +252,7 @@ def change_log_log_group(self, log_group_id, log_id, change_log_log_group_detail # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -330,6 +346,10 @@ def change_log_saved_search_compartment(self, log_saved_search_id, change_log_sa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -341,6 +361,7 @@ def change_log_saved_search_compartment(self, log_saved_search_id, change_log_sa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -436,6 +457,10 @@ def change_unified_agent_configuration_compartment(self, unified_agent_configura To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -447,6 +472,7 @@ def change_unified_agent_configuration_compartment(self, unified_agent_configura # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -533,6 +559,10 @@ def create_log(self, log_group_id, create_log_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -544,6 +574,7 @@ def create_log(self, log_group_id, create_log_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -625,6 +656,10 @@ def create_log_group(self, create_log_group_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -636,6 +671,7 @@ def create_log_group(self, create_log_group_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -704,6 +740,10 @@ def create_log_saved_search(self, create_log_saved_search_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.logging.models.LogSavedSearch` :rtype: :class:`~oci.response.Response` @@ -715,6 +755,7 @@ def create_log_saved_search(self, create_log_saved_search_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -785,6 +826,10 @@ def create_unified_agent_configuration(self, create_unified_agent_configuration_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -796,6 +841,7 @@ def create_unified_agent_configuration(self, create_unified_agent_configuration_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -866,6 +912,10 @@ def delete_log(self, log_group_id, log_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -877,6 +927,7 @@ def delete_log(self, log_group_id, log_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -954,6 +1005,10 @@ def delete_log_group(self, log_group_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -965,6 +1020,7 @@ def delete_log_group(self, log_group_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1041,6 +1097,10 @@ def delete_log_saved_search(self, log_saved_search_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1052,6 +1112,7 @@ def delete_log_saved_search(self, log_saved_search_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1128,6 +1189,10 @@ def delete_unified_agent_configuration(self, unified_agent_configuration_id, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1139,6 +1204,7 @@ def delete_unified_agent_configuration(self, unified_agent_configuration_id, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1215,6 +1281,10 @@ def delete_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1226,6 +1296,7 @@ def delete_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1298,6 +1369,10 @@ def get_log(self, log_group_id, log_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.logging.models.Log` :rtype: :class:`~oci.response.Response` @@ -1309,6 +1384,7 @@ def get_log(self, log_group_id, log_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1379,6 +1455,10 @@ def get_log_group(self, log_group_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.logging.models.LogGroup` :rtype: :class:`~oci.response.Response` @@ -1390,6 +1470,7 @@ def get_log_group(self, log_group_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1463,6 +1544,10 @@ def get_log_included_search(self, compartment_id, log_included_search_id, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.logging.models.LogIncludedSearch` :rtype: :class:`~oci.response.Response` @@ -1474,6 +1559,7 @@ def get_log_included_search(self, compartment_id, log_included_search_id, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1550,6 +1636,10 @@ def get_log_saved_search(self, log_saved_search_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.logging.models.LogSavedSearch` :rtype: :class:`~oci.response.Response` @@ -1561,6 +1651,7 @@ def get_log_saved_search(self, log_saved_search_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1630,6 +1721,10 @@ def get_unified_agent_configuration(self, unified_agent_configuration_id, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.logging.models.UnifiedAgentConfiguration` :rtype: :class:`~oci.response.Response` @@ -1641,6 +1736,7 @@ def get_unified_agent_configuration(self, unified_agent_configuration_id, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1710,6 +1806,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.logging.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -1721,6 +1821,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1817,6 +1918,10 @@ def list_log_groups(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.logging.models.LogGroupSummary` :rtype: :class:`~oci.response.Response` @@ -1828,6 +1933,7 @@ def list_log_groups(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "is_compartment_id_in_subtree", "display_name", @@ -1945,6 +2051,10 @@ def list_log_included_searches(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.logging.models.LogIncludedSearchSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -1956,6 +2066,7 @@ def list_log_included_searches(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "log_included_search_id", "display_name", @@ -2073,6 +2184,10 @@ def list_log_saved_searches(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.logging.models.LogSavedSearchSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -2084,6 +2199,7 @@ def list_log_saved_searches(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "log_saved_search_id", "name", @@ -2213,6 +2329,10 @@ def list_logs(self, log_group_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.logging.models.LogSummary` :rtype: :class:`~oci.response.Response` @@ -2224,6 +2344,7 @@ def list_logs(self, log_group_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "log_type", "source_service", @@ -2342,6 +2463,10 @@ def list_services(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.logging.models.ServiceSummary` :rtype: :class:`~oci.response.Response` @@ -2353,6 +2478,7 @@ def list_services(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2448,6 +2574,10 @@ def list_unified_agent_configurations(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.logging.models.UnifiedAgentConfigurationCollection` :rtype: :class:`~oci.response.Response` @@ -2459,6 +2589,7 @@ def list_unified_agent_configurations(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "log_id", "is_compartment_id_in_subtree", @@ -2571,6 +2702,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.logging.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -2582,6 +2717,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -2670,6 +2806,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.logging.models.WorkRequestLog` :rtype: :class:`~oci.response.Response` @@ -2681,6 +2821,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -2790,6 +2931,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.logging.models.WorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -2801,6 +2946,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "status", "id", @@ -2912,6 +3058,10 @@ def update_log(self, log_group_id, log_id, update_log_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2923,6 +3073,7 @@ def update_log(self, log_group_id, log_id, update_log_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3006,6 +3157,10 @@ def update_log_group(self, log_group_id, update_log_group_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3017,6 +3172,7 @@ def update_log_group(self, log_group_id, update_log_group_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3098,6 +3254,10 @@ def update_log_saved_search(self, log_saved_search_id, update_log_saved_search_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.logging.models.LogSavedSearch` :rtype: :class:`~oci.response.Response` @@ -3109,6 +3269,7 @@ def update_log_saved_search(self, log_saved_search_id, update_log_saved_search_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3193,6 +3354,10 @@ def update_unified_agent_configuration(self, unified_agent_configuration_id, upd To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3204,6 +3369,7 @@ def update_unified_agent_configuration(self, unified_agent_configuration_id, upd # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/logging/logging_management_client_composite_operations.py b/src/oci/logging/logging_management_client_composite_operations.py index 9507c10a5c..8796abeaa3 100644 --- a/src/oci/logging/logging_management_client_composite_operations.py +++ b/src/oci/logging/logging_management_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/logging/models/__init__.py b/src/oci/logging/models/__init__.py index fbd8123c75..1def777d2d 100644 --- a/src/oci/logging/models/__init__.py +++ b/src/oci/logging/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/logging/models/archiving.py b/src/oci/logging/models/archiving.py index 81cd8c49b3..c270e7d2a5 100644 --- a/src/oci/logging/models/archiving.py +++ b/src/oci/logging/models/archiving.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/category.py b/src/oci/logging/models/category.py index f6713e553b..39b8cbbc15 100644 --- a/src/oci/logging/models/category.py +++ b/src/oci/logging/models/category.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/change_log_group_compartment_details.py b/src/oci/logging/models/change_log_group_compartment_details.py index 03fc921432..efc172d252 100644 --- a/src/oci/logging/models/change_log_group_compartment_details.py +++ b/src/oci/logging/models/change_log_group_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/change_log_log_group_details.py b/src/oci/logging/models/change_log_log_group_details.py index 116e315d40..8a226f6185 100644 --- a/src/oci/logging/models/change_log_log_group_details.py +++ b/src/oci/logging/models/change_log_log_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/change_log_saved_search_compartment_details.py b/src/oci/logging/models/change_log_saved_search_compartment_details.py index 58b34c8077..88f84d2a41 100644 --- a/src/oci/logging/models/change_log_saved_search_compartment_details.py +++ b/src/oci/logging/models/change_log_saved_search_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/change_unified_agent_configuration_compartment_details.py b/src/oci/logging/models/change_unified_agent_configuration_compartment_details.py index d8bffd15fd..095abd0b98 100644 --- a/src/oci/logging/models/change_unified_agent_configuration_compartment_details.py +++ b/src/oci/logging/models/change_unified_agent_configuration_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/configuration.py b/src/oci/logging/models/configuration.py index 628fdd05d4..01e790e107 100644 --- a/src/oci/logging/models/configuration.py +++ b/src/oci/logging/models/configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/create_log_details.py b/src/oci/logging/models/create_log_details.py index bf11e1ebf4..3cdf2ae815 100644 --- a/src/oci/logging/models/create_log_details.py +++ b/src/oci/logging/models/create_log_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/create_log_group_details.py b/src/oci/logging/models/create_log_group_details.py index a5e3cafb14..867a2972db 100644 --- a/src/oci/logging/models/create_log_group_details.py +++ b/src/oci/logging/models/create_log_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/create_log_saved_search_details.py b/src/oci/logging/models/create_log_saved_search_details.py index 5db8647dfd..08fc7fcd33 100644 --- a/src/oci/logging/models/create_log_saved_search_details.py +++ b/src/oci/logging/models/create_log_saved_search_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/create_unified_agent_configuration_details.py b/src/oci/logging/models/create_unified_agent_configuration_details.py index f70a5d9047..6975545782 100644 --- a/src/oci/logging/models/create_unified_agent_configuration_details.py +++ b/src/oci/logging/models/create_unified_agent_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/grok_pattern.py b/src/oci/logging/models/grok_pattern.py index 37540e8c5f..2093e0788d 100644 --- a/src/oci/logging/models/grok_pattern.py +++ b/src/oci/logging/models/grok_pattern.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/group_association_details.py b/src/oci/logging/models/group_association_details.py index f740e7537b..b0208176b0 100644 --- a/src/oci/logging/models/group_association_details.py +++ b/src/oci/logging/models/group_association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/log.py b/src/oci/logging/models/log.py index ffe11e7bc2..8811d6838f 100644 --- a/src/oci/logging/models/log.py +++ b/src/oci/logging/models/log.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/log_group.py b/src/oci/logging/models/log_group.py index e11ef212f6..83da3269fd 100644 --- a/src/oci/logging/models/log_group.py +++ b/src/oci/logging/models/log_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/log_group_summary.py b/src/oci/logging/models/log_group_summary.py index b49a0a2ba2..ad78338e76 100644 --- a/src/oci/logging/models/log_group_summary.py +++ b/src/oci/logging/models/log_group_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/log_included_search.py b/src/oci/logging/models/log_included_search.py index 080fa33a5b..a03ce414aa 100644 --- a/src/oci/logging/models/log_included_search.py +++ b/src/oci/logging/models/log_included_search.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/log_included_search_summary.py b/src/oci/logging/models/log_included_search_summary.py index 5d9e69c4b9..b2dd00e651 100644 --- a/src/oci/logging/models/log_included_search_summary.py +++ b/src/oci/logging/models/log_included_search_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/log_included_search_summary_collection.py b/src/oci/logging/models/log_included_search_summary_collection.py index e7465968ea..231e24f7ce 100644 --- a/src/oci/logging/models/log_included_search_summary_collection.py +++ b/src/oci/logging/models/log_included_search_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/log_saved_search.py b/src/oci/logging/models/log_saved_search.py index d8497bdefc..3f8e045432 100644 --- a/src/oci/logging/models/log_saved_search.py +++ b/src/oci/logging/models/log_saved_search.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/log_saved_search_summary.py b/src/oci/logging/models/log_saved_search_summary.py index 6d5dcc655c..26a98619b3 100644 --- a/src/oci/logging/models/log_saved_search_summary.py +++ b/src/oci/logging/models/log_saved_search_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/log_saved_search_summary_collection.py b/src/oci/logging/models/log_saved_search_summary_collection.py index 716810ca17..cb2bfbc8dc 100644 --- a/src/oci/logging/models/log_saved_search_summary_collection.py +++ b/src/oci/logging/models/log_saved_search_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/log_summary.py b/src/oci/logging/models/log_summary.py index d2db4daff5..dcf17ff3ac 100644 --- a/src/oci/logging/models/log_summary.py +++ b/src/oci/logging/models/log_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/oci_service.py b/src/oci/logging/models/oci_service.py index 0f801813e8..bfc449e109 100644 --- a/src/oci/logging/models/oci_service.py +++ b/src/oci/logging/models/oci_service.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .source import Source diff --git a/src/oci/logging/models/parameter.py b/src/oci/logging/models/parameter.py index 530bb0f11c..34bd898a58 100644 --- a/src/oci/logging/models/parameter.py +++ b/src/oci/logging/models/parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/resource_type.py b/src/oci/logging/models/resource_type.py index 4ddf083623..dd3c7c2b09 100644 --- a/src/oci/logging/models/resource_type.py +++ b/src/oci/logging/models/resource_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/service_summary.py b/src/oci/logging/models/service_summary.py index e500c00477..dc76a88068 100644 --- a/src/oci/logging/models/service_summary.py +++ b/src/oci/logging/models/service_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/source.py b/src/oci/logging/models/source.py index cdbb03794b..ebba7c16c8 100644 --- a/src/oci/logging/models/source.py +++ b/src/oci/logging/models/source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/source_update_details.py b/src/oci/logging/models/source_update_details.py index 5c36ad9b68..c7cd7124ec 100644 --- a/src/oci/logging/models/source_update_details.py +++ b/src/oci/logging/models/source_update_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/unified_agent_apache2_parser.py b/src/oci/logging/models/unified_agent_apache2_parser.py index 85016b442d..bd69073b38 100644 --- a/src/oci/logging/models/unified_agent_apache2_parser.py +++ b/src/oci/logging/models/unified_agent_apache2_parser.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .unified_agent_parser import UnifiedAgentParser diff --git a/src/oci/logging/models/unified_agent_apache_error_parser.py b/src/oci/logging/models/unified_agent_apache_error_parser.py index 56f93190ab..f86224605d 100644 --- a/src/oci/logging/models/unified_agent_apache_error_parser.py +++ b/src/oci/logging/models/unified_agent_apache_error_parser.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .unified_agent_parser import UnifiedAgentParser diff --git a/src/oci/logging/models/unified_agent_auditd_parser.py b/src/oci/logging/models/unified_agent_auditd_parser.py index 64fc6745a0..99fcd557c8 100644 --- a/src/oci/logging/models/unified_agent_auditd_parser.py +++ b/src/oci/logging/models/unified_agent_auditd_parser.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .unified_agent_parser import UnifiedAgentParser diff --git a/src/oci/logging/models/unified_agent_configuration.py b/src/oci/logging/models/unified_agent_configuration.py index 3610fa7c12..1d85a80cf5 100644 --- a/src/oci/logging/models/unified_agent_configuration.py +++ b/src/oci/logging/models/unified_agent_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/unified_agent_configuration_collection.py b/src/oci/logging/models/unified_agent_configuration_collection.py index 3083db61f7..2fb749e133 100644 --- a/src/oci/logging/models/unified_agent_configuration_collection.py +++ b/src/oci/logging/models/unified_agent_configuration_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/unified_agent_configuration_summary.py b/src/oci/logging/models/unified_agent_configuration_summary.py index 780d479010..778e97c2d2 100644 --- a/src/oci/logging/models/unified_agent_configuration_summary.py +++ b/src/oci/logging/models/unified_agent_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/unified_agent_csv_parser.py b/src/oci/logging/models/unified_agent_csv_parser.py index 3576e34150..b33bc3e61d 100644 --- a/src/oci/logging/models/unified_agent_csv_parser.py +++ b/src/oci/logging/models/unified_agent_csv_parser.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .unified_agent_parser import UnifiedAgentParser diff --git a/src/oci/logging/models/unified_agent_grok_parser.py b/src/oci/logging/models/unified_agent_grok_parser.py index 8e86dd89ef..684add07c3 100644 --- a/src/oci/logging/models/unified_agent_grok_parser.py +++ b/src/oci/logging/models/unified_agent_grok_parser.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .unified_agent_parser import UnifiedAgentParser diff --git a/src/oci/logging/models/unified_agent_logging_configuration.py b/src/oci/logging/models/unified_agent_logging_configuration.py index a58fe798d3..148c34c21d 100644 --- a/src/oci/logging/models/unified_agent_logging_configuration.py +++ b/src/oci/logging/models/unified_agent_logging_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .unified_agent_service_configuration_details import UnifiedAgentServiceConfigurationDetails diff --git a/src/oci/logging/models/unified_agent_logging_destination.py b/src/oci/logging/models/unified_agent_logging_destination.py index 0de7faa98b..1c6e6da775 100644 --- a/src/oci/logging/models/unified_agent_logging_destination.py +++ b/src/oci/logging/models/unified_agent_logging_destination.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/unified_agent_logging_source.py b/src/oci/logging/models/unified_agent_logging_source.py index f11628586a..ca96b6bfa5 100644 --- a/src/oci/logging/models/unified_agent_logging_source.py +++ b/src/oci/logging/models/unified_agent_logging_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/unified_agent_msgpack_parser.py b/src/oci/logging/models/unified_agent_msgpack_parser.py index eff9f5074e..d437219678 100644 --- a/src/oci/logging/models/unified_agent_msgpack_parser.py +++ b/src/oci/logging/models/unified_agent_msgpack_parser.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .unified_agent_parser import UnifiedAgentParser diff --git a/src/oci/logging/models/unified_agent_multiline_grok_parser.py b/src/oci/logging/models/unified_agent_multiline_grok_parser.py index 5af6a8f536..9313ba9825 100644 --- a/src/oci/logging/models/unified_agent_multiline_grok_parser.py +++ b/src/oci/logging/models/unified_agent_multiline_grok_parser.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .unified_agent_parser import UnifiedAgentParser diff --git a/src/oci/logging/models/unified_agent_multiline_parser.py b/src/oci/logging/models/unified_agent_multiline_parser.py index fd839515cd..ead2577bf8 100644 --- a/src/oci/logging/models/unified_agent_multiline_parser.py +++ b/src/oci/logging/models/unified_agent_multiline_parser.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .unified_agent_parser import UnifiedAgentParser diff --git a/src/oci/logging/models/unified_agent_none_parser.py b/src/oci/logging/models/unified_agent_none_parser.py index 45127c79e9..5b69b716be 100644 --- a/src/oci/logging/models/unified_agent_none_parser.py +++ b/src/oci/logging/models/unified_agent_none_parser.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .unified_agent_parser import UnifiedAgentParser diff --git a/src/oci/logging/models/unified_agent_parser.py b/src/oci/logging/models/unified_agent_parser.py index 6fc47acfc6..7049f9dd98 100644 --- a/src/oci/logging/models/unified_agent_parser.py +++ b/src/oci/logging/models/unified_agent_parser.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/unified_agent_regex_parser.py b/src/oci/logging/models/unified_agent_regex_parser.py index 33389bf8a9..56ba86343d 100644 --- a/src/oci/logging/models/unified_agent_regex_parser.py +++ b/src/oci/logging/models/unified_agent_regex_parser.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .unified_agent_parser import UnifiedAgentParser diff --git a/src/oci/logging/models/unified_agent_service_configuration_details.py b/src/oci/logging/models/unified_agent_service_configuration_details.py index 576210c27c..ef195b195d 100644 --- a/src/oci/logging/models/unified_agent_service_configuration_details.py +++ b/src/oci/logging/models/unified_agent_service_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/unified_agent_syslog_parser.py b/src/oci/logging/models/unified_agent_syslog_parser.py index 1124371226..e3faa6fc56 100644 --- a/src/oci/logging/models/unified_agent_syslog_parser.py +++ b/src/oci/logging/models/unified_agent_syslog_parser.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .unified_agent_parser import UnifiedAgentParser diff --git a/src/oci/logging/models/unified_agent_tail_log_source.py b/src/oci/logging/models/unified_agent_tail_log_source.py index 016b547c1b..683a05def3 100644 --- a/src/oci/logging/models/unified_agent_tail_log_source.py +++ b/src/oci/logging/models/unified_agent_tail_log_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .unified_agent_logging_source import UnifiedAgentLoggingSource diff --git a/src/oci/logging/models/unified_agent_tsv_parser.py b/src/oci/logging/models/unified_agent_tsv_parser.py index 892204bd0f..e0c1d1eeaf 100644 --- a/src/oci/logging/models/unified_agent_tsv_parser.py +++ b/src/oci/logging/models/unified_agent_tsv_parser.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .unified_agent_parser import UnifiedAgentParser diff --git a/src/oci/logging/models/unified_agent_windows_event_source.py b/src/oci/logging/models/unified_agent_windows_event_source.py index 344f05e5d8..1531ea3cd3 100644 --- a/src/oci/logging/models/unified_agent_windows_event_source.py +++ b/src/oci/logging/models/unified_agent_windows_event_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .unified_agent_logging_source import UnifiedAgentLoggingSource diff --git a/src/oci/logging/models/unified_json_parser.py b/src/oci/logging/models/unified_json_parser.py index 6a9563205d..ecf21eec30 100644 --- a/src/oci/logging/models/unified_json_parser.py +++ b/src/oci/logging/models/unified_json_parser.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .unified_agent_parser import UnifiedAgentParser diff --git a/src/oci/logging/models/update_configuration_details.py b/src/oci/logging/models/update_configuration_details.py index ea0047b8b1..5d5867208e 100644 --- a/src/oci/logging/models/update_configuration_details.py +++ b/src/oci/logging/models/update_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/update_log_details.py b/src/oci/logging/models/update_log_details.py index cc17daabb2..d8f465d276 100644 --- a/src/oci/logging/models/update_log_details.py +++ b/src/oci/logging/models/update_log_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/update_log_group_details.py b/src/oci/logging/models/update_log_group_details.py index 9dbdf3d063..bd23e8e8b4 100644 --- a/src/oci/logging/models/update_log_group_details.py +++ b/src/oci/logging/models/update_log_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/update_log_saved_search_details.py b/src/oci/logging/models/update_log_saved_search_details.py index 1e61c89fe7..0bb5b8b744 100644 --- a/src/oci/logging/models/update_log_saved_search_details.py +++ b/src/oci/logging/models/update_log_saved_search_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/update_unified_agent_configuration_details.py b/src/oci/logging/models/update_unified_agent_configuration_details.py index 7ce6fc9616..f9b53ccf43 100644 --- a/src/oci/logging/models/update_unified_agent_configuration_details.py +++ b/src/oci/logging/models/update_unified_agent_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/work_request.py b/src/oci/logging/models/work_request.py index ca9211dadc..aacf1f9a38 100644 --- a/src/oci/logging/models/work_request.py +++ b/src/oci/logging/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/work_request_error.py b/src/oci/logging/models/work_request_error.py index eebd1952f5..9d8c5d73ab 100644 --- a/src/oci/logging/models/work_request_error.py +++ b/src/oci/logging/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/work_request_log.py b/src/oci/logging/models/work_request_log.py index 72454d9df7..323374ede1 100644 --- a/src/oci/logging/models/work_request_log.py +++ b/src/oci/logging/models/work_request_log.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/work_request_resource.py b/src/oci/logging/models/work_request_resource.py index 804cd18f20..4173717575 100644 --- a/src/oci/logging/models/work_request_resource.py +++ b/src/oci/logging/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/logging/models/work_request_summary.py b/src/oci/logging/models/work_request_summary.py index 11efcdd155..76416fb9d0 100644 --- a/src/oci/logging/models/work_request_summary.py +++ b/src/oci/logging/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/loggingingestion/__init__.py b/src/oci/loggingingestion/__init__.py index 7a6fbbcd3a..ebab45efe1 100644 --- a/src/oci/loggingingestion/__init__.py +++ b/src/oci/loggingingestion/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/loggingingestion/logging_client.py b/src/oci/loggingingestion/logging_client.py index d5b6e60576..0f293d418c 100644 --- a/src/oci/loggingingestion/logging_client.py +++ b/src/oci/loggingingestion/logging_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("logging", config, signer, loggingingestion_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -129,6 +135,10 @@ def put_logs(self, log_id, put_logs_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -140,6 +150,7 @@ def put_logs(self, log_id, put_logs_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "timestamp_opc_agent_processing", "opc_agent_version", diff --git a/src/oci/loggingingestion/logging_client_composite_operations.py b/src/oci/loggingingestion/logging_client_composite_operations.py index 9f9a36755c..a254237a73 100644 --- a/src/oci/loggingingestion/logging_client_composite_operations.py +++ b/src/oci/loggingingestion/logging_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/loggingingestion/models/__init__.py b/src/oci/loggingingestion/models/__init__.py index 29180d04e4..201ef66f61 100644 --- a/src/oci/loggingingestion/models/__init__.py +++ b/src/oci/loggingingestion/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/loggingingestion/models/log_entry.py b/src/oci/loggingingestion/models/log_entry.py index 1045226891..60cfe872e9 100644 --- a/src/oci/loggingingestion/models/log_entry.py +++ b/src/oci/loggingingestion/models/log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/loggingingestion/models/log_entry_batch.py b/src/oci/loggingingestion/models/log_entry_batch.py index 25caff2a70..dba9ae5135 100644 --- a/src/oci/loggingingestion/models/log_entry_batch.py +++ b/src/oci/loggingingestion/models/log_entry_batch.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/loggingingestion/models/put_logs_details.py b/src/oci/loggingingestion/models/put_logs_details.py index 5ed16ac3cc..866573a696 100644 --- a/src/oci/loggingingestion/models/put_logs_details.py +++ b/src/oci/loggingingestion/models/put_logs_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/loggingsearch/__init__.py b/src/oci/loggingsearch/__init__.py index d6ddfec56d..3b51ac34a4 100644 --- a/src/oci/loggingsearch/__init__.py +++ b/src/oci/loggingsearch/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/loggingsearch/log_search_client.py b/src/oci/loggingsearch/log_search_client.py index 1798512f39..789e911dd8 100644 --- a/src/oci/loggingsearch/log_search_client.py +++ b/src/oci/loggingsearch/log_search_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("log_search", config, signer, loggingsearch_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -124,6 +130,10 @@ def search_logs(self, search_logs_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.loggingsearch.models.SearchResponse` :rtype: :class:`~oci.response.Response` @@ -135,6 +145,7 @@ def search_logs(self, search_logs_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", diff --git a/src/oci/loggingsearch/log_search_client_composite_operations.py b/src/oci/loggingsearch/log_search_client_composite_operations.py index 52fb46937a..a77cc456ee 100644 --- a/src/oci/loggingsearch/log_search_client_composite_operations.py +++ b/src/oci/loggingsearch/log_search_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/loggingsearch/models/__init__.py b/src/oci/loggingsearch/models/__init__.py index 1b73059ba0..743e190135 100644 --- a/src/oci/loggingsearch/models/__init__.py +++ b/src/oci/loggingsearch/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/loggingsearch/models/field_info.py b/src/oci/loggingsearch/models/field_info.py index f3f0ba9d59..ad8a738287 100644 --- a/src/oci/loggingsearch/models/field_info.py +++ b/src/oci/loggingsearch/models/field_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/loggingsearch/models/search_logs_details.py b/src/oci/loggingsearch/models/search_logs_details.py index 0dd32ad93f..7ca9db4a87 100644 --- a/src/oci/loggingsearch/models/search_logs_details.py +++ b/src/oci/loggingsearch/models/search_logs_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/loggingsearch/models/search_response.py b/src/oci/loggingsearch/models/search_response.py index 683c61b961..2a6ec6212f 100644 --- a/src/oci/loggingsearch/models/search_response.py +++ b/src/oci/loggingsearch/models/search_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/loggingsearch/models/search_result.py b/src/oci/loggingsearch/models/search_result.py index ca51c66462..9f8b7a4d2e 100644 --- a/src/oci/loggingsearch/models/search_result.py +++ b/src/oci/loggingsearch/models/search_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/loggingsearch/models/search_result_summary.py b/src/oci/loggingsearch/models/search_result_summary.py index c3ad26ce2a..774a3f6048 100644 --- a/src/oci/loggingsearch/models/search_result_summary.py +++ b/src/oci/loggingsearch/models/search_result_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/__init__.py b/src/oci/management_agent/__init__.py index 82083f8588..24d07392cf 100644 --- a/src/oci/management_agent/__init__.py +++ b/src/oci/management_agent/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/management_agent/management_agent_client.py b/src/oci/management_agent/management_agent_client.py index 34e52aaceb..63255d8d13 100644 --- a/src/oci/management_agent/management_agent_client.py +++ b/src/oci/management_agent/management_agent_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("management_agent", config, signer, management_agent_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -124,6 +130,10 @@ def create_management_agent_install_key(self, create_management_agent_install_ke To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_agent.models.ManagementAgentInstallKey` :rtype: :class:`~oci.response.Response` @@ -135,6 +145,7 @@ def create_management_agent_install_key(self, create_management_agent_install_ke # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -203,6 +214,10 @@ def delete_management_agent(self, management_agent_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -214,6 +229,7 @@ def delete_management_agent(self, management_agent_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -289,6 +305,10 @@ def delete_management_agent_install_key(self, management_agent_install_key_id, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -300,6 +320,7 @@ def delete_management_agent_install_key(self, management_agent_install_key_id, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -375,6 +396,10 @@ def delete_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -386,6 +411,7 @@ def delete_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -461,6 +487,10 @@ def deploy_plugins(self, deploy_plugins_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -472,6 +502,7 @@ def deploy_plugins(self, deploy_plugins_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -532,6 +563,10 @@ def get_auto_upgradable_config(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_agent.models.AutoUpgradableConfig` :rtype: :class:`~oci.response.Response` @@ -543,6 +578,7 @@ def get_auto_upgradable_config(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -606,6 +642,10 @@ def get_management_agent(self, management_agent_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_agent.models.ManagementAgent` :rtype: :class:`~oci.response.Response` @@ -617,6 +657,7 @@ def get_management_agent(self, management_agent_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -685,6 +726,10 @@ def get_management_agent_install_key(self, management_agent_install_key_id, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_agent.models.ManagementAgentInstallKey` :rtype: :class:`~oci.response.Response` @@ -696,6 +741,7 @@ def get_management_agent_install_key(self, management_agent_install_key_id, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -767,6 +813,10 @@ def get_management_agent_install_key_content(self, management_agent_install_key_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -778,6 +828,7 @@ def get_management_agent_install_key_content(self, management_agent_install_key_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "plugin_name" @@ -854,6 +905,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_agent.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -865,6 +920,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -963,6 +1019,10 @@ def list_availability_histories(self, management_agent_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.management_agent.models.AvailabilityHistorySummary` :rtype: :class:`~oci.response.Response` @@ -974,6 +1034,7 @@ def list_availability_histories(self, management_agent_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "time_availability_status_ended_greater_than", @@ -1110,6 +1171,10 @@ def list_management_agent_images(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.management_agent.models.ManagementAgentImageSummary` :rtype: :class:`~oci.response.Response` @@ -1121,6 +1186,7 @@ def list_management_agent_images(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -1256,6 +1322,10 @@ def list_management_agent_install_keys(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.management_agent.models.ManagementAgentInstallKeySummary` :rtype: :class:`~oci.response.Response` @@ -1267,6 +1337,7 @@ def list_management_agent_install_keys(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id_in_subtree", "access_level", @@ -1394,6 +1465,10 @@ def list_management_agent_plugins(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.management_agent.models.ManagementAgentPluginSummary` :rtype: :class:`~oci.response.Response` @@ -1405,6 +1480,7 @@ def list_management_agent_plugins(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -1562,6 +1638,10 @@ def list_management_agents(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.management_agent.models.ManagementAgentSummary` :rtype: :class:`~oci.response.Response` @@ -1573,6 +1653,7 @@ def list_management_agents(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "plugin_name", "version", @@ -1721,6 +1802,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.management_agent.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -1732,6 +1817,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1844,6 +1930,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.management_agent.models.WorkRequestLogEntry` :rtype: :class:`~oci.response.Response` @@ -1855,6 +1945,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1980,6 +2071,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.management_agent.models.WorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -1991,6 +2086,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "agent_id", "opc_request_id", @@ -2097,6 +2193,10 @@ def set_auto_upgradable_config(self, set_auto_upgradable_config_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_agent.models.AutoUpgradableConfig` :rtype: :class:`~oci.response.Response` @@ -2108,6 +2208,7 @@ def set_auto_upgradable_config(self, set_auto_upgradable_config_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -2186,6 +2287,10 @@ def summarize_management_agent_counts(self, compartment_id, group_by, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_agent.models.ManagementAgentAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -2197,6 +2302,7 @@ def summarize_management_agent_counts(self, compartment_id, group_by, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "has_plugins", "install_type", @@ -2290,6 +2396,10 @@ def summarize_management_agent_plugin_counts(self, compartment_id, group_by, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_agent.models.ManagementAgentPluginAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -2301,6 +2411,7 @@ def summarize_management_agent_plugin_counts(self, compartment_id, group_by, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "opc_request_id" @@ -2390,6 +2501,10 @@ def update_management_agent(self, management_agent_id, update_management_agent_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_agent.models.ManagementAgent` :rtype: :class:`~oci.response.Response` @@ -2401,6 +2516,7 @@ def update_management_agent(self, management_agent_id, update_management_agent_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -2493,6 +2609,10 @@ def update_management_agent_install_key(self, management_agent_install_key_id, u To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_agent.models.ManagementAgentInstallKey` :rtype: :class:`~oci.response.Response` @@ -2504,6 +2624,7 @@ def update_management_agent_install_key(self, management_agent_install_key_id, u # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", diff --git a/src/oci/management_agent/management_agent_client_composite_operations.py b/src/oci/management_agent/management_agent_client_composite_operations.py index 5ed8baa2a5..87a28e374f 100644 --- a/src/oci/management_agent/management_agent_client_composite_operations.py +++ b/src/oci/management_agent/management_agent_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/management_agent/models/__init__.py b/src/oci/management_agent/models/__init__.py index 0992714d8c..c9a2479b89 100644 --- a/src/oci/management_agent/models/__init__.py +++ b/src/oci/management_agent/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/management_agent/models/auto_upgradable_config.py b/src/oci/management_agent/models/auto_upgradable_config.py index dfe5d2d076..14a9895aa9 100644 --- a/src/oci/management_agent/models/auto_upgradable_config.py +++ b/src/oci/management_agent/models/auto_upgradable_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/availability_history_summary.py b/src/oci/management_agent/models/availability_history_summary.py index dc7abc4a75..969b5db2c4 100644 --- a/src/oci/management_agent/models/availability_history_summary.py +++ b/src/oci/management_agent/models/availability_history_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/create_management_agent_install_key_details.py b/src/oci/management_agent/models/create_management_agent_install_key_details.py index 76811eb7b7..f59916f03e 100644 --- a/src/oci/management_agent/models/create_management_agent_install_key_details.py +++ b/src/oci/management_agent/models/create_management_agent_install_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/deploy_plugins_details.py b/src/oci/management_agent/models/deploy_plugins_details.py index 519c5c4057..4a6d8dfec5 100644 --- a/src/oci/management_agent/models/deploy_plugins_details.py +++ b/src/oci/management_agent/models/deploy_plugins_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/management_agent.py b/src/oci/management_agent/models/management_agent.py index 29a8c88383..0ac052735c 100644 --- a/src/oci/management_agent/models/management_agent.py +++ b/src/oci/management_agent/models/management_agent.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/management_agent_aggregation.py b/src/oci/management_agent/models/management_agent_aggregation.py index 1466be5389..d85c565649 100644 --- a/src/oci/management_agent/models/management_agent_aggregation.py +++ b/src/oci/management_agent/models/management_agent_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/management_agent_aggregation_collection.py b/src/oci/management_agent/models/management_agent_aggregation_collection.py index ea99c6eaf8..5682e4a7ba 100644 --- a/src/oci/management_agent/models/management_agent_aggregation_collection.py +++ b/src/oci/management_agent/models/management_agent_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/management_agent_aggregation_dimensions.py b/src/oci/management_agent/models/management_agent_aggregation_dimensions.py index 24b49f8f2d..06cd228897 100644 --- a/src/oci/management_agent/models/management_agent_aggregation_dimensions.py +++ b/src/oci/management_agent/models/management_agent_aggregation_dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/management_agent_error.py b/src/oci/management_agent/models/management_agent_error.py index ef88f3ee61..240a639c9a 100644 --- a/src/oci/management_agent/models/management_agent_error.py +++ b/src/oci/management_agent/models/management_agent_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/management_agent_image.py b/src/oci/management_agent/models/management_agent_image.py index e22d03c3ea..4213084792 100644 --- a/src/oci/management_agent/models/management_agent_image.py +++ b/src/oci/management_agent/models/management_agent_image.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/management_agent_image_summary.py b/src/oci/management_agent/models/management_agent_image_summary.py index 931e8fcdc2..635e6f8a40 100644 --- a/src/oci/management_agent/models/management_agent_image_summary.py +++ b/src/oci/management_agent/models/management_agent_image_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/management_agent_install_key.py b/src/oci/management_agent/models/management_agent_install_key.py index 518acb3b6e..a1a63b68d8 100644 --- a/src/oci/management_agent/models/management_agent_install_key.py +++ b/src/oci/management_agent/models/management_agent_install_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/management_agent_install_key_summary.py b/src/oci/management_agent/models/management_agent_install_key_summary.py index f736acb9cc..d17e3cbfc9 100644 --- a/src/oci/management_agent/models/management_agent_install_key_summary.py +++ b/src/oci/management_agent/models/management_agent_install_key_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/management_agent_plugin.py b/src/oci/management_agent/models/management_agent_plugin.py index 6f733eb837..d476c5f4ec 100644 --- a/src/oci/management_agent/models/management_agent_plugin.py +++ b/src/oci/management_agent/models/management_agent_plugin.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/management_agent_plugin_aggregation.py b/src/oci/management_agent/models/management_agent_plugin_aggregation.py index 30297455df..0a3fe7daeb 100644 --- a/src/oci/management_agent/models/management_agent_plugin_aggregation.py +++ b/src/oci/management_agent/models/management_agent_plugin_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/management_agent_plugin_aggregation_collection.py b/src/oci/management_agent/models/management_agent_plugin_aggregation_collection.py index a26b99fa3a..47850af955 100644 --- a/src/oci/management_agent/models/management_agent_plugin_aggregation_collection.py +++ b/src/oci/management_agent/models/management_agent_plugin_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/management_agent_plugin_aggregation_dimensions.py b/src/oci/management_agent/models/management_agent_plugin_aggregation_dimensions.py index ebf0baae63..603c9f8fc0 100644 --- a/src/oci/management_agent/models/management_agent_plugin_aggregation_dimensions.py +++ b/src/oci/management_agent/models/management_agent_plugin_aggregation_dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/management_agent_plugin_details.py b/src/oci/management_agent/models/management_agent_plugin_details.py index 740ef099de..00f7cfafef 100644 --- a/src/oci/management_agent/models/management_agent_plugin_details.py +++ b/src/oci/management_agent/models/management_agent_plugin_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/management_agent_plugin_summary.py b/src/oci/management_agent/models/management_agent_plugin_summary.py index f4daea7ce4..c5d52606b7 100644 --- a/src/oci/management_agent/models/management_agent_plugin_summary.py +++ b/src/oci/management_agent/models/management_agent_plugin_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/management_agent_summary.py b/src/oci/management_agent/models/management_agent_summary.py index 1888885533..d17fdbf9fe 100644 --- a/src/oci/management_agent/models/management_agent_summary.py +++ b/src/oci/management_agent/models/management_agent_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/set_auto_upgradable_config_details.py b/src/oci/management_agent/models/set_auto_upgradable_config_details.py index 1c84ae72c2..0c2ae9a7f0 100644 --- a/src/oci/management_agent/models/set_auto_upgradable_config_details.py +++ b/src/oci/management_agent/models/set_auto_upgradable_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/update_management_agent_details.py b/src/oci/management_agent/models/update_management_agent_details.py index 3bde6b6156..303e22ffef 100644 --- a/src/oci/management_agent/models/update_management_agent_details.py +++ b/src/oci/management_agent/models/update_management_agent_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/update_management_agent_install_key_details.py b/src/oci/management_agent/models/update_management_agent_install_key_details.py index d614b98548..4de3338e3d 100644 --- a/src/oci/management_agent/models/update_management_agent_install_key_details.py +++ b/src/oci/management_agent/models/update_management_agent_install_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/work_request.py b/src/oci/management_agent/models/work_request.py index cc672f252b..378aa82db1 100644 --- a/src/oci/management_agent/models/work_request.py +++ b/src/oci/management_agent/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/work_request_error.py b/src/oci/management_agent/models/work_request_error.py index 04dde83e08..26ac6a8cc9 100644 --- a/src/oci/management_agent/models/work_request_error.py +++ b/src/oci/management_agent/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/work_request_log_entry.py b/src/oci/management_agent/models/work_request_log_entry.py index 8d02a6a994..7b37ab8d12 100644 --- a/src/oci/management_agent/models/work_request_log_entry.py +++ b/src/oci/management_agent/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/work_request_resource.py b/src/oci/management_agent/models/work_request_resource.py index 44fd1f2b16..b2dcabcd6a 100644 --- a/src/oci/management_agent/models/work_request_resource.py +++ b/src/oci/management_agent/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/work_request_summary.py b/src/oci/management_agent/models/work_request_summary.py index cfe5ccbabc..0b004995b0 100644 --- a/src/oci/management_agent/models/work_request_summary.py +++ b/src/oci/management_agent/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_agent/models/work_submission_key.py b/src/oci/management_agent/models/work_submission_key.py index 3885fb0624..790e9587e3 100644 --- a/src/oci/management_agent/models/work_submission_key.py +++ b/src/oci/management_agent/models/work_submission_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_dashboard/__init__.py b/src/oci/management_dashboard/__init__.py index 9d9da09188..4f59d9b5da 100644 --- a/src/oci/management_dashboard/__init__.py +++ b/src/oci/management_dashboard/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/management_dashboard/dashx_apis_client.py b/src/oci/management_dashboard/dashx_apis_client.py index d2e622aa93..35c8b80fbb 100644 --- a/src/oci/management_dashboard/dashx_apis_client.py +++ b/src/oci/management_dashboard/dashx_apis_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("dashx_apis", config, signer, management_dashboard_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -134,6 +140,10 @@ def change_management_dashboards_compartment(self, management_dashboard_id, chan To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_dashboard.models.ManagementDashboard` :rtype: :class:`~oci.response.Response` @@ -145,6 +155,7 @@ def change_management_dashboards_compartment(self, management_dashboard_id, chan # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -237,6 +248,10 @@ def change_management_saved_searches_compartment(self, management_saved_search_i To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_dashboard.models.ManagementSavedSearch` :rtype: :class:`~oci.response.Response` @@ -248,6 +263,7 @@ def change_management_saved_searches_compartment(self, management_saved_search_i # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -332,6 +348,10 @@ def create_management_dashboard(self, create_management_dashboard_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_dashboard.models.ManagementDashboard` :rtype: :class:`~oci.response.Response` @@ -343,6 +363,7 @@ def create_management_dashboard(self, create_management_dashboard_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -414,6 +435,10 @@ def create_management_saved_search(self, create_management_saved_search_details, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_dashboard.models.ManagementSavedSearch` :rtype: :class:`~oci.response.Response` @@ -425,6 +450,7 @@ def create_management_saved_search(self, create_management_saved_search_details, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -493,6 +519,10 @@ def delete_management_dashboard(self, management_dashboard_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -504,6 +534,7 @@ def delete_management_dashboard(self, management_dashboard_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -579,6 +610,10 @@ def delete_management_saved_search(self, management_saved_search_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -590,6 +625,7 @@ def delete_management_saved_search(self, management_saved_search_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -665,6 +701,10 @@ def export_dashboard(self, export_dashboard_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_dashboard.models.ManagementDashboardExportDetails` :rtype: :class:`~oci.response.Response` @@ -676,6 +716,7 @@ def export_dashboard(self, export_dashboard_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -754,6 +795,10 @@ def get_management_dashboard(self, management_dashboard_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_dashboard.models.ManagementDashboard` :rtype: :class:`~oci.response.Response` @@ -765,6 +810,7 @@ def get_management_dashboard(self, management_dashboard_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -843,6 +889,10 @@ def get_management_saved_search(self, management_saved_search_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_dashboard.models.ManagementSavedSearch` :rtype: :class:`~oci.response.Response` @@ -854,6 +904,7 @@ def get_management_saved_search(self, management_saved_search_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -944,6 +995,10 @@ def import_dashboard(self, management_dashboard_import_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -955,6 +1010,7 @@ def import_dashboard(self, management_dashboard_import_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -1035,6 +1091,10 @@ def list_management_dashboards(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_dashboard.models.ManagementDashboardCollection` :rtype: :class:`~oci.response.Response` @@ -1046,6 +1106,7 @@ def list_management_dashboards(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "opc_request_id", @@ -1152,6 +1213,10 @@ def list_management_saved_searches(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_dashboard.models.ManagementSavedSearchCollection` :rtype: :class:`~oci.response.Response` @@ -1163,6 +1228,7 @@ def list_management_saved_searches(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "opc_request_id", @@ -1267,6 +1333,10 @@ def update_management_dashboard(self, management_dashboard_id, update_management To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_dashboard.models.ManagementDashboard` :rtype: :class:`~oci.response.Response` @@ -1278,6 +1348,7 @@ def update_management_dashboard(self, management_dashboard_id, update_management # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -1370,6 +1441,10 @@ def update_management_saved_search(self, management_saved_search_id, update_mana To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.management_dashboard.models.ManagementSavedSearch` :rtype: :class:`~oci.response.Response` @@ -1381,6 +1456,7 @@ def update_management_saved_search(self, management_saved_search_id, update_mana # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", diff --git a/src/oci/management_dashboard/dashx_apis_client_composite_operations.py b/src/oci/management_dashboard/dashx_apis_client_composite_operations.py index 0b14ed7ac7..ee6c5f130d 100644 --- a/src/oci/management_dashboard/dashx_apis_client_composite_operations.py +++ b/src/oci/management_dashboard/dashx_apis_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/management_dashboard/models/__init__.py b/src/oci/management_dashboard/models/__init__.py index 0a8f87b15e..5e9655de1b 100644 --- a/src/oci/management_dashboard/models/__init__.py +++ b/src/oci/management_dashboard/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/management_dashboard/models/change_management_dashboards_compartment_details.py b/src/oci/management_dashboard/models/change_management_dashboards_compartment_details.py index fd3fb4b42a..8a875e57cb 100644 --- a/src/oci/management_dashboard/models/change_management_dashboards_compartment_details.py +++ b/src/oci/management_dashboard/models/change_management_dashboards_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_dashboard/models/change_management_saved_searches_compartment_details.py b/src/oci/management_dashboard/models/change_management_saved_searches_compartment_details.py index 9d43f028b3..f47fcf5c54 100644 --- a/src/oci/management_dashboard/models/change_management_saved_searches_compartment_details.py +++ b/src/oci/management_dashboard/models/change_management_saved_searches_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_dashboard/models/create_management_dashboard_details.py b/src/oci/management_dashboard/models/create_management_dashboard_details.py index b701ad239c..154c9c58cc 100644 --- a/src/oci/management_dashboard/models/create_management_dashboard_details.py +++ b/src/oci/management_dashboard/models/create_management_dashboard_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_dashboard/models/create_management_saved_search_details.py b/src/oci/management_dashboard/models/create_management_saved_search_details.py index 8dfbec8025..779de011ca 100644 --- a/src/oci/management_dashboard/models/create_management_saved_search_details.py +++ b/src/oci/management_dashboard/models/create_management_saved_search_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_dashboard/models/management_dashboard.py b/src/oci/management_dashboard/models/management_dashboard.py index 00e6c7a572..312cb0ed3f 100644 --- a/src/oci/management_dashboard/models/management_dashboard.py +++ b/src/oci/management_dashboard/models/management_dashboard.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_dashboard/models/management_dashboard_collection.py b/src/oci/management_dashboard/models/management_dashboard_collection.py index 6b4ac0719c..2a6ef3e5b0 100644 --- a/src/oci/management_dashboard/models/management_dashboard_collection.py +++ b/src/oci/management_dashboard/models/management_dashboard_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_dashboard/models/management_dashboard_export_details.py b/src/oci/management_dashboard/models/management_dashboard_export_details.py index 7db55fcccc..d2d4dbbc25 100644 --- a/src/oci/management_dashboard/models/management_dashboard_export_details.py +++ b/src/oci/management_dashboard/models/management_dashboard_export_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_dashboard/models/management_dashboard_for_import_export_details.py b/src/oci/management_dashboard/models/management_dashboard_for_import_export_details.py index 676bab289c..e9da70db1f 100644 --- a/src/oci/management_dashboard/models/management_dashboard_for_import_export_details.py +++ b/src/oci/management_dashboard/models/management_dashboard_for_import_export_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_dashboard/models/management_dashboard_import_details.py b/src/oci/management_dashboard/models/management_dashboard_import_details.py index f5fc78c65a..293db2ff58 100644 --- a/src/oci/management_dashboard/models/management_dashboard_import_details.py +++ b/src/oci/management_dashboard/models/management_dashboard_import_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_dashboard/models/management_dashboard_summary.py b/src/oci/management_dashboard/models/management_dashboard_summary.py index 2d94e94f2f..8d1849b1dc 100644 --- a/src/oci/management_dashboard/models/management_dashboard_summary.py +++ b/src/oci/management_dashboard/models/management_dashboard_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_dashboard/models/management_dashboard_tile_details.py b/src/oci/management_dashboard/models/management_dashboard_tile_details.py index 936424a742..9a09511e3c 100644 --- a/src/oci/management_dashboard/models/management_dashboard_tile_details.py +++ b/src/oci/management_dashboard/models/management_dashboard_tile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_dashboard/models/management_saved_search.py b/src/oci/management_dashboard/models/management_saved_search.py index 2c12b4bda6..e96a9128bf 100644 --- a/src/oci/management_dashboard/models/management_saved_search.py +++ b/src/oci/management_dashboard/models/management_saved_search.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_dashboard/models/management_saved_search_collection.py b/src/oci/management_dashboard/models/management_saved_search_collection.py index 38eca3d9d0..aa0f78c3f9 100644 --- a/src/oci/management_dashboard/models/management_saved_search_collection.py +++ b/src/oci/management_dashboard/models/management_saved_search_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_dashboard/models/management_saved_search_for_import_details.py b/src/oci/management_dashboard/models/management_saved_search_for_import_details.py index 0778a7696a..6c8e35d219 100644 --- a/src/oci/management_dashboard/models/management_saved_search_for_import_details.py +++ b/src/oci/management_dashboard/models/management_saved_search_for_import_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_dashboard/models/management_saved_search_summary.py b/src/oci/management_dashboard/models/management_saved_search_summary.py index ca55047642..c90f3ac881 100644 --- a/src/oci/management_dashboard/models/management_saved_search_summary.py +++ b/src/oci/management_dashboard/models/management_saved_search_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_dashboard/models/update_management_dashboard_details.py b/src/oci/management_dashboard/models/update_management_dashboard_details.py index a9d69d8deb..8e74a0475e 100644 --- a/src/oci/management_dashboard/models/update_management_dashboard_details.py +++ b/src/oci/management_dashboard/models/update_management_dashboard_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/management_dashboard/models/update_management_saved_search_details.py b/src/oci/management_dashboard/models/update_management_saved_search_details.py index cb54fda1a5..209abf1140 100644 --- a/src/oci/management_dashboard/models/update_management_saved_search_details.py +++ b/src/oci/management_dashboard/models/update_management_saved_search_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/__init__.py b/src/oci/marketplace/__init__.py index 069160915a..d45146ae89 100644 --- a/src/oci/marketplace/__init__.py +++ b/src/oci/marketplace/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/marketplace/account_client.py b/src/oci/marketplace/account_client.py index 0f99380305..0cb6e65194 100644 --- a/src/oci/marketplace/account_client.py +++ b/src/oci/marketplace/account_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("account", config, signer, marketplace_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -121,6 +127,10 @@ def get_launch_eligibility(self, compartment_id, image_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.marketplace.models.LaunchEligibility` :rtype: :class:`~oci.response.Response` @@ -132,6 +142,7 @@ def get_launch_eligibility(self, compartment_id, image_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -197,6 +208,10 @@ def get_third_party_paid_listing_eligibility(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.marketplace.models.ThirdPartyPaidListingEligibility` :rtype: :class:`~oci.response.Response` @@ -208,6 +223,7 @@ def get_third_party_paid_listing_eligibility(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] diff --git a/src/oci/marketplace/account_client_composite_operations.py b/src/oci/marketplace/account_client_composite_operations.py index 730f6bf626..c6fe774544 100644 --- a/src/oci/marketplace/account_client_composite_operations.py +++ b/src/oci/marketplace/account_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/marketplace/marketplace_client.py b/src/oci/marketplace/marketplace_client.py index 6a933bd823..056947fd83 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("marketplace", config, signer, marketplace_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -132,6 +138,10 @@ def change_publication_compartment(self, publication_id, change_publication_comp To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -143,6 +153,7 @@ def change_publication_compartment(self, publication_id, change_publication_comp # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -224,6 +235,10 @@ def create_accepted_agreement(self, create_accepted_agreement_details, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.marketplace.models.AcceptedAgreement` :rtype: :class:`~oci.response.Response` @@ -235,6 +250,7 @@ def create_accepted_agreement(self, create_accepted_agreement_details, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -303,6 +319,10 @@ def create_publication(self, create_publication_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.marketplace.models.Publication` :rtype: :class:`~oci.response.Response` @@ -314,6 +334,7 @@ def create_publication(self, create_publication_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -386,6 +407,10 @@ def delete_accepted_agreement(self, accepted_agreement_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -397,6 +422,7 @@ def delete_accepted_agreement(self, accepted_agreement_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "signature", "opc_request_id", @@ -479,6 +505,10 @@ def delete_publication(self, publication_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -490,6 +520,7 @@ def delete_publication(self, publication_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -559,6 +590,10 @@ def get_accepted_agreement(self, accepted_agreement_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.marketplace.models.AcceptedAgreement` :rtype: :class:`~oci.response.Response` @@ -570,6 +605,7 @@ def get_accepted_agreement(self, accepted_agreement_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -649,6 +685,10 @@ def get_agreement(self, listing_id, package_version, agreement_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.marketplace.models.Agreement` :rtype: :class:`~oci.response.Response` @@ -660,6 +700,7 @@ def get_agreement(self, listing_id, package_version, agreement_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "compartment_id" @@ -762,6 +803,10 @@ def get_listing(self, listing_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.marketplace.models.Listing` :rtype: :class:`~oci.response.Response` @@ -773,6 +818,7 @@ def get_listing(self, listing_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "compartment_id" @@ -875,6 +921,10 @@ def get_package(self, listing_id, package_version, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.marketplace.models.ListingPackage` :rtype: :class:`~oci.response.Response` @@ -886,6 +936,7 @@ def get_package(self, listing_id, package_version, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "compartment_id" @@ -964,6 +1015,10 @@ def get_publication(self, publication_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.marketplace.models.Publication` :rtype: :class:`~oci.response.Response` @@ -975,6 +1030,7 @@ def get_publication(self, publication_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1047,6 +1103,10 @@ def get_publication_package(self, publication_id, package_version, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.marketplace.models.PublicationPackage` :rtype: :class:`~oci.response.Response` @@ -1058,6 +1118,7 @@ def get_publication_package(self, publication_id, package_version, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1159,6 +1220,10 @@ def list_accepted_agreements(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.marketplace.models.AcceptedAgreementSummary` :rtype: :class:`~oci.response.Response` @@ -1170,6 +1235,7 @@ def list_accepted_agreements(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "listing_id", @@ -1276,6 +1342,10 @@ def list_agreements(self, listing_id, package_version, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.marketplace.models.AgreementSummary` :rtype: :class:`~oci.response.Response` @@ -1287,6 +1357,7 @@ def list_agreements(self, listing_id, package_version, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -1376,6 +1447,10 @@ def list_categories(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.marketplace.models.CategorySummary` :rtype: :class:`~oci.response.Response` @@ -1387,6 +1462,7 @@ def list_categories(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -1527,6 +1603,10 @@ def list_listings(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.marketplace.models.ListingSummary` :rtype: :class:`~oci.response.Response` @@ -1538,6 +1618,7 @@ def list_listings(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "listing_id", @@ -1705,6 +1786,10 @@ def list_packages(self, listing_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.marketplace.models.ListingPackageSummary` :rtype: :class:`~oci.response.Response` @@ -1716,6 +1801,7 @@ def list_packages(self, listing_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "package_version", "package_type", @@ -1843,6 +1929,10 @@ def list_publication_packages(self, publication_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.marketplace.models.PublicationPackageSummary` :rtype: :class:`~oci.response.Response` @@ -1854,6 +1944,7 @@ def list_publication_packages(self, publication_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "package_version", "package_type", @@ -1987,6 +2078,10 @@ def list_publications(self, compartment_id, listing_type, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.marketplace.models.PublicationSummary` :rtype: :class:`~oci.response.Response` @@ -1998,6 +2093,7 @@ def list_publications(self, compartment_id, listing_type, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "publication_id", @@ -2106,6 +2202,10 @@ def list_publishers(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.marketplace.models.PublisherSummary` :rtype: :class:`~oci.response.Response` @@ -2117,6 +2217,7 @@ def list_publishers(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "publisher_id", "opc_request_id", @@ -2191,6 +2292,10 @@ def list_report_types(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.marketplace.models.ReportTypeCollection` :rtype: :class:`~oci.response.Response` @@ -2202,6 +2307,7 @@ def list_report_types(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page" @@ -2277,6 +2383,10 @@ def list_reports(self, report_type, date, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.marketplace.models.ReportCollection` :rtype: :class:`~oci.response.Response` @@ -2288,6 +2398,7 @@ def list_reports(self, report_type, date, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page" @@ -2359,6 +2470,10 @@ def list_taxes(self, listing_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.marketplace.models.TaxSummary` :rtype: :class:`~oci.response.Response` @@ -2370,6 +2485,7 @@ def list_taxes(self, listing_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "compartment_id" @@ -2454,6 +2570,10 @@ def search_listings(self, search_listings_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.marketplace.models.ListingSummary` :rtype: :class:`~oci.response.Response` @@ -2465,6 +2585,7 @@ def search_listings(self, search_listings_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -2548,6 +2669,10 @@ def update_accepted_agreement(self, accepted_agreement_id, update_accepted_agree To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.marketplace.models.AcceptedAgreement` :rtype: :class:`~oci.response.Response` @@ -2559,6 +2684,7 @@ def update_accepted_agreement(self, accepted_agreement_id, update_accepted_agree # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -2649,6 +2775,10 @@ def update_publication(self, publication_id, update_publication_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.marketplace.models.Publication` :rtype: :class:`~oci.response.Response` @@ -2660,6 +2790,7 @@ def update_publication(self, publication_id, update_publication_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", diff --git a/src/oci/marketplace/marketplace_client_composite_operations.py b/src/oci/marketplace/marketplace_client_composite_operations.py index 035f5679e2..7c26d774c5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/marketplace/models/__init__.py b/src/oci/marketplace/models/__init__.py index e8782f57e5..f6c45ba0b4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/marketplace/models/accepted_agreement.py b/src/oci/marketplace/models/accepted_agreement.py index d2a436a397..447b3df019 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/accepted_agreement_summary.py b/src/oci/marketplace/models/accepted_agreement_summary.py index 79f9526721..0b198a7ac2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/agreement.py b/src/oci/marketplace/models/agreement.py index 37d137dcd3..df643447ed 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/agreement_summary.py b/src/oci/marketplace/models/agreement_summary.py index c1dc153b88..5c58d7089d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/category_summary.py b/src/oci/marketplace/models/category_summary.py index b88e10dfbc..b1aaf76104 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/change_publication_compartment_details.py b/src/oci/marketplace/models/change_publication_compartment_details.py index 50293aca0f..1bc59a4163 100644 --- a/src/oci/marketplace/models/change_publication_compartment_details.py +++ b/src/oci/marketplace/models/change_publication_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/create_accepted_agreement_details.py b/src/oci/marketplace/models/create_accepted_agreement_details.py index bdf9bde4c9..1e2b868a0f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/create_image_publication_package.py b/src/oci/marketplace/models/create_image_publication_package.py index e2f5b5669d..060732a621 100644 --- a/src/oci/marketplace/models/create_image_publication_package.py +++ b/src/oci/marketplace/models/create_image_publication_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_publication_package import CreatePublicationPackage diff --git a/src/oci/marketplace/models/create_publication_details.py b/src/oci/marketplace/models/create_publication_details.py index cbf97dfc3c..998f259f29 100644 --- a/src/oci/marketplace/models/create_publication_details.py +++ b/src/oci/marketplace/models/create_publication_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/create_publication_package.py b/src/oci/marketplace/models/create_publication_package.py index e1c98e8c82..91aee12ecb 100644 --- a/src/oci/marketplace/models/create_publication_package.py +++ b/src/oci/marketplace/models/create_publication_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/documentation_link.py b/src/oci/marketplace/models/documentation_link.py index 92c9089a53..c51c2b0e65 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/error_entity.py b/src/oci/marketplace/models/error_entity.py index 317cc9ea14..938b83ab78 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/eula.py b/src/oci/marketplace/models/eula.py index 0a3bcec5fe..91796cb5b6 100644 --- a/src/oci/marketplace/models/eula.py +++ b/src/oci/marketplace/models/eula.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/free_text_search_details.py b/src/oci/marketplace/models/free_text_search_details.py index d08945ae12..0ec3a31be2 100644 --- a/src/oci/marketplace/models/free_text_search_details.py +++ b/src/oci/marketplace/models/free_text_search_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .search_listings_details import SearchListingsDetails diff --git a/src/oci/marketplace/models/image_listing_package.py b/src/oci/marketplace/models/image_listing_package.py index e683d78af1..fa09fc10c1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .listing_package import ListingPackage diff --git a/src/oci/marketplace/models/image_publication_package.py b/src/oci/marketplace/models/image_publication_package.py index a993719900..cd6225958f 100644 --- a/src/oci/marketplace/models/image_publication_package.py +++ b/src/oci/marketplace/models/image_publication_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .publication_package import PublicationPackage diff --git a/src/oci/marketplace/models/item.py b/src/oci/marketplace/models/item.py index cb9ad2f92d..4e3abe2183 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/launch_eligibility.py b/src/oci/marketplace/models/launch_eligibility.py index 2c2bf2fa9e..b2a111646b 100644 --- a/src/oci/marketplace/models/launch_eligibility.py +++ b/src/oci/marketplace/models/launch_eligibility.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/link.py b/src/oci/marketplace/models/link.py index 052a4a2379..d76b951745 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/listing.py b/src/oci/marketplace/models/listing.py index 7c88388ea1..fe58c70c40 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/listing_package.py b/src/oci/marketplace/models/listing_package.py index bf2cb8d6ef..7b75ce33c5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/listing_package_summary.py b/src/oci/marketplace/models/listing_package_summary.py index 73a829eaa9..4c89f9d7fe 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/listing_summary.py b/src/oci/marketplace/models/listing_summary.py index 1f5a905cf1..733c8a6a6c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/named_link.py b/src/oci/marketplace/models/named_link.py index 5d4984dd94..e48db37c71 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/operating_system.py b/src/oci/marketplace/models/operating_system.py index fa3bc82a7e..21d3c98b44 100644 --- a/src/oci/marketplace/models/operating_system.py +++ b/src/oci/marketplace/models/operating_system.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/orchestration_listing_package.py b/src/oci/marketplace/models/orchestration_listing_package.py index a0738f7898..6b2a1f39fe 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .listing_package import ListingPackage diff --git a/src/oci/marketplace/models/orchestration_publication_package.py b/src/oci/marketplace/models/orchestration_publication_package.py index 9c4e5767fe..7efe720b4e 100644 --- a/src/oci/marketplace/models/orchestration_publication_package.py +++ b/src/oci/marketplace/models/orchestration_publication_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .publication_package import PublicationPackage diff --git a/src/oci/marketplace/models/orchestration_variable.py b/src/oci/marketplace/models/orchestration_variable.py index acf702a3da..c31a29c19e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/pricing_model.py b/src/oci/marketplace/models/pricing_model.py index 63f0cc13c7..29b937a8c8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/publication.py b/src/oci/marketplace/models/publication.py index 1f5e37c173..85f35c9d8d 100644 --- a/src/oci/marketplace/models/publication.py +++ b/src/oci/marketplace/models/publication.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/publication_package.py b/src/oci/marketplace/models/publication_package.py index 942f5343d4..bb2fdc8647 100644 --- a/src/oci/marketplace/models/publication_package.py +++ b/src/oci/marketplace/models/publication_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/publication_package_summary.py b/src/oci/marketplace/models/publication_package_summary.py index 8ebf6617b7..54b3f1fd2b 100644 --- a/src/oci/marketplace/models/publication_package_summary.py +++ b/src/oci/marketplace/models/publication_package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/publication_summary.py b/src/oci/marketplace/models/publication_summary.py index ec4a98361f..33cbdeb758 100644 --- a/src/oci/marketplace/models/publication_summary.py +++ b/src/oci/marketplace/models/publication_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/publisher.py b/src/oci/marketplace/models/publisher.py index 552dd4845a..fe77988f30 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/publisher_summary.py b/src/oci/marketplace/models/publisher_summary.py index 7d55ae4abe..310b6e7394 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/region.py b/src/oci/marketplace/models/region.py index e8e73da201..be6d99ac8f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/report_collection.py b/src/oci/marketplace/models/report_collection.py index 067baa999b..740782a4bf 100644 --- a/src/oci/marketplace/models/report_collection.py +++ b/src/oci/marketplace/models/report_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/report_summary.py b/src/oci/marketplace/models/report_summary.py index 110b59f8b9..52698026eb 100644 --- a/src/oci/marketplace/models/report_summary.py +++ b/src/oci/marketplace/models/report_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/report_type_collection.py b/src/oci/marketplace/models/report_type_collection.py index 563898be72..a9bf02576a 100644 --- a/src/oci/marketplace/models/report_type_collection.py +++ b/src/oci/marketplace/models/report_type_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/report_type_summary.py b/src/oci/marketplace/models/report_type_summary.py index a1adb4d512..64682e60e6 100644 --- a/src/oci/marketplace/models/report_type_summary.py +++ b/src/oci/marketplace/models/report_type_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/screenshot.py b/src/oci/marketplace/models/screenshot.py index 5d5e788a87..13cb8af386 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/search_listings_details.py b/src/oci/marketplace/models/search_listings_details.py index b8e84a61bd..9efb33d3e7 100644 --- a/src/oci/marketplace/models/search_listings_details.py +++ b/src/oci/marketplace/models/search_listings_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/structured_search_details.py b/src/oci/marketplace/models/structured_search_details.py index 6c3e476d1f..7207ed7b41 100644 --- a/src/oci/marketplace/models/structured_search_details.py +++ b/src/oci/marketplace/models/structured_search_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .search_listings_details import SearchListingsDetails diff --git a/src/oci/marketplace/models/support_contact.py b/src/oci/marketplace/models/support_contact.py index 2731239933..f260586a78 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/tax_summary.py b/src/oci/marketplace/models/tax_summary.py index adfb299b53..be705990e2 100644 --- a/src/oci/marketplace/models/tax_summary.py +++ b/src/oci/marketplace/models/tax_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/text_based_eula.py b/src/oci/marketplace/models/text_based_eula.py index d905a929df..76c80aab46 100644 --- a/src/oci/marketplace/models/text_based_eula.py +++ b/src/oci/marketplace/models/text_based_eula.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .eula import Eula diff --git a/src/oci/marketplace/models/third_party_paid_listing_eligibility.py b/src/oci/marketplace/models/third_party_paid_listing_eligibility.py index 1167242fec..10e96597fd 100644 --- a/src/oci/marketplace/models/third_party_paid_listing_eligibility.py +++ b/src/oci/marketplace/models/third_party_paid_listing_eligibility.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/update_accepted_agreement_details.py b/src/oci/marketplace/models/update_accepted_agreement_details.py index 242a81c4c7..bf282b3300 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/update_publication_details.py b/src/oci/marketplace/models/update_publication_details.py index 0f46d6aa96..978c734b57 100644 --- a/src/oci/marketplace/models/update_publication_details.py +++ b/src/oci/marketplace/models/update_publication_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/marketplace/models/upload_data.py b/src/oci/marketplace/models/upload_data.py index 573aac5535..672bc18377 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/__init__.py b/src/oci/monitoring/__init__.py index 348fc9b938..a14b7f4d62 100644 --- a/src/oci/monitoring/__init__.py +++ b/src/oci/monitoring/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/monitoring/models/__init__.py b/src/oci/monitoring/models/__init__.py index dddad3e03d..8955f38164 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/monitoring/models/aggregated_datapoint.py b/src/oci/monitoring/models/aggregated_datapoint.py index 8709a0856d..33bd6eb75e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/models/alarm.py b/src/oci/monitoring/models/alarm.py index 381044b1ee..148e41ae0f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/models/alarm_history_collection.py b/src/oci/monitoring/models/alarm_history_collection.py index d720b559db..db754ea1ec 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/models/alarm_history_entry.py b/src/oci/monitoring/models/alarm_history_entry.py index 2e4d1e4f62..26425923ef 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/models/alarm_status_summary.py b/src/oci/monitoring/models/alarm_status_summary.py index 4e7e2665f5..d941519006 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/models/alarm_summary.py b/src/oci/monitoring/models/alarm_summary.py index acc1e2b309..64b2591f41 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/models/change_alarm_compartment_details.py b/src/oci/monitoring/models/change_alarm_compartment_details.py index 69cf93028c..e2e423a73c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/models/create_alarm_details.py b/src/oci/monitoring/models/create_alarm_details.py index af69c73e25..4efb010163 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/models/datapoint.py b/src/oci/monitoring/models/datapoint.py index 70557dab3f..1f6bcdd246 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/models/failed_metric_record.py b/src/oci/monitoring/models/failed_metric_record.py index bafcbb9d0a..8b7437b308 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/models/list_metrics_details.py b/src/oci/monitoring/models/list_metrics_details.py index c49400c0ac..a6251ce871 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/models/metric.py b/src/oci/monitoring/models/metric.py index 36de44b1f8..b9ebb11073 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/models/metric_data.py b/src/oci/monitoring/models/metric_data.py index 8cc8d262da..c1c7edcdb7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/models/metric_data_details.py b/src/oci/monitoring/models/metric_data_details.py index 1c9e258cb2..de67831a97 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/models/post_metric_data_details.py b/src/oci/monitoring/models/post_metric_data_details.py index 6f201cf66c..7988244c1b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 bf2c353530..15559da3f4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/models/summarize_metrics_data_details.py b/src/oci/monitoring/models/summarize_metrics_data_details.py index baa1d2b654..4be9305480 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/models/suppression.py b/src/oci/monitoring/models/suppression.py index 5ccce01645..ba7b572397 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/models/update_alarm_details.py b/src/oci/monitoring/models/update_alarm_details.py index e24802a7c4..701378bada 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/monitoring/monitoring_client.py b/src/oci/monitoring/monitoring_client.py index f81b19ac52..0fecf3dfaa 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -66,6 +66,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -96,6 +100,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("monitoring", config, signer, monitoring_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -141,6 +147,10 @@ def change_alarm_compartment(self, alarm_id, change_alarm_compartment_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -152,6 +162,7 @@ def change_alarm_compartment(self, alarm_id, change_alarm_compartment_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -240,6 +251,10 @@ def create_alarm(self, create_alarm_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.monitoring.models.Alarm` :rtype: :class:`~oci.response.Response` @@ -251,6 +266,7 @@ def create_alarm(self, create_alarm_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -327,6 +343,10 @@ def delete_alarm(self, alarm_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -338,6 +358,7 @@ def delete_alarm(self, alarm_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -416,6 +437,10 @@ def get_alarm(self, alarm_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.monitoring.models.Alarm` :rtype: :class:`~oci.response.Response` @@ -427,6 +452,7 @@ def get_alarm(self, alarm_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -539,6 +565,10 @@ def get_alarm_history(self, alarm_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.monitoring.models.AlarmHistoryCollection` :rtype: :class:`~oci.response.Response` @@ -550,6 +580,7 @@ def get_alarm_history(self, alarm_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "alarm_historytype", @@ -701,6 +732,10 @@ def list_alarms(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.monitoring.models.AlarmSummary` :rtype: :class:`~oci.response.Response` @@ -712,6 +747,7 @@ def list_alarms(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -865,6 +901,10 @@ def list_alarms_status(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.monitoring.models.AlarmStatusSummary` :rtype: :class:`~oci.response.Response` @@ -876,6 +916,7 @@ def list_alarms_status(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "compartment_id_in_subtree", @@ -1005,6 +1046,10 @@ def list_metrics(self, compartment_id, list_metrics_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.monitoring.models.Metric` :rtype: :class:`~oci.response.Response` @@ -1016,6 +1061,7 @@ def list_metrics(self, compartment_id, list_metrics_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1109,6 +1155,10 @@ def post_metric_data(self, post_metric_data_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.monitoring.models.PostMetricDataResponseDetails` :rtype: :class:`~oci.response.Response` @@ -1120,6 +1170,7 @@ def post_metric_data(self, post_metric_data_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1193,6 +1244,10 @@ def remove_alarm_suppression(self, alarm_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1204,6 +1259,7 @@ def remove_alarm_suppression(self, alarm_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1296,6 +1352,10 @@ def summarize_metrics_data(self, compartment_id, summarize_metrics_data_details, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.monitoring.models.MetricData` :rtype: :class:`~oci.response.Response` @@ -1307,6 +1367,7 @@ def summarize_metrics_data(self, compartment_id, summarize_metrics_data_details, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "compartment_id_in_subtree" @@ -1392,6 +1453,10 @@ def update_alarm(self, alarm_id, update_alarm_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.monitoring.models.Alarm` :rtype: :class:`~oci.response.Response` @@ -1403,6 +1468,7 @@ def update_alarm(self, alarm_id, update_alarm_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/monitoring/monitoring_client_composite_operations.py b/src/oci/monitoring/monitoring_client_composite_operations.py index 7377640dba..0d77c5892d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/mysql/__init__.py b/src/oci/mysql/__init__.py index 90d4b43542..082d0ae472 100644 --- a/src/oci/mysql/__init__.py +++ b/src/oci/mysql/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/mysql/channels_client.py b/src/oci/mysql/channels_client.py index 091702a8a0..2018734a63 100644 --- a/src/oci/mysql/channels_client.py +++ b/src/oci/mysql/channels_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("channels", config, signer, mysql_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -127,6 +133,10 @@ def create_channel(self, create_channel_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.mysql.models.Channel` :rtype: :class:`~oci.response.Response` @@ -138,6 +148,7 @@ def create_channel(self, create_channel_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -210,6 +221,10 @@ def delete_channel(self, channel_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -221,6 +236,7 @@ def delete_channel(self, channel_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -302,6 +318,10 @@ def get_channel(self, channel_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.mysql.models.Channel` :rtype: :class:`~oci.response.Response` @@ -313,6 +333,7 @@ def get_channel(self, channel_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_none_match" @@ -430,6 +451,10 @@ def list_channels(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.mysql.models.ChannelSummary` :rtype: :class:`~oci.response.Response` @@ -441,6 +466,7 @@ def list_channels(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "db_system_id", @@ -563,6 +589,10 @@ def reset_channel(self, channel_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -574,6 +604,7 @@ def reset_channel(self, channel_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -666,6 +697,10 @@ def resume_channel(self, channel_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -677,6 +712,7 @@ def resume_channel(self, channel_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -773,6 +809,10 @@ def update_channel(self, channel_id, update_channel_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -784,6 +824,7 @@ def update_channel(self, channel_id, update_channel_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", diff --git a/src/oci/mysql/channels_client_composite_operations.py b/src/oci/mysql/channels_client_composite_operations.py index de11b0196a..f94da3e91a 100644 --- a/src/oci/mysql/channels_client_composite_operations.py +++ b/src/oci/mysql/channels_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/mysql/db_backups_client.py b/src/oci/mysql/db_backups_client.py index 3f55505862..6e85602417 100644 --- a/src/oci/mysql/db_backups_client.py +++ b/src/oci/mysql/db_backups_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("db_backups", config, signer, mysql_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -138,6 +144,10 @@ def change_backup_compartment(self, backup_id, change_backup_compartment_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -149,6 +159,7 @@ def change_backup_compartment(self, backup_id, change_backup_compartment_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -232,6 +243,10 @@ def create_backup(self, create_backup_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.mysql.models.Backup` :rtype: :class:`~oci.response.Response` @@ -243,6 +258,7 @@ def create_backup(self, create_backup_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -313,6 +329,10 @@ def delete_backup(self, backup_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -324,6 +344,7 @@ def delete_backup(self, backup_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -401,6 +422,10 @@ def get_backup(self, backup_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.mysql.models.Backup` :rtype: :class:`~oci.response.Response` @@ -412,6 +437,7 @@ def get_backup(self, backup_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_none_match" @@ -530,6 +556,10 @@ def list_backups(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.mysql.models.BackupSummary` :rtype: :class:`~oci.response.Response` @@ -541,6 +571,7 @@ def list_backups(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "backup_id", @@ -662,6 +693,10 @@ def update_backup(self, backup_id, update_backup_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -673,6 +708,7 @@ def update_backup(self, backup_id, update_backup_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/mysql/db_backups_client_composite_operations.py b/src/oci/mysql/db_backups_client_composite_operations.py index 3ad05db5ed..38c7d37ea8 100644 --- a/src/oci/mysql/db_backups_client_composite_operations.py +++ b/src/oci/mysql/db_backups_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/mysql/db_system_client.py b/src/oci/mysql/db_system_client.py index 215de2ce9f..b8d283a193 100644 --- a/src/oci/mysql/db_system_client.py +++ b/src/oci/mysql/db_system_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("db_system", config, signer, mysql_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -140,6 +146,10 @@ def add_analytics_cluster(self, db_system_id, add_analytics_cluster_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.mysql.models.AnalyticsCluster` :rtype: :class:`~oci.response.Response` @@ -151,6 +161,7 @@ def add_analytics_cluster(self, db_system_id, add_analytics_cluster_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -248,6 +259,10 @@ def add_heat_wave_cluster(self, db_system_id, add_heat_wave_cluster_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.mysql.models.HeatWaveCluster` :rtype: :class:`~oci.response.Response` @@ -259,6 +274,7 @@ def add_heat_wave_cluster(self, db_system_id, add_heat_wave_cluster_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -344,6 +360,10 @@ def create_db_system(self, create_db_system_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.mysql.models.DbSystem` :rtype: :class:`~oci.response.Response` @@ -355,6 +375,7 @@ def create_db_system(self, create_db_system_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -429,6 +450,10 @@ def delete_analytics_cluster(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -440,6 +465,7 @@ def delete_analytics_cluster(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -520,6 +546,10 @@ def delete_db_system(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -531,6 +561,7 @@ def delete_db_system(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -611,6 +642,10 @@ def delete_heat_wave_cluster(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -622,6 +657,7 @@ def delete_heat_wave_cluster(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -703,6 +739,10 @@ def generate_analytics_cluster_memory_estimate(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.mysql.models.AnalyticsClusterMemoryEstimate` :rtype: :class:`~oci.response.Response` @@ -714,6 +754,7 @@ def generate_analytics_cluster_memory_estimate(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -797,6 +838,10 @@ def generate_heat_wave_cluster_memory_estimate(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.mysql.models.HeatWaveClusterMemoryEstimate` :rtype: :class:`~oci.response.Response` @@ -808,6 +853,7 @@ def generate_heat_wave_cluster_memory_estimate(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -891,6 +937,10 @@ def get_analytics_cluster(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.mysql.models.AnalyticsCluster` :rtype: :class:`~oci.response.Response` @@ -902,6 +952,7 @@ def get_analytics_cluster(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_none_match" @@ -978,6 +1029,10 @@ def get_analytics_cluster_memory_estimate(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.mysql.models.AnalyticsClusterMemoryEstimate` :rtype: :class:`~oci.response.Response` @@ -989,6 +1044,7 @@ def get_analytics_cluster_memory_estimate(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1068,6 +1124,10 @@ def get_db_system(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.mysql.models.DbSystem` :rtype: :class:`~oci.response.Response` @@ -1079,6 +1139,7 @@ def get_db_system(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_none_match" @@ -1160,6 +1221,10 @@ def get_heat_wave_cluster(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.mysql.models.HeatWaveCluster` :rtype: :class:`~oci.response.Response` @@ -1171,6 +1236,7 @@ def get_heat_wave_cluster(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_none_match" @@ -1246,6 +1312,10 @@ def get_heat_wave_cluster_memory_estimate(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.mysql.models.HeatWaveClusterMemoryEstimate` :rtype: :class:`~oci.response.Response` @@ -1257,6 +1327,7 @@ def get_heat_wave_cluster_memory_estimate(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1384,6 +1455,10 @@ def list_db_systems(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.mysql.models.DbSystemSummary` :rtype: :class:`~oci.response.Response` @@ -1395,6 +1470,7 @@ def list_db_systems(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "is_analytics_cluster_attached", @@ -1521,6 +1597,10 @@ def restart_analytics_cluster(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1532,6 +1612,7 @@ def restart_analytics_cluster(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1625,6 +1706,10 @@ def restart_db_system(self, db_system_id, restart_db_system_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1636,6 +1721,7 @@ def restart_db_system(self, db_system_id, restart_db_system_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1728,6 +1814,10 @@ def restart_heat_wave_cluster(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1739,6 +1829,7 @@ def restart_heat_wave_cluster(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1830,6 +1921,10 @@ def start_analytics_cluster(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1841,6 +1936,7 @@ def start_analytics_cluster(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1931,6 +2027,10 @@ def start_db_system(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1942,6 +2042,7 @@ def start_db_system(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2032,6 +2133,10 @@ def start_heat_wave_cluster(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2043,6 +2148,7 @@ def start_heat_wave_cluster(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2134,6 +2240,10 @@ def stop_analytics_cluster(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2145,6 +2255,7 @@ def stop_analytics_cluster(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2240,6 +2351,10 @@ def stop_db_system(self, db_system_id, stop_db_system_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2251,6 +2366,7 @@ def stop_db_system(self, db_system_id, stop_db_system_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2343,6 +2459,10 @@ def stop_heat_wave_cluster(self, db_system_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2354,6 +2474,7 @@ def stop_heat_wave_cluster(self, db_system_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2440,6 +2561,10 @@ def update_analytics_cluster(self, db_system_id, update_analytics_cluster_detail To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2451,6 +2576,7 @@ def update_analytics_cluster(self, db_system_id, update_analytics_cluster_detail # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2542,6 +2668,10 @@ def update_db_system(self, db_system_id, update_db_system_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2553,6 +2683,7 @@ def update_db_system(self, db_system_id, update_db_system_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2637,6 +2768,10 @@ def update_heat_wave_cluster(self, db_system_id, update_heat_wave_cluster_detail To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2648,6 +2783,7 @@ def update_heat_wave_cluster(self, db_system_id, update_heat_wave_cluster_detail # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/mysql/db_system_client_composite_operations.py b/src/oci/mysql/db_system_client_composite_operations.py index 3c8d336abe..5759edc258 100644 --- a/src/oci/mysql/db_system_client_composite_operations.py +++ b/src/oci/mysql/db_system_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/mysql/models/__init__.py b/src/oci/mysql/models/__init__.py index fbc36e90b5..b5233909e4 100644 --- a/src/oci/mysql/models/__init__.py +++ b/src/oci/mysql/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/mysql/models/add_analytics_cluster_details.py b/src/oci/mysql/models/add_analytics_cluster_details.py index 862d6627b1..9edcbd5d4e 100644 --- a/src/oci/mysql/models/add_analytics_cluster_details.py +++ b/src/oci/mysql/models/add_analytics_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/add_heat_wave_cluster_details.py b/src/oci/mysql/models/add_heat_wave_cluster_details.py index 942f68ce35..7145e6860c 100644 --- a/src/oci/mysql/models/add_heat_wave_cluster_details.py +++ b/src/oci/mysql/models/add_heat_wave_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/analytics_cluster.py b/src/oci/mysql/models/analytics_cluster.py index ab57fea635..0be4021738 100644 --- a/src/oci/mysql/models/analytics_cluster.py +++ b/src/oci/mysql/models/analytics_cluster.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/analytics_cluster_memory_estimate.py b/src/oci/mysql/models/analytics_cluster_memory_estimate.py index 3c6dfdc6eb..1f37fc564a 100644 --- a/src/oci/mysql/models/analytics_cluster_memory_estimate.py +++ b/src/oci/mysql/models/analytics_cluster_memory_estimate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/analytics_cluster_node.py b/src/oci/mysql/models/analytics_cluster_node.py index 8a5d253407..adee9dcf0a 100644 --- a/src/oci/mysql/models/analytics_cluster_node.py +++ b/src/oci/mysql/models/analytics_cluster_node.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/analytics_cluster_schema_memory_estimate.py b/src/oci/mysql/models/analytics_cluster_schema_memory_estimate.py index 6a933721f7..22a8222bae 100644 --- a/src/oci/mysql/models/analytics_cluster_schema_memory_estimate.py +++ b/src/oci/mysql/models/analytics_cluster_schema_memory_estimate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/analytics_cluster_summary.py b/src/oci/mysql/models/analytics_cluster_summary.py index 2820e7125d..576b20aedf 100644 --- a/src/oci/mysql/models/analytics_cluster_summary.py +++ b/src/oci/mysql/models/analytics_cluster_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/analytics_cluster_table_memory_estimate.py b/src/oci/mysql/models/analytics_cluster_table_memory_estimate.py index 4e38f2d9f0..6444eb2ec3 100644 --- a/src/oci/mysql/models/analytics_cluster_table_memory_estimate.py +++ b/src/oci/mysql/models/analytics_cluster_table_memory_estimate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/backup.py b/src/oci/mysql/models/backup.py index eec0a8369f..5720a8d858 100644 --- a/src/oci/mysql/models/backup.py +++ b/src/oci/mysql/models/backup.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/backup_policy.py b/src/oci/mysql/models/backup_policy.py index eb6b6d4bcb..cce10fa393 100644 --- a/src/oci/mysql/models/backup_policy.py +++ b/src/oci/mysql/models/backup_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/backup_summary.py b/src/oci/mysql/models/backup_summary.py index 44c5baf5ab..7255a33153 100644 --- a/src/oci/mysql/models/backup_summary.py +++ b/src/oci/mysql/models/backup_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/ca_certificate.py b/src/oci/mysql/models/ca_certificate.py index 672eb175f9..4fb6f300c0 100644 --- a/src/oci/mysql/models/ca_certificate.py +++ b/src/oci/mysql/models/ca_certificate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/change_backup_compartment_details.py b/src/oci/mysql/models/change_backup_compartment_details.py index 5bf8442064..37c8338169 100644 --- a/src/oci/mysql/models/change_backup_compartment_details.py +++ b/src/oci/mysql/models/change_backup_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/channel.py b/src/oci/mysql/models/channel.py index 4638920b93..2b2c796542 100644 --- a/src/oci/mysql/models/channel.py +++ b/src/oci/mysql/models/channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/channel_source.py b/src/oci/mysql/models/channel_source.py index 6475450342..b6532f25c6 100644 --- a/src/oci/mysql/models/channel_source.py +++ b/src/oci/mysql/models/channel_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/channel_source_mysql.py b/src/oci/mysql/models/channel_source_mysql.py index 9c1d9e0a10..348b7e8d29 100644 --- a/src/oci/mysql/models/channel_source_mysql.py +++ b/src/oci/mysql/models/channel_source_mysql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .channel_source import ChannelSource diff --git a/src/oci/mysql/models/channel_summary.py b/src/oci/mysql/models/channel_summary.py index 6fc8c7814d..92b39555b3 100644 --- a/src/oci/mysql/models/channel_summary.py +++ b/src/oci/mysql/models/channel_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/channel_target.py b/src/oci/mysql/models/channel_target.py index 5acf5ab3c3..716a243d3c 100644 --- a/src/oci/mysql/models/channel_target.py +++ b/src/oci/mysql/models/channel_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/channel_target_db_system.py b/src/oci/mysql/models/channel_target_db_system.py index d09996afca..0831e69d66 100644 --- a/src/oci/mysql/models/channel_target_db_system.py +++ b/src/oci/mysql/models/channel_target_db_system.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .channel_target import ChannelTarget diff --git a/src/oci/mysql/models/configuration.py b/src/oci/mysql/models/configuration.py index 4246480944..91efc461a7 100644 --- a/src/oci/mysql/models/configuration.py +++ b/src/oci/mysql/models/configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/configuration_summary.py b/src/oci/mysql/models/configuration_summary.py index 08993d4e19..d2d4b56bb1 100644 --- a/src/oci/mysql/models/configuration_summary.py +++ b/src/oci/mysql/models/configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/configuration_variables.py b/src/oci/mysql/models/configuration_variables.py index 89fc479a69..f434af7c49 100644 --- a/src/oci/mysql/models/configuration_variables.py +++ b/src/oci/mysql/models/configuration_variables.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/create_backup_details.py b/src/oci/mysql/models/create_backup_details.py index 8d1674b732..59ea5318be 100644 --- a/src/oci/mysql/models/create_backup_details.py +++ b/src/oci/mysql/models/create_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/create_backup_policy_details.py b/src/oci/mysql/models/create_backup_policy_details.py index 68508ab67c..7ae8ca812b 100644 --- a/src/oci/mysql/models/create_backup_policy_details.py +++ b/src/oci/mysql/models/create_backup_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/create_channel_details.py b/src/oci/mysql/models/create_channel_details.py index e75661e2b6..293399d096 100644 --- a/src/oci/mysql/models/create_channel_details.py +++ b/src/oci/mysql/models/create_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/create_channel_source_details.py b/src/oci/mysql/models/create_channel_source_details.py index c937884df7..04fa68d272 100644 --- a/src/oci/mysql/models/create_channel_source_details.py +++ b/src/oci/mysql/models/create_channel_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/create_channel_source_from_mysql_details.py b/src/oci/mysql/models/create_channel_source_from_mysql_details.py index 838dd33f52..29cc977adb 100644 --- a/src/oci/mysql/models/create_channel_source_from_mysql_details.py +++ b/src/oci/mysql/models/create_channel_source_from_mysql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_channel_source_details import CreateChannelSourceDetails diff --git a/src/oci/mysql/models/create_channel_target_details.py b/src/oci/mysql/models/create_channel_target_details.py index f8a6d44d30..db8c748950 100644 --- a/src/oci/mysql/models/create_channel_target_details.py +++ b/src/oci/mysql/models/create_channel_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/create_channel_target_from_db_system_details.py b/src/oci/mysql/models/create_channel_target_from_db_system_details.py index bf1cb2c911..e0055db820 100644 --- a/src/oci/mysql/models/create_channel_target_from_db_system_details.py +++ b/src/oci/mysql/models/create_channel_target_from_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_channel_target_details import CreateChannelTargetDetails diff --git a/src/oci/mysql/models/create_configuration_details.py b/src/oci/mysql/models/create_configuration_details.py index fa7db68b61..04c314b28e 100644 --- a/src/oci/mysql/models/create_configuration_details.py +++ b/src/oci/mysql/models/create_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/create_db_system_details.py b/src/oci/mysql/models/create_db_system_details.py index b7e2e9882b..f4be4e35a7 100644 --- a/src/oci/mysql/models/create_db_system_details.py +++ b/src/oci/mysql/models/create_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/create_db_system_source_details.py b/src/oci/mysql/models/create_db_system_source_details.py index 3db6a31caf..7e912767b3 100644 --- a/src/oci/mysql/models/create_db_system_source_details.py +++ b/src/oci/mysql/models/create_db_system_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/create_db_system_source_from_backup_details.py b/src/oci/mysql/models/create_db_system_source_from_backup_details.py index 1202458974..c81eb611cb 100644 --- a/src/oci/mysql/models/create_db_system_source_from_backup_details.py +++ b/src/oci/mysql/models/create_db_system_source_from_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_db_system_source_details import CreateDbSystemSourceDetails diff --git a/src/oci/mysql/models/create_db_system_source_from_none_details.py b/src/oci/mysql/models/create_db_system_source_from_none_details.py index b62c311423..a6ef158845 100644 --- a/src/oci/mysql/models/create_db_system_source_from_none_details.py +++ b/src/oci/mysql/models/create_db_system_source_from_none_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_db_system_source_details import CreateDbSystemSourceDetails diff --git a/src/oci/mysql/models/create_db_system_source_import_from_url_details.py b/src/oci/mysql/models/create_db_system_source_import_from_url_details.py index 44f435a66a..adab80ce97 100644 --- a/src/oci/mysql/models/create_db_system_source_import_from_url_details.py +++ b/src/oci/mysql/models/create_db_system_source_import_from_url_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_db_system_source_details import CreateDbSystemSourceDetails diff --git a/src/oci/mysql/models/create_maintenance_details.py b/src/oci/mysql/models/create_maintenance_details.py index 4d1189e412..ea30a2e930 100644 --- a/src/oci/mysql/models/create_maintenance_details.py +++ b/src/oci/mysql/models/create_maintenance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/db_system.py b/src/oci/mysql/models/db_system.py index 99f04f1b3b..a48ab8089b 100644 --- a/src/oci/mysql/models/db_system.py +++ b/src/oci/mysql/models/db_system.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/db_system_endpoint.py b/src/oci/mysql/models/db_system_endpoint.py index 31cc33e24b..f43bb4aafd 100644 --- a/src/oci/mysql/models/db_system_endpoint.py +++ b/src/oci/mysql/models/db_system_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/db_system_placement.py b/src/oci/mysql/models/db_system_placement.py index 72e2464d69..6cad44fdb0 100644 --- a/src/oci/mysql/models/db_system_placement.py +++ b/src/oci/mysql/models/db_system_placement.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/db_system_snapshot.py b/src/oci/mysql/models/db_system_snapshot.py index d8b157dd12..e494fa6d84 100644 --- a/src/oci/mysql/models/db_system_snapshot.py +++ b/src/oci/mysql/models/db_system_snapshot.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/db_system_source.py b/src/oci/mysql/models/db_system_source.py index caa675aae0..186f6dda64 100644 --- a/src/oci/mysql/models/db_system_source.py +++ b/src/oci/mysql/models/db_system_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/db_system_source_from_backup.py b/src/oci/mysql/models/db_system_source_from_backup.py index 1eeef7242e..34c1b88ffd 100644 --- a/src/oci/mysql/models/db_system_source_from_backup.py +++ b/src/oci/mysql/models/db_system_source_from_backup.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .db_system_source import DbSystemSource diff --git a/src/oci/mysql/models/db_system_source_from_none.py b/src/oci/mysql/models/db_system_source_from_none.py index 7465af45df..c0872af1be 100644 --- a/src/oci/mysql/models/db_system_source_from_none.py +++ b/src/oci/mysql/models/db_system_source_from_none.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .db_system_source import DbSystemSource diff --git a/src/oci/mysql/models/db_system_source_import_from_url.py b/src/oci/mysql/models/db_system_source_import_from_url.py index 7dea545278..80d93de70a 100644 --- a/src/oci/mysql/models/db_system_source_import_from_url.py +++ b/src/oci/mysql/models/db_system_source_import_from_url.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .db_system_source import DbSystemSource diff --git a/src/oci/mysql/models/db_system_summary.py b/src/oci/mysql/models/db_system_summary.py index 241b8c6e13..26d5c8da17 100644 --- a/src/oci/mysql/models/db_system_summary.py +++ b/src/oci/mysql/models/db_system_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/heat_wave_cluster.py b/src/oci/mysql/models/heat_wave_cluster.py index 85e3df3ea1..54e3930948 100644 --- a/src/oci/mysql/models/heat_wave_cluster.py +++ b/src/oci/mysql/models/heat_wave_cluster.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/heat_wave_cluster_memory_estimate.py b/src/oci/mysql/models/heat_wave_cluster_memory_estimate.py index 43f977d2d5..0318c8389f 100644 --- a/src/oci/mysql/models/heat_wave_cluster_memory_estimate.py +++ b/src/oci/mysql/models/heat_wave_cluster_memory_estimate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/heat_wave_cluster_schema_memory_estimate.py b/src/oci/mysql/models/heat_wave_cluster_schema_memory_estimate.py index fbe2ff05ad..94d514fc78 100644 --- a/src/oci/mysql/models/heat_wave_cluster_schema_memory_estimate.py +++ b/src/oci/mysql/models/heat_wave_cluster_schema_memory_estimate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/heat_wave_cluster_summary.py b/src/oci/mysql/models/heat_wave_cluster_summary.py index f9b5423555..50e8ddde63 100644 --- a/src/oci/mysql/models/heat_wave_cluster_summary.py +++ b/src/oci/mysql/models/heat_wave_cluster_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/heat_wave_cluster_table_memory_estimate.py b/src/oci/mysql/models/heat_wave_cluster_table_memory_estimate.py index 6823a392ab..e9b223ab11 100644 --- a/src/oci/mysql/models/heat_wave_cluster_table_memory_estimate.py +++ b/src/oci/mysql/models/heat_wave_cluster_table_memory_estimate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/heat_wave_node.py b/src/oci/mysql/models/heat_wave_node.py index dea6571274..f7814009c3 100644 --- a/src/oci/mysql/models/heat_wave_node.py +++ b/src/oci/mysql/models/heat_wave_node.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/maintenance_details.py b/src/oci/mysql/models/maintenance_details.py index df53ec1261..618e3908bd 100644 --- a/src/oci/mysql/models/maintenance_details.py +++ b/src/oci/mysql/models/maintenance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/pem_ca_certificate.py b/src/oci/mysql/models/pem_ca_certificate.py index ec6f3a5850..2bb7c5ff50 100644 --- a/src/oci/mysql/models/pem_ca_certificate.py +++ b/src/oci/mysql/models/pem_ca_certificate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .ca_certificate import CaCertificate diff --git a/src/oci/mysql/models/restart_db_system_details.py b/src/oci/mysql/models/restart_db_system_details.py index 3f08b8a6a2..716b8c7f5c 100644 --- a/src/oci/mysql/models/restart_db_system_details.py +++ b/src/oci/mysql/models/restart_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/shape_summary.py b/src/oci/mysql/models/shape_summary.py index 66ed5e48c3..498ffbad4e 100644 --- a/src/oci/mysql/models/shape_summary.py +++ b/src/oci/mysql/models/shape_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/stop_db_system_details.py b/src/oci/mysql/models/stop_db_system_details.py index 451b24f1aa..a18c2b2c63 100644 --- a/src/oci/mysql/models/stop_db_system_details.py +++ b/src/oci/mysql/models/stop_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/update_analytics_cluster_details.py b/src/oci/mysql/models/update_analytics_cluster_details.py index 4a0af70433..fb36c21c99 100644 --- a/src/oci/mysql/models/update_analytics_cluster_details.py +++ b/src/oci/mysql/models/update_analytics_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/update_backup_details.py b/src/oci/mysql/models/update_backup_details.py index b1cfccc178..5463eb2555 100644 --- a/src/oci/mysql/models/update_backup_details.py +++ b/src/oci/mysql/models/update_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/update_backup_policy_details.py b/src/oci/mysql/models/update_backup_policy_details.py index c385344e7d..9b8369bf6d 100644 --- a/src/oci/mysql/models/update_backup_policy_details.py +++ b/src/oci/mysql/models/update_backup_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/update_channel_details.py b/src/oci/mysql/models/update_channel_details.py index 27e163a096..0efc4df186 100644 --- a/src/oci/mysql/models/update_channel_details.py +++ b/src/oci/mysql/models/update_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/update_channel_source_details.py b/src/oci/mysql/models/update_channel_source_details.py index c0829427a1..880c683373 100644 --- a/src/oci/mysql/models/update_channel_source_details.py +++ b/src/oci/mysql/models/update_channel_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/update_channel_source_from_mysql_details.py b/src/oci/mysql/models/update_channel_source_from_mysql_details.py index b55f0076c8..6f396943b9 100644 --- a/src/oci/mysql/models/update_channel_source_from_mysql_details.py +++ b/src/oci/mysql/models/update_channel_source_from_mysql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_channel_source_details import UpdateChannelSourceDetails diff --git a/src/oci/mysql/models/update_channel_target_details.py b/src/oci/mysql/models/update_channel_target_details.py index 5349c7be60..895e176095 100644 --- a/src/oci/mysql/models/update_channel_target_details.py +++ b/src/oci/mysql/models/update_channel_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/update_channel_target_from_db_system_details.py b/src/oci/mysql/models/update_channel_target_from_db_system_details.py index 505447e37c..711c63f098 100644 --- a/src/oci/mysql/models/update_channel_target_from_db_system_details.py +++ b/src/oci/mysql/models/update_channel_target_from_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_channel_target_details import UpdateChannelTargetDetails diff --git a/src/oci/mysql/models/update_configuration_details.py b/src/oci/mysql/models/update_configuration_details.py index ea07e54ed0..811af79cdd 100644 --- a/src/oci/mysql/models/update_configuration_details.py +++ b/src/oci/mysql/models/update_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/update_db_system_details.py b/src/oci/mysql/models/update_db_system_details.py index d38ec4ceb0..c21803e42b 100644 --- a/src/oci/mysql/models/update_db_system_details.py +++ b/src/oci/mysql/models/update_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/update_heat_wave_cluster_details.py b/src/oci/mysql/models/update_heat_wave_cluster_details.py index cbfd003243..523dcf56bd 100644 --- a/src/oci/mysql/models/update_heat_wave_cluster_details.py +++ b/src/oci/mysql/models/update_heat_wave_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/update_maintenance_details.py b/src/oci/mysql/models/update_maintenance_details.py index 112012f57b..33c937d442 100644 --- a/src/oci/mysql/models/update_maintenance_details.py +++ b/src/oci/mysql/models/update_maintenance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/version.py b/src/oci/mysql/models/version.py index 23d46a4448..212ea30954 100644 --- a/src/oci/mysql/models/version.py +++ b/src/oci/mysql/models/version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/version_summary.py b/src/oci/mysql/models/version_summary.py index 0a66e5dae0..606dfab411 100644 --- a/src/oci/mysql/models/version_summary.py +++ b/src/oci/mysql/models/version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/work_request.py b/src/oci/mysql/models/work_request.py index 5449f4f3e3..947c44385e 100644 --- a/src/oci/mysql/models/work_request.py +++ b/src/oci/mysql/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/work_request_error.py b/src/oci/mysql/models/work_request_error.py index 04dde83e08..26ac6a8cc9 100644 --- a/src/oci/mysql/models/work_request_error.py +++ b/src/oci/mysql/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/work_request_log_entry.py b/src/oci/mysql/models/work_request_log_entry.py index 8d02a6a994..7b37ab8d12 100644 --- a/src/oci/mysql/models/work_request_log_entry.py +++ b/src/oci/mysql/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/work_request_resource.py b/src/oci/mysql/models/work_request_resource.py index 527e5cdc02..f625923a22 100644 --- a/src/oci/mysql/models/work_request_resource.py +++ b/src/oci/mysql/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/models/work_request_summary.py b/src/oci/mysql/models/work_request_summary.py index 0de827c751..e758b88944 100644 --- a/src/oci/mysql/models/work_request_summary.py +++ b/src/oci/mysql/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/mysql/mysqlaas_client.py b/src/oci/mysql/mysqlaas_client.py index 033e98e9f2..6a7737b5a0 100644 --- a/src/oci/mysql/mysqlaas_client.py +++ b/src/oci/mysql/mysqlaas_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("mysqlaas", config, signer, mysql_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -127,6 +133,10 @@ def create_configuration(self, create_configuration_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.mysql.models.Configuration` :rtype: :class:`~oci.response.Response` @@ -138,6 +148,7 @@ def create_configuration(self, create_configuration_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -209,6 +220,10 @@ def delete_configuration(self, configuration_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -220,6 +235,7 @@ def delete_configuration(self, configuration_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -297,6 +313,10 @@ def get_configuration(self, configuration_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.mysql.models.Configuration` :rtype: :class:`~oci.response.Response` @@ -308,6 +328,7 @@ def get_configuration(self, configuration_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_none_match" @@ -431,6 +452,10 @@ def list_configurations(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.mysql.models.ConfigurationSummary` :rtype: :class:`~oci.response.Response` @@ -442,6 +467,7 @@ def list_configurations(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "configuration_id", @@ -570,6 +596,10 @@ def list_shapes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.mysql.models.ShapeSummary` :rtype: :class:`~oci.response.Response` @@ -581,6 +611,7 @@ def list_shapes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "is_supported_for", @@ -664,6 +695,10 @@ def list_versions(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.mysql.models.VersionSummary` :rtype: :class:`~oci.response.Response` @@ -675,6 +710,7 @@ def list_versions(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -750,6 +786,10 @@ def update_configuration(self, configuration_id, update_configuration_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.mysql.models.Configuration` :rtype: :class:`~oci.response.Response` @@ -761,6 +801,7 @@ def update_configuration(self, configuration_id, update_configuration_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/mysql/mysqlaas_client_composite_operations.py b/src/oci/mysql/mysqlaas_client_composite_operations.py index 543eb1bddb..878132956d 100644 --- a/src/oci/mysql/mysqlaas_client_composite_operations.py +++ b/src/oci/mysql/mysqlaas_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/mysql/work_requests_client.py b/src/oci/mysql/work_requests_client.py index b0c7a242fd..2fba1b29b0 100644 --- a/src/oci/mysql/work_requests_client.py +++ b/src/oci/mysql/work_requests_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("work_requests", config, signer, mysql_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -126,6 +132,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.mysql.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -137,6 +147,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_none_match", "opc_request_id" @@ -222,6 +233,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.mysql.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -233,6 +248,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -326,6 +342,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.mysql.models.WorkRequestLogEntry` :rtype: :class:`~oci.response.Response` @@ -337,6 +357,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -442,6 +463,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.mysql.models.WorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -453,6 +478,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "sort_by", diff --git a/src/oci/mysql/work_requests_client_composite_operations.py b/src/oci/mysql/work_requests_client_composite_operations.py index 7ab138edab..3725930a80 100644 --- a/src/oci/mysql/work_requests_client_composite_operations.py +++ b/src/oci/mysql/work_requests_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/network_load_balancer/__init__.py b/src/oci/network_load_balancer/__init__.py index 6cf3bea12b..aa714c3377 100644 --- a/src/oci/network_load_balancer/__init__.py +++ b/src/oci/network_load_balancer/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/network_load_balancer/models/__init__.py b/src/oci/network_load_balancer/models/__init__.py index 1ff98f8655..78bf502cc9 100644 --- a/src/oci/network_load_balancer/models/__init__.py +++ b/src/oci/network_load_balancer/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/network_load_balancer/models/backend.py b/src/oci/network_load_balancer/models/backend.py index 990348673b..3b6f2f3d01 100644 --- a/src/oci/network_load_balancer/models/backend.py +++ b/src/oci/network_load_balancer/models/backend.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/backend_collection.py b/src/oci/network_load_balancer/models/backend_collection.py index 0001f30c9e..f8a0f0a631 100644 --- a/src/oci/network_load_balancer/models/backend_collection.py +++ b/src/oci/network_load_balancer/models/backend_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/backend_details.py b/src/oci/network_load_balancer/models/backend_details.py index 59f0fedd3a..ab945e2c72 100644 --- a/src/oci/network_load_balancer/models/backend_details.py +++ b/src/oci/network_load_balancer/models/backend_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/backend_health.py b/src/oci/network_load_balancer/models/backend_health.py index 5efe8bb7d3..8a84a4dd15 100644 --- a/src/oci/network_load_balancer/models/backend_health.py +++ b/src/oci/network_load_balancer/models/backend_health.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/backend_set.py b/src/oci/network_load_balancer/models/backend_set.py index d8ccc3238a..5b5bb503d3 100644 --- a/src/oci/network_load_balancer/models/backend_set.py +++ b/src/oci/network_load_balancer/models/backend_set.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -31,6 +31,14 @@ class BackendSet(object): #: This constant has a value of "FIVE_TUPLE" POLICY_FIVE_TUPLE = "FIVE_TUPLE" + #: A constant which can be used with the ip_version property of a BackendSet. + #: This constant has a value of "IPV4" + IP_VERSION_IPV4 = "IPV4" + + #: A constant which can be used with the ip_version property of a BackendSet. + #: This constant has a value of "IPV6" + IP_VERSION_IPV6 = "IPV6" + def __init__(self, **kwargs): """ Initializes a new BackendSet object with values from keyword arguments. @@ -50,6 +58,12 @@ def __init__(self, **kwargs): The value to assign to the is_preserve_source property of this BackendSet. :type is_preserve_source: bool + :param ip_version: + The value to assign to the ip_version property of this BackendSet. + Allowed values for this property are: "IPV4", "IPV6", 'UNKNOWN_ENUM_VALUE'. + Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. + :type ip_version: str + :param backends: The value to assign to the backends property of this BackendSet. :type backends: list[oci.network_load_balancer.models.Backend] @@ -63,6 +77,7 @@ def __init__(self, **kwargs): 'name': 'str', 'policy': 'str', 'is_preserve_source': 'bool', + 'ip_version': 'str', 'backends': 'list[Backend]', 'health_checker': 'HealthChecker' } @@ -71,6 +86,7 @@ def __init__(self, **kwargs): 'name': 'name', 'policy': 'policy', 'is_preserve_source': 'isPreserveSource', + 'ip_version': 'ipVersion', 'backends': 'backends', 'health_checker': 'healthChecker' } @@ -78,6 +94,7 @@ def __init__(self, **kwargs): self._name = None self._policy = None self._is_preserve_source = None + self._ip_version = None self._backends = None self._health_checker = None @@ -177,6 +194,36 @@ def is_preserve_source(self, is_preserve_source): """ self._is_preserve_source = is_preserve_source + @property + def ip_version(self): + """ + Gets the ip_version of this BackendSet. + IP version associated with the backend set. + + Allowed values for this property are: "IPV4", "IPV6", 'UNKNOWN_ENUM_VALUE'. + Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. + + + :return: The ip_version of this BackendSet. + :rtype: str + """ + return self._ip_version + + @ip_version.setter + def ip_version(self, ip_version): + """ + Sets the ip_version of this BackendSet. + IP version associated with the backend set. + + + :param ip_version: The ip_version of this BackendSet. + :type: str + """ + allowed_values = ["IPV4", "IPV6"] + if not value_allowed_none_or_none_sentinel(ip_version, allowed_values): + ip_version = 'UNKNOWN_ENUM_VALUE' + self._ip_version = ip_version + @property def backends(self): """ diff --git a/src/oci/network_load_balancer/models/backend_set_collection.py b/src/oci/network_load_balancer/models/backend_set_collection.py index 9a486bdf65..e274a5a5c8 100644 --- a/src/oci/network_load_balancer/models/backend_set_collection.py +++ b/src/oci/network_load_balancer/models/backend_set_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -10,7 +10,7 @@ @init_model_state_from_kwargs class BackendSetCollection(object): """ - Wrapper object for an array of BackendSetSummary objects. + Wrapper object for an array of `BackendSetSummary` objects. """ def __init__(self, **kwargs): @@ -37,7 +37,7 @@ def __init__(self, **kwargs): def items(self): """ Gets the items of this BackendSetCollection. - An array of BackendSetSummary objects. + An array of `BackendSetSummary` objects. :return: The items of this BackendSetCollection. @@ -49,7 +49,7 @@ def items(self): def items(self, items): """ Sets the items of this BackendSetCollection. - An array of BackendSetSummary objects. + An array of `BackendSetSummary` objects. :param items: The items of this BackendSetCollection. diff --git a/src/oci/network_load_balancer/models/backend_set_details.py b/src/oci/network_load_balancer/models/backend_set_details.py index c0a48ddd2b..2735424386 100644 --- a/src/oci/network_load_balancer/models/backend_set_details.py +++ b/src/oci/network_load_balancer/models/backend_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -31,6 +31,14 @@ class BackendSetDetails(object): #: This constant has a value of "FIVE_TUPLE" POLICY_FIVE_TUPLE = "FIVE_TUPLE" + #: A constant which can be used with the ip_version property of a BackendSetDetails. + #: This constant has a value of "IPV4" + IP_VERSION_IPV4 = "IPV4" + + #: A constant which can be used with the ip_version property of a BackendSetDetails. + #: This constant has a value of "IPV6" + IP_VERSION_IPV6 = "IPV6" + def __init__(self, **kwargs): """ Initializes a new BackendSetDetails object with values from keyword arguments. @@ -41,6 +49,11 @@ def __init__(self, **kwargs): Allowed values for this property are: "TWO_TUPLE", "THREE_TUPLE", "FIVE_TUPLE" :type policy: str + :param ip_version: + The value to assign to the ip_version property of this BackendSetDetails. + Allowed values for this property are: "IPV4", "IPV6" + :type ip_version: str + :param is_preserve_source: The value to assign to the is_preserve_source property of this BackendSetDetails. :type is_preserve_source: bool @@ -56,6 +69,7 @@ def __init__(self, **kwargs): """ self.swagger_types = { 'policy': 'str', + 'ip_version': 'str', 'is_preserve_source': 'bool', 'backends': 'list[Backend]', 'health_checker': 'HealthChecker' @@ -63,12 +77,14 @@ def __init__(self, **kwargs): self.attribute_map = { 'policy': 'policy', + 'ip_version': 'ipVersion', 'is_preserve_source': 'isPreserveSource', 'backends': 'backends', 'health_checker': 'healthChecker' } self._policy = None + self._ip_version = None self._is_preserve_source = None self._backends = None self._health_checker = None @@ -109,6 +125,38 @@ def policy(self, policy): ) self._policy = policy + @property + def ip_version(self): + """ + Gets the ip_version of this BackendSetDetails. + IP version associated with the backend set. + + Allowed values for this property are: "IPV4", "IPV6" + + + :return: The ip_version of this BackendSetDetails. + :rtype: str + """ + return self._ip_version + + @ip_version.setter + def ip_version(self, ip_version): + """ + Sets the ip_version of this BackendSetDetails. + IP version associated with the backend set. + + + :param ip_version: The ip_version of this BackendSetDetails. + :type: str + """ + allowed_values = ["IPV4", "IPV6"] + if not value_allowed_none_or_none_sentinel(ip_version, allowed_values): + raise ValueError( + "Invalid value for `ip_version`, must be None or one of {0}" + .format(allowed_values) + ) + self._ip_version = ip_version + @property def is_preserve_source(self): """ diff --git a/src/oci/network_load_balancer/models/backend_set_health.py b/src/oci/network_load_balancer/models/backend_set_health.py index 04b1dcde97..7ac6f45223 100644 --- a/src/oci/network_load_balancer/models/backend_set_health.py +++ b/src/oci/network_load_balancer/models/backend_set_health.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/backend_set_summary.py b/src/oci/network_load_balancer/models/backend_set_summary.py index dc00c84bad..fc36ea40cf 100644 --- a/src/oci/network_load_balancer/models/backend_set_summary.py +++ b/src/oci/network_load_balancer/models/backend_set_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -31,6 +31,14 @@ class BackendSetSummary(object): #: This constant has a value of "FIVE_TUPLE" POLICY_FIVE_TUPLE = "FIVE_TUPLE" + #: A constant which can be used with the ip_version property of a BackendSetSummary. + #: This constant has a value of "IPV4" + IP_VERSION_IPV4 = "IPV4" + + #: A constant which can be used with the ip_version property of a BackendSetSummary. + #: This constant has a value of "IPV6" + IP_VERSION_IPV6 = "IPV6" + def __init__(self, **kwargs): """ Initializes a new BackendSetSummary object with values from keyword arguments. @@ -50,6 +58,12 @@ def __init__(self, **kwargs): The value to assign to the is_preserve_source property of this BackendSetSummary. :type is_preserve_source: bool + :param ip_version: + The value to assign to the ip_version property of this BackendSetSummary. + Allowed values for this property are: "IPV4", "IPV6", 'UNKNOWN_ENUM_VALUE'. + Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. + :type ip_version: str + :param backends: The value to assign to the backends property of this BackendSetSummary. :type backends: list[oci.network_load_balancer.models.Backend] @@ -63,6 +77,7 @@ def __init__(self, **kwargs): 'name': 'str', 'policy': 'str', 'is_preserve_source': 'bool', + 'ip_version': 'str', 'backends': 'list[Backend]', 'health_checker': 'HealthChecker' } @@ -71,6 +86,7 @@ def __init__(self, **kwargs): 'name': 'name', 'policy': 'policy', 'is_preserve_source': 'isPreserveSource', + 'ip_version': 'ipVersion', 'backends': 'backends', 'health_checker': 'healthChecker' } @@ -78,6 +94,7 @@ def __init__(self, **kwargs): self._name = None self._policy = None self._is_preserve_source = None + self._ip_version = None self._backends = None self._health_checker = None @@ -153,8 +170,8 @@ def policy(self, policy): def is_preserve_source(self): """ Gets the is_preserve_source of this BackendSetSummary. - If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. - Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. + If this parameter is enabled, the network load balancer preserves the source IP of the packet forwarded to the backend servers. + Backend servers see the original source IP. If the `isPreserveSourceDestination` parameter is enabled for the network load balancer resource, this parameter cannot be disabled. The value is true by default. @@ -167,8 +184,8 @@ def is_preserve_source(self): def is_preserve_source(self, is_preserve_source): """ Sets the is_preserve_source of this BackendSetSummary. - If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. - Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. + If this parameter is enabled, the network load balancer preserves the source IP of the packet forwarded to the backend servers. + Backend servers see the original source IP. If the `isPreserveSourceDestination` parameter is enabled for the network load balancer resource, this parameter cannot be disabled. The value is true by default. @@ -177,6 +194,36 @@ def is_preserve_source(self, is_preserve_source): """ self._is_preserve_source = is_preserve_source + @property + def ip_version(self): + """ + Gets the ip_version of this BackendSetSummary. + IP version associated with the backend set. + + Allowed values for this property are: "IPV4", "IPV6", 'UNKNOWN_ENUM_VALUE'. + Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. + + + :return: The ip_version of this BackendSetSummary. + :rtype: str + """ + return self._ip_version + + @ip_version.setter + def ip_version(self, ip_version): + """ + Sets the ip_version of this BackendSetSummary. + IP version associated with the backend set. + + + :param ip_version: The ip_version of this BackendSetSummary. + :type: str + """ + allowed_values = ["IPV4", "IPV6"] + if not value_allowed_none_or_none_sentinel(ip_version, allowed_values): + ip_version = 'UNKNOWN_ENUM_VALUE' + self._ip_version = ip_version + @property def backends(self): """ diff --git a/src/oci/network_load_balancer/models/backend_summary.py b/src/oci/network_load_balancer/models/backend_summary.py index 342f4962a6..addc24c22b 100644 --- a/src/oci/network_load_balancer/models/backend_summary.py +++ b/src/oci/network_load_balancer/models/backend_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/change_network_load_balancer_compartment_details.py b/src/oci/network_load_balancer/models/change_network_load_balancer_compartment_details.py index 3627cec38f..d1265fa7cb 100644 --- a/src/oci/network_load_balancer/models/change_network_load_balancer_compartment_details.py +++ b/src/oci/network_load_balancer/models/change_network_load_balancer_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/create_backend_details.py b/src/oci/network_load_balancer/models/create_backend_details.py index 0ccd86a4ba..6b7c845ff0 100644 --- a/src/oci/network_load_balancer/models/create_backend_details.py +++ b/src/oci/network_load_balancer/models/create_backend_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/create_backend_set_details.py b/src/oci/network_load_balancer/models/create_backend_set_details.py index f25f527d97..a9a61380e4 100644 --- a/src/oci/network_load_balancer/models/create_backend_set_details.py +++ b/src/oci/network_load_balancer/models/create_backend_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -31,6 +31,14 @@ class CreateBackendSetDetails(object): #: This constant has a value of "FIVE_TUPLE" POLICY_FIVE_TUPLE = "FIVE_TUPLE" + #: A constant which can be used with the ip_version property of a CreateBackendSetDetails. + #: This constant has a value of "IPV4" + IP_VERSION_IPV4 = "IPV4" + + #: A constant which can be used with the ip_version property of a CreateBackendSetDetails. + #: This constant has a value of "IPV6" + IP_VERSION_IPV6 = "IPV6" + def __init__(self, **kwargs): """ Initializes a new CreateBackendSetDetails object with values from keyword arguments. @@ -49,6 +57,11 @@ def __init__(self, **kwargs): The value to assign to the is_preserve_source property of this CreateBackendSetDetails. :type is_preserve_source: bool + :param ip_version: + The value to assign to the ip_version property of this CreateBackendSetDetails. + Allowed values for this property are: "IPV4", "IPV6" + :type ip_version: str + :param backends: The value to assign to the backends property of this CreateBackendSetDetails. :type backends: list[oci.network_load_balancer.models.BackendDetails] @@ -62,6 +75,7 @@ def __init__(self, **kwargs): 'name': 'str', 'policy': 'str', 'is_preserve_source': 'bool', + 'ip_version': 'str', 'backends': 'list[BackendDetails]', 'health_checker': 'HealthCheckerDetails' } @@ -70,6 +84,7 @@ def __init__(self, **kwargs): 'name': 'name', 'policy': 'policy', 'is_preserve_source': 'isPreserveSource', + 'ip_version': 'ipVersion', 'backends': 'backends', 'health_checker': 'healthChecker' } @@ -77,6 +92,7 @@ def __init__(self, **kwargs): self._name = None self._policy = None self._is_preserve_source = None + self._ip_version = None self._backends = None self._health_checker = None @@ -178,6 +194,38 @@ def is_preserve_source(self, is_preserve_source): """ self._is_preserve_source = is_preserve_source + @property + def ip_version(self): + """ + Gets the ip_version of this CreateBackendSetDetails. + IP version associated with the backend set. + + Allowed values for this property are: "IPV4", "IPV6" + + + :return: The ip_version of this CreateBackendSetDetails. + :rtype: str + """ + return self._ip_version + + @ip_version.setter + def ip_version(self, ip_version): + """ + Sets the ip_version of this CreateBackendSetDetails. + IP version associated with the backend set. + + + :param ip_version: The ip_version of this CreateBackendSetDetails. + :type: str + """ + allowed_values = ["IPV4", "IPV6"] + if not value_allowed_none_or_none_sentinel(ip_version, allowed_values): + raise ValueError( + "Invalid value for `ip_version`, must be None or one of {0}" + .format(allowed_values) + ) + self._ip_version = ip_version + @property def backends(self): """ diff --git a/src/oci/network_load_balancer/models/create_listener_details.py b/src/oci/network_load_balancer/models/create_listener_details.py index 48627aab45..81a525a79c 100644 --- a/src/oci/network_load_balancer/models/create_listener_details.py +++ b/src/oci/network_load_balancer/models/create_listener_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -29,6 +29,18 @@ class CreateListenerDetails(object): #: This constant has a value of "UDP" PROTOCOL_UDP = "UDP" + #: A constant which can be used with the protocol property of a CreateListenerDetails. + #: This constant has a value of "TCP_AND_UDP" + PROTOCOL_TCP_AND_UDP = "TCP_AND_UDP" + + #: A constant which can be used with the ip_version property of a CreateListenerDetails. + #: This constant has a value of "IPV4" + IP_VERSION_IPV4 = "IPV4" + + #: A constant which can be used with the ip_version property of a CreateListenerDetails. + #: This constant has a value of "IPV6" + IP_VERSION_IPV6 = "IPV6" + def __init__(self, **kwargs): """ Initializes a new CreateListenerDetails object with values from keyword arguments. @@ -48,28 +60,36 @@ def __init__(self, **kwargs): :param protocol: The value to assign to the protocol property of this CreateListenerDetails. - Allowed values for this property are: "ANY", "TCP", "UDP" + Allowed values for this property are: "ANY", "TCP", "UDP", "TCP_AND_UDP" :type protocol: str + :param ip_version: + The value to assign to the ip_version property of this CreateListenerDetails. + Allowed values for this property are: "IPV4", "IPV6" + :type ip_version: str + """ self.swagger_types = { 'name': 'str', 'default_backend_set_name': 'str', 'port': 'int', - 'protocol': 'str' + 'protocol': 'str', + 'ip_version': 'str' } self.attribute_map = { 'name': 'name', 'default_backend_set_name': 'defaultBackendSetName', 'port': 'port', - 'protocol': 'protocol' + 'protocol': 'protocol', + 'ip_version': 'ipVersion' } self._name = None self._default_backend_set_name = None self._port = None self._protocol = None + self._ip_version = None @property def name(self): @@ -167,7 +187,7 @@ def protocol(self): Example: `TCP` - Allowed values for this property are: "ANY", "TCP", "UDP" + Allowed values for this property are: "ANY", "TCP", "UDP", "TCP_AND_UDP" :return: The protocol of this CreateListenerDetails. @@ -191,7 +211,7 @@ def protocol(self, protocol): :param protocol: The protocol of this CreateListenerDetails. :type: str """ - allowed_values = ["ANY", "TCP", "UDP"] + allowed_values = ["ANY", "TCP", "UDP", "TCP_AND_UDP"] if not value_allowed_none_or_none_sentinel(protocol, allowed_values): raise ValueError( "Invalid value for `protocol`, must be None or one of {0}" @@ -199,6 +219,38 @@ def protocol(self, protocol): ) self._protocol = protocol + @property + def ip_version(self): + """ + Gets the ip_version of this CreateListenerDetails. + IP version associated with the listener. + + Allowed values for this property are: "IPV4", "IPV6" + + + :return: The ip_version of this CreateListenerDetails. + :rtype: str + """ + return self._ip_version + + @ip_version.setter + def ip_version(self, ip_version): + """ + Sets the ip_version of this CreateListenerDetails. + IP version associated with the listener. + + + :param ip_version: The ip_version of this CreateListenerDetails. + :type: str + """ + allowed_values = ["IPV4", "IPV6"] + if not value_allowed_none_or_none_sentinel(ip_version, allowed_values): + raise ValueError( + "Invalid value for `ip_version`, must be None or one of {0}" + .format(allowed_values) + ) + self._ip_version = ip_version + def __repr__(self): return formatted_flat_dict(self) diff --git a/src/oci/network_load_balancer/models/create_network_load_balancer_details.py b/src/oci/network_load_balancer/models/create_network_load_balancer_details.py index 8bd3cec88f..487446c73a 100644 --- a/src/oci/network_load_balancer/models/create_network_load_balancer_details.py +++ b/src/oci/network_load_balancer/models/create_network_load_balancer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -27,6 +27,14 @@ class CreateNetworkLoadBalancerDetails(object): __ https://docs.cloud.oracle.com/Content/API/Concepts/sdks.htm """ + #: A constant which can be used with the nlb_ip_version property of a CreateNetworkLoadBalancerDetails. + #: This constant has a value of "IPV4" + NLB_IP_VERSION_IPV4 = "IPV4" + + #: A constant which can be used with the nlb_ip_version property of a CreateNetworkLoadBalancerDetails. + #: This constant has a value of "IPV4_AND_IPV6" + NLB_IP_VERSION_IPV4_AND_IPV6 = "IPV4_AND_IPV6" + def __init__(self, **kwargs): """ Initializes a new CreateNetworkLoadBalancerDetails object with values from keyword arguments. @@ -60,6 +68,11 @@ def __init__(self, **kwargs): The value to assign to the network_security_group_ids property of this CreateNetworkLoadBalancerDetails. :type network_security_group_ids: list[str] + :param nlb_ip_version: + The value to assign to the nlb_ip_version property of this CreateNetworkLoadBalancerDetails. + Allowed values for this property are: "IPV4", "IPV4_AND_IPV6" + :type nlb_ip_version: str + :param listeners: The value to assign to the listeners property of this CreateNetworkLoadBalancerDetails. :type listeners: dict(str, ListenerDetails) @@ -85,6 +98,7 @@ def __init__(self, **kwargs): 'is_private': 'bool', 'subnet_id': 'str', 'network_security_group_ids': 'list[str]', + 'nlb_ip_version': 'str', 'listeners': 'dict(str, ListenerDetails)', 'backend_sets': 'dict(str, BackendSetDetails)', 'freeform_tags': 'dict(str, str)', @@ -99,6 +113,7 @@ def __init__(self, **kwargs): 'is_private': 'isPrivate', 'subnet_id': 'subnetId', 'network_security_group_ids': 'networkSecurityGroupIds', + 'nlb_ip_version': 'nlbIpVersion', 'listeners': 'listeners', 'backend_sets': 'backendSets', 'freeform_tags': 'freeformTags', @@ -112,6 +127,7 @@ def __init__(self, **kwargs): self._is_private = None self._subnet_id = None self._network_security_group_ids = None + self._nlb_ip_version = None self._listeners = None self._backend_sets = None self._freeform_tags = None @@ -353,6 +369,38 @@ def network_security_group_ids(self, network_security_group_ids): """ self._network_security_group_ids = network_security_group_ids + @property + def nlb_ip_version(self): + """ + Gets the nlb_ip_version of this CreateNetworkLoadBalancerDetails. + IP version associated with the NLB. + + Allowed values for this property are: "IPV4", "IPV4_AND_IPV6" + + + :return: The nlb_ip_version of this CreateNetworkLoadBalancerDetails. + :rtype: str + """ + return self._nlb_ip_version + + @nlb_ip_version.setter + def nlb_ip_version(self, nlb_ip_version): + """ + Sets the nlb_ip_version of this CreateNetworkLoadBalancerDetails. + IP version associated with the NLB. + + + :param nlb_ip_version: The nlb_ip_version of this CreateNetworkLoadBalancerDetails. + :type: str + """ + allowed_values = ["IPV4", "IPV4_AND_IPV6"] + if not value_allowed_none_or_none_sentinel(nlb_ip_version, allowed_values): + raise ValueError( + "Invalid value for `nlb_ip_version`, must be None or one of {0}" + .format(allowed_values) + ) + self._nlb_ip_version = nlb_ip_version + @property def listeners(self): """ diff --git a/src/oci/network_load_balancer/models/health_check_result.py b/src/oci/network_load_balancer/models/health_check_result.py index 692153142b..f1161ad56d 100644 --- a/src/oci/network_load_balancer/models/health_check_result.py +++ b/src/oci/network_load_balancer/models/health_check_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/health_checker.py b/src/oci/network_load_balancer/models/health_checker.py index 4a8fe81603..7ae844a49e 100644 --- a/src/oci/network_load_balancer/models/health_checker.py +++ b/src/oci/network_load_balancer/models/health_checker.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/health_checker_details.py b/src/oci/network_load_balancer/models/health_checker_details.py index 99d0152f24..9eac7e4574 100644 --- a/src/oci/network_load_balancer/models/health_checker_details.py +++ b/src/oci/network_load_balancer/models/health_checker_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/ip_address.py b/src/oci/network_load_balancer/models/ip_address.py index f58a0b69d3..4cade7d957 100644 --- a/src/oci/network_load_balancer/models/ip_address.py +++ b/src/oci/network_load_balancer/models/ip_address.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -13,6 +13,14 @@ class IpAddress(object): A load balancer IP address. """ + #: A constant which can be used with the ip_version property of a IpAddress. + #: This constant has a value of "IPV4" + IP_VERSION_IPV4 = "IPV4" + + #: A constant which can be used with the ip_version property of a IpAddress. + #: This constant has a value of "IPV6" + IP_VERSION_IPV6 = "IPV6" + def __init__(self, **kwargs): """ Initializes a new IpAddress object with values from keyword arguments. @@ -26,6 +34,12 @@ def __init__(self, **kwargs): The value to assign to the is_public property of this IpAddress. :type is_public: bool + :param ip_version: + The value to assign to the ip_version property of this IpAddress. + Allowed values for this property are: "IPV4", "IPV6", 'UNKNOWN_ENUM_VALUE'. + Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. + :type ip_version: str + :param reserved_ip: The value to assign to the reserved_ip property of this IpAddress. :type reserved_ip: oci.network_load_balancer.models.ReservedIP @@ -34,17 +48,20 @@ def __init__(self, **kwargs): self.swagger_types = { 'ip_address': 'str', 'is_public': 'bool', + 'ip_version': 'str', 'reserved_ip': 'ReservedIP' } self.attribute_map = { 'ip_address': 'ipAddress', 'is_public': 'isPublic', + 'ip_version': 'ipVersion', 'reserved_ip': 'reservedIp' } self._ip_address = None self._is_public = None + self._ip_version = None self._reserved_ip = None @property @@ -107,6 +124,36 @@ def is_public(self, is_public): """ self._is_public = is_public + @property + def ip_version(self): + """ + Gets the ip_version of this IpAddress. + IP version associated with this IP address. + + Allowed values for this property are: "IPV4", "IPV6", 'UNKNOWN_ENUM_VALUE'. + Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. + + + :return: The ip_version of this IpAddress. + :rtype: str + """ + return self._ip_version + + @ip_version.setter + def ip_version(self, ip_version): + """ + Sets the ip_version of this IpAddress. + IP version associated with this IP address. + + + :param ip_version: The ip_version of this IpAddress. + :type: str + """ + allowed_values = ["IPV4", "IPV6"] + if not value_allowed_none_or_none_sentinel(ip_version, allowed_values): + ip_version = 'UNKNOWN_ENUM_VALUE' + self._ip_version = ip_version + @property def reserved_ip(self): """ diff --git a/src/oci/network_load_balancer/models/listener.py b/src/oci/network_load_balancer/models/listener.py index a75b22036b..97b5c1a63e 100644 --- a/src/oci/network_load_balancer/models/listener.py +++ b/src/oci/network_load_balancer/models/listener.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -29,6 +29,18 @@ class Listener(object): #: This constant has a value of "UDP" PROTOCOL_UDP = "UDP" + #: A constant which can be used with the protocol property of a Listener. + #: This constant has a value of "TCP_AND_UDP" + PROTOCOL_TCP_AND_UDP = "TCP_AND_UDP" + + #: A constant which can be used with the ip_version property of a Listener. + #: This constant has a value of "IPV4" + IP_VERSION_IPV4 = "IPV4" + + #: A constant which can be used with the ip_version property of a Listener. + #: This constant has a value of "IPV6" + IP_VERSION_IPV6 = "IPV6" + def __init__(self, **kwargs): """ Initializes a new Listener object with values from keyword arguments. @@ -48,29 +60,38 @@ def __init__(self, **kwargs): :param protocol: The value to assign to the protocol property of this Listener. - Allowed values for this property are: "ANY", "TCP", "UDP", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "ANY", "TCP", "UDP", "TCP_AND_UDP", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type protocol: str + :param ip_version: + The value to assign to the ip_version property of this Listener. + Allowed values for this property are: "IPV4", "IPV6", 'UNKNOWN_ENUM_VALUE'. + Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. + :type ip_version: str + """ self.swagger_types = { 'name': 'str', 'default_backend_set_name': 'str', 'port': 'int', - 'protocol': 'str' + 'protocol': 'str', + 'ip_version': 'str' } self.attribute_map = { 'name': 'name', 'default_backend_set_name': 'defaultBackendSetName', 'port': 'port', - 'protocol': 'protocol' + 'protocol': 'protocol', + 'ip_version': 'ipVersion' } self._name = None self._default_backend_set_name = None self._port = None self._protocol = None + self._ip_version = None @property def name(self): @@ -168,7 +189,7 @@ def protocol(self): Example: `TCP` - Allowed values for this property are: "ANY", "TCP", "UDP", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "ANY", "TCP", "UDP", "TCP_AND_UDP", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -193,11 +214,41 @@ def protocol(self, protocol): :param protocol: The protocol of this Listener. :type: str """ - allowed_values = ["ANY", "TCP", "UDP"] + allowed_values = ["ANY", "TCP", "UDP", "TCP_AND_UDP"] if not value_allowed_none_or_none_sentinel(protocol, allowed_values): protocol = 'UNKNOWN_ENUM_VALUE' self._protocol = protocol + @property + def ip_version(self): + """ + Gets the ip_version of this Listener. + IP version associated with the listener. + + Allowed values for this property are: "IPV4", "IPV6", 'UNKNOWN_ENUM_VALUE'. + Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. + + + :return: The ip_version of this Listener. + :rtype: str + """ + return self._ip_version + + @ip_version.setter + def ip_version(self, ip_version): + """ + Sets the ip_version of this Listener. + IP version associated with the listener. + + + :param ip_version: The ip_version of this Listener. + :type: str + """ + allowed_values = ["IPV4", "IPV6"] + if not value_allowed_none_or_none_sentinel(ip_version, allowed_values): + ip_version = 'UNKNOWN_ENUM_VALUE' + self._ip_version = ip_version + def __repr__(self): return formatted_flat_dict(self) diff --git a/src/oci/network_load_balancer/models/listener_collection.py b/src/oci/network_load_balancer/models/listener_collection.py index 893fd5a662..e83baa45bc 100644 --- a/src/oci/network_load_balancer/models/listener_collection.py +++ b/src/oci/network_load_balancer/models/listener_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/listener_details.py b/src/oci/network_load_balancer/models/listener_details.py index 36e652b513..7afb8a75ce 100644 --- a/src/oci/network_load_balancer/models/listener_details.py +++ b/src/oci/network_load_balancer/models/listener_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -17,6 +17,14 @@ class ListenerDetails(object): __ https://docs.cloud.oracle.com/Content/Balance/Tasks/managinglisteners.htm """ + #: A constant which can be used with the ip_version property of a ListenerDetails. + #: This constant has a value of "IPV4" + IP_VERSION_IPV4 = "IPV4" + + #: A constant which can be used with the ip_version property of a ListenerDetails. + #: This constant has a value of "IPV6" + IP_VERSION_IPV6 = "IPV6" + #: A constant which can be used with the protocol property of a ListenerDetails. #: This constant has a value of "ANY" PROTOCOL_ANY = "ANY" @@ -29,6 +37,10 @@ class ListenerDetails(object): #: This constant has a value of "UDP" PROTOCOL_UDP = "UDP" + #: A constant which can be used with the protocol property of a ListenerDetails. + #: This constant has a value of "TCP_AND_UDP" + PROTOCOL_TCP_AND_UDP = "TCP_AND_UDP" + def __init__(self, **kwargs): """ Initializes a new ListenerDetails object with values from keyword arguments. @@ -42,19 +54,25 @@ def __init__(self, **kwargs): The value to assign to the default_backend_set_name property of this ListenerDetails. :type default_backend_set_name: str + :param ip_version: + The value to assign to the ip_version property of this ListenerDetails. + Allowed values for this property are: "IPV4", "IPV6" + :type ip_version: str + :param port: The value to assign to the port property of this ListenerDetails. :type port: int :param protocol: The value to assign to the protocol property of this ListenerDetails. - Allowed values for this property are: "ANY", "TCP", "UDP" + Allowed values for this property are: "ANY", "TCP", "UDP", "TCP_AND_UDP" :type protocol: str """ self.swagger_types = { 'name': 'str', 'default_backend_set_name': 'str', + 'ip_version': 'str', 'port': 'int', 'protocol': 'str' } @@ -62,12 +80,14 @@ def __init__(self, **kwargs): self.attribute_map = { 'name': 'name', 'default_backend_set_name': 'defaultBackendSetName', + 'ip_version': 'ipVersion', 'port': 'port', 'protocol': 'protocol' } self._name = None self._default_backend_set_name = None + self._ip_version = None self._port = None self._protocol = None @@ -127,6 +147,38 @@ def default_backend_set_name(self, default_backend_set_name): """ self._default_backend_set_name = default_backend_set_name + @property + def ip_version(self): + """ + Gets the ip_version of this ListenerDetails. + IP version associated with the listener. + + Allowed values for this property are: "IPV4", "IPV6" + + + :return: The ip_version of this ListenerDetails. + :rtype: str + """ + return self._ip_version + + @ip_version.setter + def ip_version(self, ip_version): + """ + Sets the ip_version of this ListenerDetails. + IP version associated with the listener. + + + :param ip_version: The ip_version of this ListenerDetails. + :type: str + """ + allowed_values = ["IPV4", "IPV6"] + if not value_allowed_none_or_none_sentinel(ip_version, allowed_values): + raise ValueError( + "Invalid value for `ip_version`, must be None or one of {0}" + .format(allowed_values) + ) + self._ip_version = ip_version + @property def port(self): """ @@ -167,7 +219,7 @@ def protocol(self): Example: `TCP` - Allowed values for this property are: "ANY", "TCP", "UDP" + Allowed values for this property are: "ANY", "TCP", "UDP", "TCP_AND_UDP" :return: The protocol of this ListenerDetails. @@ -191,7 +243,7 @@ def protocol(self, protocol): :param protocol: The protocol of this ListenerDetails. :type: str """ - allowed_values = ["ANY", "TCP", "UDP"] + allowed_values = ["ANY", "TCP", "UDP", "TCP_AND_UDP"] if not value_allowed_none_or_none_sentinel(protocol, allowed_values): raise ValueError( "Invalid value for `protocol`, must be None or one of {0}" diff --git a/src/oci/network_load_balancer/models/listener_summary.py b/src/oci/network_load_balancer/models/listener_summary.py index a93be2075f..70615ed387 100644 --- a/src/oci/network_load_balancer/models/listener_summary.py +++ b/src/oci/network_load_balancer/models/listener_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -29,6 +29,18 @@ class ListenerSummary(object): #: This constant has a value of "UDP" PROTOCOL_UDP = "UDP" + #: A constant which can be used with the protocol property of a ListenerSummary. + #: This constant has a value of "TCP_AND_UDP" + PROTOCOL_TCP_AND_UDP = "TCP_AND_UDP" + + #: A constant which can be used with the ip_version property of a ListenerSummary. + #: This constant has a value of "IPV4" + IP_VERSION_IPV4 = "IPV4" + + #: A constant which can be used with the ip_version property of a ListenerSummary. + #: This constant has a value of "IPV6" + IP_VERSION_IPV6 = "IPV6" + def __init__(self, **kwargs): """ Initializes a new ListenerSummary object with values from keyword arguments. @@ -48,29 +60,38 @@ def __init__(self, **kwargs): :param protocol: The value to assign to the protocol property of this ListenerSummary. - Allowed values for this property are: "ANY", "TCP", "UDP", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "ANY", "TCP", "UDP", "TCP_AND_UDP", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type protocol: str + :param ip_version: + The value to assign to the ip_version property of this ListenerSummary. + Allowed values for this property are: "IPV4", "IPV6", 'UNKNOWN_ENUM_VALUE'. + Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. + :type ip_version: str + """ self.swagger_types = { 'name': 'str', 'default_backend_set_name': 'str', 'port': 'int', - 'protocol': 'str' + 'protocol': 'str', + 'ip_version': 'str' } self.attribute_map = { 'name': 'name', 'default_backend_set_name': 'defaultBackendSetName', 'port': 'port', - 'protocol': 'protocol' + 'protocol': 'protocol', + 'ip_version': 'ipVersion' } self._name = None self._default_backend_set_name = None self._port = None self._protocol = None + self._ip_version = None @property def name(self): @@ -168,7 +189,7 @@ def protocol(self): Example: `TCP` - Allowed values for this property are: "ANY", "TCP", "UDP", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "ANY", "TCP", "UDP", "TCP_AND_UDP", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -193,11 +214,41 @@ def protocol(self, protocol): :param protocol: The protocol of this ListenerSummary. :type: str """ - allowed_values = ["ANY", "TCP", "UDP"] + allowed_values = ["ANY", "TCP", "UDP", "TCP_AND_UDP"] if not value_allowed_none_or_none_sentinel(protocol, allowed_values): protocol = 'UNKNOWN_ENUM_VALUE' self._protocol = protocol + @property + def ip_version(self): + """ + Gets the ip_version of this ListenerSummary. + IP version associated with the listener. + + Allowed values for this property are: "IPV4", "IPV6", 'UNKNOWN_ENUM_VALUE'. + Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. + + + :return: The ip_version of this ListenerSummary. + :rtype: str + """ + return self._ip_version + + @ip_version.setter + def ip_version(self, ip_version): + """ + Sets the ip_version of this ListenerSummary. + IP version associated with the listener. + + + :param ip_version: The ip_version of this ListenerSummary. + :type: str + """ + allowed_values = ["IPV4", "IPV6"] + if not value_allowed_none_or_none_sentinel(ip_version, allowed_values): + ip_version = 'UNKNOWN_ENUM_VALUE' + self._ip_version = ip_version + def __repr__(self): return formatted_flat_dict(self) diff --git a/src/oci/network_load_balancer/models/network_load_balancer.py b/src/oci/network_load_balancer/models/network_load_balancer.py index 76380850a7..6412b38294 100644 --- a/src/oci/network_load_balancer/models/network_load_balancer.py +++ b/src/oci/network_load_balancer/models/network_load_balancer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -51,6 +51,14 @@ class NetworkLoadBalancer(object): #: This constant has a value of "FAILED" LIFECYCLE_STATE_FAILED = "FAILED" + #: A constant which can be used with the nlb_ip_version property of a NetworkLoadBalancer. + #: This constant has a value of "IPV4" + NLB_IP_VERSION_IPV4 = "IPV4" + + #: A constant which can be used with the nlb_ip_version property of a NetworkLoadBalancer. + #: This constant has a value of "IPV4_AND_IPV6" + NLB_IP_VERSION_IPV4_AND_IPV6 = "IPV4_AND_IPV6" + def __init__(self, **kwargs): """ Initializes a new NetworkLoadBalancer object with values from keyword arguments. @@ -78,6 +86,12 @@ def __init__(self, **kwargs): The value to assign to the lifecycle_details property of this NetworkLoadBalancer. :type lifecycle_details: str + :param nlb_ip_version: + The value to assign to the nlb_ip_version property of this NetworkLoadBalancer. + Allowed values for this property are: "IPV4", "IPV4_AND_IPV6", 'UNKNOWN_ENUM_VALUE'. + Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. + :type nlb_ip_version: str + :param time_created: The value to assign to the time_created property of this NetworkLoadBalancer. :type time_created: datetime @@ -133,6 +147,7 @@ def __init__(self, **kwargs): 'display_name': 'str', 'lifecycle_state': 'str', 'lifecycle_details': 'str', + 'nlb_ip_version': 'str', 'time_created': 'datetime', 'time_updated': 'datetime', 'ip_addresses': 'list[IpAddress]', @@ -153,6 +168,7 @@ def __init__(self, **kwargs): 'display_name': 'displayName', 'lifecycle_state': 'lifecycleState', 'lifecycle_details': 'lifecycleDetails', + 'nlb_ip_version': 'nlbIpVersion', 'time_created': 'timeCreated', 'time_updated': 'timeUpdated', 'ip_addresses': 'ipAddresses', @@ -172,6 +188,7 @@ def __init__(self, **kwargs): self._display_name = None self._lifecycle_state = None self._lifecycle_details = None + self._nlb_ip_version = None self._time_created = None self._time_updated = None self._ip_addresses = None @@ -325,6 +342,36 @@ def lifecycle_details(self, lifecycle_details): """ self._lifecycle_details = lifecycle_details + @property + def nlb_ip_version(self): + """ + Gets the nlb_ip_version of this NetworkLoadBalancer. + IP version associated with the NLB. + + Allowed values for this property are: "IPV4", "IPV4_AND_IPV6", 'UNKNOWN_ENUM_VALUE'. + Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. + + + :return: The nlb_ip_version of this NetworkLoadBalancer. + :rtype: str + """ + return self._nlb_ip_version + + @nlb_ip_version.setter + def nlb_ip_version(self, nlb_ip_version): + """ + Sets the nlb_ip_version of this NetworkLoadBalancer. + IP version associated with the NLB. + + + :param nlb_ip_version: The nlb_ip_version of this NetworkLoadBalancer. + :type: str + """ + allowed_values = ["IPV4", "IPV4_AND_IPV6"] + if not value_allowed_none_or_none_sentinel(nlb_ip_version, allowed_values): + nlb_ip_version = 'UNKNOWN_ENUM_VALUE' + self._nlb_ip_version = nlb_ip_version + @property def time_created(self): """ diff --git a/src/oci/network_load_balancer/models/network_load_balancer_collection.py b/src/oci/network_load_balancer/models/network_load_balancer_collection.py index a2ca95ec03..ff7d98cf19 100644 --- a/src/oci/network_load_balancer/models/network_load_balancer_collection.py +++ b/src/oci/network_load_balancer/models/network_load_balancer_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/network_load_balancer_health.py b/src/oci/network_load_balancer/models/network_load_balancer_health.py index df0e3cf9c5..2e9fa515df 100644 --- a/src/oci/network_load_balancer/models/network_load_balancer_health.py +++ b/src/oci/network_load_balancer/models/network_load_balancer_health.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/network_load_balancer_health_collection.py b/src/oci/network_load_balancer/models/network_load_balancer_health_collection.py index 17beacf167..6635a6940a 100644 --- a/src/oci/network_load_balancer/models/network_load_balancer_health_collection.py +++ b/src/oci/network_load_balancer/models/network_load_balancer_health_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/network_load_balancer_health_summary.py b/src/oci/network_load_balancer/models/network_load_balancer_health_summary.py index d9b0e545b1..1171a32eb7 100644 --- a/src/oci/network_load_balancer/models/network_load_balancer_health_summary.py +++ b/src/oci/network_load_balancer/models/network_load_balancer_health_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/network_load_balancer_summary.py b/src/oci/network_load_balancer/models/network_load_balancer_summary.py index b562946a46..9ac8de8cee 100644 --- a/src/oci/network_load_balancer/models/network_load_balancer_summary.py +++ b/src/oci/network_load_balancer/models/network_load_balancer_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -37,6 +37,14 @@ class NetworkLoadBalancerSummary(object): #: This constant has a value of "FAILED" LIFECYCLE_STATE_FAILED = "FAILED" + #: A constant which can be used with the nlb_ip_version property of a NetworkLoadBalancerSummary. + #: This constant has a value of "IPV4" + NLB_IP_VERSION_IPV4 = "IPV4" + + #: A constant which can be used with the nlb_ip_version property of a NetworkLoadBalancerSummary. + #: This constant has a value of "IPV4_AND_IPV6" + NLB_IP_VERSION_IPV4_AND_IPV6 = "IPV4_AND_IPV6" + def __init__(self, **kwargs): """ Initializes a new NetworkLoadBalancerSummary object with values from keyword arguments. @@ -64,6 +72,12 @@ def __init__(self, **kwargs): The value to assign to the lifecycle_details property of this NetworkLoadBalancerSummary. :type lifecycle_details: str + :param nlb_ip_version: + The value to assign to the nlb_ip_version property of this NetworkLoadBalancerSummary. + Allowed values for this property are: "IPV4", "IPV4_AND_IPV6", 'UNKNOWN_ENUM_VALUE'. + Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. + :type nlb_ip_version: str + :param time_created: The value to assign to the time_created property of this NetworkLoadBalancerSummary. :type time_created: datetime @@ -119,6 +133,7 @@ def __init__(self, **kwargs): 'display_name': 'str', 'lifecycle_state': 'str', 'lifecycle_details': 'str', + 'nlb_ip_version': 'str', 'time_created': 'datetime', 'time_updated': 'datetime', 'ip_addresses': 'list[IpAddress]', @@ -139,6 +154,7 @@ def __init__(self, **kwargs): 'display_name': 'displayName', 'lifecycle_state': 'lifecycleState', 'lifecycle_details': 'lifecycleDetails', + 'nlb_ip_version': 'nlbIpVersion', 'time_created': 'timeCreated', 'time_updated': 'timeUpdated', 'ip_addresses': 'ipAddresses', @@ -158,6 +174,7 @@ def __init__(self, **kwargs): self._display_name = None self._lifecycle_state = None self._lifecycle_details = None + self._nlb_ip_version = None self._time_created = None self._time_updated = None self._ip_addresses = None @@ -311,6 +328,36 @@ def lifecycle_details(self, lifecycle_details): """ self._lifecycle_details = lifecycle_details + @property + def nlb_ip_version(self): + """ + Gets the nlb_ip_version of this NetworkLoadBalancerSummary. + IP version associated with the NLB. + + Allowed values for this property are: "IPV4", "IPV4_AND_IPV6", 'UNKNOWN_ENUM_VALUE'. + Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. + + + :return: The nlb_ip_version of this NetworkLoadBalancerSummary. + :rtype: str + """ + return self._nlb_ip_version + + @nlb_ip_version.setter + def nlb_ip_version(self, nlb_ip_version): + """ + Sets the nlb_ip_version of this NetworkLoadBalancerSummary. + IP version associated with the NLB. + + + :param nlb_ip_version: The nlb_ip_version of this NetworkLoadBalancerSummary. + :type: str + """ + allowed_values = ["IPV4", "IPV4_AND_IPV6"] + if not value_allowed_none_or_none_sentinel(nlb_ip_version, allowed_values): + nlb_ip_version = 'UNKNOWN_ENUM_VALUE' + self._nlb_ip_version = nlb_ip_version + @property def time_created(self): """ diff --git a/src/oci/network_load_balancer/models/network_load_balancers_policy_collection.py b/src/oci/network_load_balancer/models/network_load_balancers_policy_collection.py index f4e7f3530f..ac5308d3d2 100644 --- a/src/oci/network_load_balancer/models/network_load_balancers_policy_collection.py +++ b/src/oci/network_load_balancer/models/network_load_balancers_policy_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/network_load_balancers_protocol_collection.py b/src/oci/network_load_balancer/models/network_load_balancers_protocol_collection.py index 8dbbe6f15a..906d3ba503 100644 --- a/src/oci/network_load_balancer/models/network_load_balancers_protocol_collection.py +++ b/src/oci/network_load_balancer/models/network_load_balancers_protocol_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -10,6 +10,7 @@ @init_model_state_from_kwargs class NetworkLoadBalancersProtocolCollection(object): """ + This object is deprecated. Wrapper object for array of ProtocolSummary objects. """ diff --git a/src/oci/network_load_balancer/models/reserved_ip.py b/src/oci/network_load_balancer/models/reserved_ip.py index 6e9a6d63f1..47a310d31e 100644 --- a/src/oci/network_load_balancer/models/reserved_ip.py +++ b/src/oci/network_load_balancer/models/reserved_ip.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/update_backend_details.py b/src/oci/network_load_balancer/models/update_backend_details.py index 4065e0b2fc..e00010182d 100644 --- a/src/oci/network_load_balancer/models/update_backend_details.py +++ b/src/oci/network_load_balancer/models/update_backend_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/update_backend_set_details.py b/src/oci/network_load_balancer/models/update_backend_set_details.py index 724e3b904f..2ba55a4e8a 100644 --- a/src/oci/network_load_balancer/models/update_backend_set_details.py +++ b/src/oci/network_load_balancer/models/update_backend_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -19,6 +19,14 @@ class UpdateBackendSetDetails(object): __ https://docs.cloud.oracle.com/Content/Balance/Tasks/managingbackendsets.htm """ + #: A constant which can be used with the ip_version property of a UpdateBackendSetDetails. + #: This constant has a value of "IPV4" + IP_VERSION_IPV4 = "IPV4" + + #: A constant which can be used with the ip_version property of a UpdateBackendSetDetails. + #: This constant has a value of "IPV6" + IP_VERSION_IPV6 = "IPV6" + def __init__(self, **kwargs): """ Initializes a new UpdateBackendSetDetails object with values from keyword arguments. @@ -32,6 +40,11 @@ def __init__(self, **kwargs): The value to assign to the is_preserve_source property of this UpdateBackendSetDetails. :type is_preserve_source: bool + :param ip_version: + The value to assign to the ip_version property of this UpdateBackendSetDetails. + Allowed values for this property are: "IPV4", "IPV6" + :type ip_version: str + :param backends: The value to assign to the backends property of this UpdateBackendSetDetails. :type backends: list[oci.network_load_balancer.models.BackendDetails] @@ -44,6 +57,7 @@ def __init__(self, **kwargs): self.swagger_types = { 'policy': 'str', 'is_preserve_source': 'bool', + 'ip_version': 'str', 'backends': 'list[BackendDetails]', 'health_checker': 'HealthCheckerDetails' } @@ -51,12 +65,14 @@ def __init__(self, **kwargs): self.attribute_map = { 'policy': 'policy', 'is_preserve_source': 'isPreserveSource', + 'ip_version': 'ipVersion', 'backends': 'backends', 'health_checker': 'healthChecker' } self._policy = None self._is_preserve_source = None + self._ip_version = None self._backends = None self._health_checker = None @@ -118,6 +134,38 @@ def is_preserve_source(self, is_preserve_source): """ self._is_preserve_source = is_preserve_source + @property + def ip_version(self): + """ + Gets the ip_version of this UpdateBackendSetDetails. + The IP version associated with the backend set. + + Allowed values for this property are: "IPV4", "IPV6" + + + :return: The ip_version of this UpdateBackendSetDetails. + :rtype: str + """ + return self._ip_version + + @ip_version.setter + def ip_version(self, ip_version): + """ + Sets the ip_version of this UpdateBackendSetDetails. + The IP version associated with the backend set. + + + :param ip_version: The ip_version of this UpdateBackendSetDetails. + :type: str + """ + allowed_values = ["IPV4", "IPV6"] + if not value_allowed_none_or_none_sentinel(ip_version, allowed_values): + raise ValueError( + "Invalid value for `ip_version`, must be None or one of {0}" + .format(allowed_values) + ) + self._ip_version = ip_version + @property def backends(self): """ diff --git a/src/oci/network_load_balancer/models/update_health_checker_details.py b/src/oci/network_load_balancer/models/update_health_checker_details.py index 3eac0c4a60..65f3ebb145 100644 --- a/src/oci/network_load_balancer/models/update_health_checker_details.py +++ b/src/oci/network_load_balancer/models/update_health_checker_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/update_listener_details.py b/src/oci/network_load_balancer/models/update_listener_details.py index f6f71f8c32..660a78b278 100644 --- a/src/oci/network_load_balancer/models/update_listener_details.py +++ b/src/oci/network_load_balancer/models/update_listener_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -29,6 +29,18 @@ class UpdateListenerDetails(object): #: This constant has a value of "UDP" PROTOCOL_UDP = "UDP" + #: A constant which can be used with the protocol property of a UpdateListenerDetails. + #: This constant has a value of "TCP_AND_UDP" + PROTOCOL_TCP_AND_UDP = "TCP_AND_UDP" + + #: A constant which can be used with the ip_version property of a UpdateListenerDetails. + #: This constant has a value of "IPV4" + IP_VERSION_IPV4 = "IPV4" + + #: A constant which can be used with the ip_version property of a UpdateListenerDetails. + #: This constant has a value of "IPV6" + IP_VERSION_IPV6 = "IPV6" + def __init__(self, **kwargs): """ Initializes a new UpdateListenerDetails object with values from keyword arguments. @@ -44,25 +56,33 @@ def __init__(self, **kwargs): :param protocol: The value to assign to the protocol property of this UpdateListenerDetails. - Allowed values for this property are: "ANY", "TCP", "UDP" + Allowed values for this property are: "ANY", "TCP", "UDP", "TCP_AND_UDP" :type protocol: str + :param ip_version: + The value to assign to the ip_version property of this UpdateListenerDetails. + Allowed values for this property are: "IPV4", "IPV6" + :type ip_version: str + """ self.swagger_types = { 'default_backend_set_name': 'str', 'port': 'int', - 'protocol': 'str' + 'protocol': 'str', + 'ip_version': 'str' } self.attribute_map = { 'default_backend_set_name': 'defaultBackendSetName', 'port': 'port', - 'protocol': 'protocol' + 'protocol': 'protocol', + 'ip_version': 'ipVersion' } self._default_backend_set_name = None self._port = None self._protocol = None + self._ip_version = None @property def default_backend_set_name(self): @@ -132,7 +152,7 @@ def protocol(self): Example: `TCP` - Allowed values for this property are: "ANY", "TCP", "UDP" + Allowed values for this property are: "ANY", "TCP", "UDP", "TCP_AND_UDP" :return: The protocol of this UpdateListenerDetails. @@ -156,7 +176,7 @@ def protocol(self, protocol): :param protocol: The protocol of this UpdateListenerDetails. :type: str """ - allowed_values = ["ANY", "TCP", "UDP"] + allowed_values = ["ANY", "TCP", "UDP", "TCP_AND_UDP"] if not value_allowed_none_or_none_sentinel(protocol, allowed_values): raise ValueError( "Invalid value for `protocol`, must be None or one of {0}" @@ -164,6 +184,38 @@ def protocol(self, protocol): ) self._protocol = protocol + @property + def ip_version(self): + """ + Gets the ip_version of this UpdateListenerDetails. + IP version associated with the listener. + + Allowed values for this property are: "IPV4", "IPV6" + + + :return: The ip_version of this UpdateListenerDetails. + :rtype: str + """ + return self._ip_version + + @ip_version.setter + def ip_version(self, ip_version): + """ + Sets the ip_version of this UpdateListenerDetails. + IP version associated with the listener. + + + :param ip_version: The ip_version of this UpdateListenerDetails. + :type: str + """ + allowed_values = ["IPV4", "IPV6"] + if not value_allowed_none_or_none_sentinel(ip_version, allowed_values): + raise ValueError( + "Invalid value for `ip_version`, must be None or one of {0}" + .format(allowed_values) + ) + self._ip_version = ip_version + def __repr__(self): return formatted_flat_dict(self) diff --git a/src/oci/network_load_balancer/models/update_network_load_balancer_details.py b/src/oci/network_load_balancer/models/update_network_load_balancer_details.py index 868b8d0180..7831eebab8 100644 --- a/src/oci/network_load_balancer/models/update_network_load_balancer_details.py +++ b/src/oci/network_load_balancer/models/update_network_load_balancer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -15,6 +15,14 @@ class UpdateNetworkLoadBalancerDetails(object): **Caution:** Oracle recommends that you avoid using any confidential information when you supply string values using the API. """ + #: A constant which can be used with the nlb_ip_version property of a UpdateNetworkLoadBalancerDetails. + #: This constant has a value of "IPV4" + NLB_IP_VERSION_IPV4 = "IPV4" + + #: A constant which can be used with the nlb_ip_version property of a UpdateNetworkLoadBalancerDetails. + #: This constant has a value of "IPV4_AND_IPV6" + NLB_IP_VERSION_IPV4_AND_IPV6 = "IPV4_AND_IPV6" + def __init__(self, **kwargs): """ Initializes a new UpdateNetworkLoadBalancerDetails object with values from keyword arguments. @@ -28,6 +36,11 @@ def __init__(self, **kwargs): The value to assign to the is_preserve_source_destination property of this UpdateNetworkLoadBalancerDetails. :type is_preserve_source_destination: bool + :param nlb_ip_version: + The value to assign to the nlb_ip_version property of this UpdateNetworkLoadBalancerDetails. + Allowed values for this property are: "IPV4", "IPV4_AND_IPV6" + :type nlb_ip_version: str + :param freeform_tags: The value to assign to the freeform_tags property of this UpdateNetworkLoadBalancerDetails. :type freeform_tags: dict(str, str) @@ -40,6 +53,7 @@ def __init__(self, **kwargs): self.swagger_types = { 'display_name': 'str', 'is_preserve_source_destination': 'bool', + 'nlb_ip_version': 'str', 'freeform_tags': 'dict(str, str)', 'defined_tags': 'dict(str, dict(str, object))' } @@ -47,12 +61,14 @@ def __init__(self, **kwargs): self.attribute_map = { 'display_name': 'displayName', 'is_preserve_source_destination': 'isPreserveSourceDestination', + 'nlb_ip_version': 'nlbIpVersion', 'freeform_tags': 'freeformTags', 'defined_tags': 'definedTags' } self._display_name = None self._is_preserve_source_destination = None + self._nlb_ip_version = None self._freeform_tags = None self._defined_tags = None @@ -112,6 +128,38 @@ def is_preserve_source_destination(self, is_preserve_source_destination): """ self._is_preserve_source_destination = is_preserve_source_destination + @property + def nlb_ip_version(self): + """ + Gets the nlb_ip_version of this UpdateNetworkLoadBalancerDetails. + IP version associated with the NLB. + + Allowed values for this property are: "IPV4", "IPV4_AND_IPV6" + + + :return: The nlb_ip_version of this UpdateNetworkLoadBalancerDetails. + :rtype: str + """ + return self._nlb_ip_version + + @nlb_ip_version.setter + def nlb_ip_version(self, nlb_ip_version): + """ + Sets the nlb_ip_version of this UpdateNetworkLoadBalancerDetails. + IP version associated with the NLB. + + + :param nlb_ip_version: The nlb_ip_version of this UpdateNetworkLoadBalancerDetails. + :type: str + """ + allowed_values = ["IPV4", "IPV4_AND_IPV6"] + if not value_allowed_none_or_none_sentinel(nlb_ip_version, allowed_values): + raise ValueError( + "Invalid value for `nlb_ip_version`, must be None or one of {0}" + .format(allowed_values) + ) + self._nlb_ip_version = nlb_ip_version + @property def freeform_tags(self): """ diff --git a/src/oci/network_load_balancer/models/update_network_security_groups_details.py b/src/oci/network_load_balancer/models/update_network_security_groups_details.py index 0c9bab63de..83828332a7 100644 --- a/src/oci/network_load_balancer/models/update_network_security_groups_details.py +++ b/src/oci/network_load_balancer/models/update_network_security_groups_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/work_request.py b/src/oci/network_load_balancer/models/work_request.py index 866e364e14..9bb0a69b9c 100644 --- a/src/oci/network_load_balancer/models/work_request.py +++ b/src/oci/network_load_balancer/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -73,6 +73,14 @@ class WorkRequest(object): #: This constant has a value of "CHANGE_COMPARTMENT" OPERATION_TYPE_CHANGE_COMPARTMENT = "CHANGE_COMPARTMENT" + #: A constant which can be used with the operation_type property of a WorkRequest. + #: This constant has a value of "ATTACH_NLB_TO_POD" + OPERATION_TYPE_ATTACH_NLB_TO_POD = "ATTACH_NLB_TO_POD" + + #: A constant which can be used with the operation_type property of a WorkRequest. + #: This constant has a value of "DETACH_NLB_FROM_POD" + OPERATION_TYPE_DETACH_NLB_FROM_POD = "DETACH_NLB_FROM_POD" + #: A constant which can be used with the status property of a WorkRequest. #: This constant has a value of "ACCEPTED" STATUS_ACCEPTED = "ACCEPTED" @@ -104,7 +112,7 @@ def __init__(self, **kwargs): :param operation_type: The value to assign to the operation_type property of this WorkRequest. - Allowed values for this property are: "CREATE_NETWORK_LOAD_BALANCER", "UPDATE_NETWORK_LOAD_BALANCER", "DELETE_NETWORK_LOAD_BALANCER", "CREATE_BACKEND", "UPDATE_BACKEND", "DELETE_BACKEND", "CREATE_LISTENER", "UPDATE_LISTENER", "DELETE_LISTENER", "CREATE_BACKENDSET", "UPDATE_BACKENDSET", "DELETE_BACKENDSET", "UPDATE_NSGS", "UPDATE_HEALTH_CHECKER", "CHANGE_COMPARTMENT", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "CREATE_NETWORK_LOAD_BALANCER", "UPDATE_NETWORK_LOAD_BALANCER", "DELETE_NETWORK_LOAD_BALANCER", "CREATE_BACKEND", "UPDATE_BACKEND", "DELETE_BACKEND", "CREATE_LISTENER", "UPDATE_LISTENER", "DELETE_LISTENER", "CREATE_BACKENDSET", "UPDATE_BACKENDSET", "DELETE_BACKENDSET", "UPDATE_NSGS", "UPDATE_HEALTH_CHECKER", "CHANGE_COMPARTMENT", "ATTACH_NLB_TO_POD", "DETACH_NLB_FROM_POD", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type operation_type: str @@ -183,7 +191,7 @@ def operation_type(self): **[Required]** Gets the operation_type of this WorkRequest. Type of work request. - Allowed values for this property are: "CREATE_NETWORK_LOAD_BALANCER", "UPDATE_NETWORK_LOAD_BALANCER", "DELETE_NETWORK_LOAD_BALANCER", "CREATE_BACKEND", "UPDATE_BACKEND", "DELETE_BACKEND", "CREATE_LISTENER", "UPDATE_LISTENER", "DELETE_LISTENER", "CREATE_BACKENDSET", "UPDATE_BACKENDSET", "DELETE_BACKENDSET", "UPDATE_NSGS", "UPDATE_HEALTH_CHECKER", "CHANGE_COMPARTMENT", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "CREATE_NETWORK_LOAD_BALANCER", "UPDATE_NETWORK_LOAD_BALANCER", "DELETE_NETWORK_LOAD_BALANCER", "CREATE_BACKEND", "UPDATE_BACKEND", "DELETE_BACKEND", "CREATE_LISTENER", "UPDATE_LISTENER", "DELETE_LISTENER", "CREATE_BACKENDSET", "UPDATE_BACKENDSET", "DELETE_BACKENDSET", "UPDATE_NSGS", "UPDATE_HEALTH_CHECKER", "CHANGE_COMPARTMENT", "ATTACH_NLB_TO_POD", "DETACH_NLB_FROM_POD", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -202,7 +210,7 @@ def operation_type(self, operation_type): :param operation_type: The operation_type of this WorkRequest. :type: str """ - allowed_values = ["CREATE_NETWORK_LOAD_BALANCER", "UPDATE_NETWORK_LOAD_BALANCER", "DELETE_NETWORK_LOAD_BALANCER", "CREATE_BACKEND", "UPDATE_BACKEND", "DELETE_BACKEND", "CREATE_LISTENER", "UPDATE_LISTENER", "DELETE_LISTENER", "CREATE_BACKENDSET", "UPDATE_BACKENDSET", "DELETE_BACKENDSET", "UPDATE_NSGS", "UPDATE_HEALTH_CHECKER", "CHANGE_COMPARTMENT"] + allowed_values = ["CREATE_NETWORK_LOAD_BALANCER", "UPDATE_NETWORK_LOAD_BALANCER", "DELETE_NETWORK_LOAD_BALANCER", "CREATE_BACKEND", "UPDATE_BACKEND", "DELETE_BACKEND", "CREATE_LISTENER", "UPDATE_LISTENER", "DELETE_LISTENER", "CREATE_BACKENDSET", "UPDATE_BACKENDSET", "DELETE_BACKENDSET", "UPDATE_NSGS", "UPDATE_HEALTH_CHECKER", "CHANGE_COMPARTMENT", "ATTACH_NLB_TO_POD", "DETACH_NLB_FROM_POD"] if not value_allowed_none_or_none_sentinel(operation_type, allowed_values): operation_type = 'UNKNOWN_ENUM_VALUE' self._operation_type = operation_type diff --git a/src/oci/network_load_balancer/models/work_request_collection.py b/src/oci/network_load_balancer/models/work_request_collection.py index 06d02b4c30..9f6a6df685 100644 --- a/src/oci/network_load_balancer/models/work_request_collection.py +++ b/src/oci/network_load_balancer/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/work_request_error.py b/src/oci/network_load_balancer/models/work_request_error.py index 2d5dd07319..88db9eaca9 100644 --- a/src/oci/network_load_balancer/models/work_request_error.py +++ b/src/oci/network_load_balancer/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/work_request_error_collection.py b/src/oci/network_load_balancer/models/work_request_error_collection.py index d179aec0a4..a8ea5dee3e 100644 --- a/src/oci/network_load_balancer/models/work_request_error_collection.py +++ b/src/oci/network_load_balancer/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/work_request_log_entry.py b/src/oci/network_load_balancer/models/work_request_log_entry.py index 6bfe713bfe..5a541b99a4 100644 --- a/src/oci/network_load_balancer/models/work_request_log_entry.py +++ b/src/oci/network_load_balancer/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/work_request_log_entry_collection.py b/src/oci/network_load_balancer/models/work_request_log_entry_collection.py index d9c1bf3745..79071c10fd 100644 --- a/src/oci/network_load_balancer/models/work_request_log_entry_collection.py +++ b/src/oci/network_load_balancer/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/work_request_resource.py b/src/oci/network_load_balancer/models/work_request_resource.py index ec45d5cf51..cebc1cc5b8 100644 --- a/src/oci/network_load_balancer/models/work_request_resource.py +++ b/src/oci/network_load_balancer/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/network_load_balancer/models/work_request_summary.py b/src/oci/network_load_balancer/models/work_request_summary.py index ce6df0e3d5..54711c90f4 100644 --- a/src/oci/network_load_balancer/models/work_request_summary.py +++ b/src/oci/network_load_balancer/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -73,6 +73,14 @@ class WorkRequestSummary(object): #: This constant has a value of "CHANGE_COMPARTMENT" OPERATION_TYPE_CHANGE_COMPARTMENT = "CHANGE_COMPARTMENT" + #: A constant which can be used with the operation_type property of a WorkRequestSummary. + #: This constant has a value of "ATTACH_NLB_TO_POD" + OPERATION_TYPE_ATTACH_NLB_TO_POD = "ATTACH_NLB_TO_POD" + + #: A constant which can be used with the operation_type property of a WorkRequestSummary. + #: This constant has a value of "DETACH_NLB_FROM_POD" + OPERATION_TYPE_DETACH_NLB_FROM_POD = "DETACH_NLB_FROM_POD" + #: A constant which can be used with the status property of a WorkRequestSummary. #: This constant has a value of "ACCEPTED" STATUS_ACCEPTED = "ACCEPTED" @@ -104,7 +112,7 @@ def __init__(self, **kwargs): :param operation_type: The value to assign to the operation_type property of this WorkRequestSummary. - Allowed values for this property are: "CREATE_NETWORK_LOAD_BALANCER", "UPDATE_NETWORK_LOAD_BALANCER", "DELETE_NETWORK_LOAD_BALANCER", "CREATE_BACKEND", "UPDATE_BACKEND", "DELETE_BACKEND", "CREATE_LISTENER", "UPDATE_LISTENER", "DELETE_LISTENER", "CREATE_BACKENDSET", "UPDATE_BACKENDSET", "DELETE_BACKENDSET", "UPDATE_NSGS", "UPDATE_HEALTH_CHECKER", "CHANGE_COMPARTMENT", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "CREATE_NETWORK_LOAD_BALANCER", "UPDATE_NETWORK_LOAD_BALANCER", "DELETE_NETWORK_LOAD_BALANCER", "CREATE_BACKEND", "UPDATE_BACKEND", "DELETE_BACKEND", "CREATE_LISTENER", "UPDATE_LISTENER", "DELETE_LISTENER", "CREATE_BACKENDSET", "UPDATE_BACKENDSET", "DELETE_BACKENDSET", "UPDATE_NSGS", "UPDATE_HEALTH_CHECKER", "CHANGE_COMPARTMENT", "ATTACH_NLB_TO_POD", "DETACH_NLB_FROM_POD", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type operation_type: str @@ -183,7 +191,7 @@ def operation_type(self): **[Required]** Gets the operation_type of this WorkRequestSummary. Type of work request. - Allowed values for this property are: "CREATE_NETWORK_LOAD_BALANCER", "UPDATE_NETWORK_LOAD_BALANCER", "DELETE_NETWORK_LOAD_BALANCER", "CREATE_BACKEND", "UPDATE_BACKEND", "DELETE_BACKEND", "CREATE_LISTENER", "UPDATE_LISTENER", "DELETE_LISTENER", "CREATE_BACKENDSET", "UPDATE_BACKENDSET", "DELETE_BACKENDSET", "UPDATE_NSGS", "UPDATE_HEALTH_CHECKER", "CHANGE_COMPARTMENT", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "CREATE_NETWORK_LOAD_BALANCER", "UPDATE_NETWORK_LOAD_BALANCER", "DELETE_NETWORK_LOAD_BALANCER", "CREATE_BACKEND", "UPDATE_BACKEND", "DELETE_BACKEND", "CREATE_LISTENER", "UPDATE_LISTENER", "DELETE_LISTENER", "CREATE_BACKENDSET", "UPDATE_BACKENDSET", "DELETE_BACKENDSET", "UPDATE_NSGS", "UPDATE_HEALTH_CHECKER", "CHANGE_COMPARTMENT", "ATTACH_NLB_TO_POD", "DETACH_NLB_FROM_POD", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -202,7 +210,7 @@ def operation_type(self, operation_type): :param operation_type: The operation_type of this WorkRequestSummary. :type: str """ - allowed_values = ["CREATE_NETWORK_LOAD_BALANCER", "UPDATE_NETWORK_LOAD_BALANCER", "DELETE_NETWORK_LOAD_BALANCER", "CREATE_BACKEND", "UPDATE_BACKEND", "DELETE_BACKEND", "CREATE_LISTENER", "UPDATE_LISTENER", "DELETE_LISTENER", "CREATE_BACKENDSET", "UPDATE_BACKENDSET", "DELETE_BACKENDSET", "UPDATE_NSGS", "UPDATE_HEALTH_CHECKER", "CHANGE_COMPARTMENT"] + allowed_values = ["CREATE_NETWORK_LOAD_BALANCER", "UPDATE_NETWORK_LOAD_BALANCER", "DELETE_NETWORK_LOAD_BALANCER", "CREATE_BACKEND", "UPDATE_BACKEND", "DELETE_BACKEND", "CREATE_LISTENER", "UPDATE_LISTENER", "DELETE_LISTENER", "CREATE_BACKENDSET", "UPDATE_BACKENDSET", "DELETE_BACKENDSET", "UPDATE_NSGS", "UPDATE_HEALTH_CHECKER", "CHANGE_COMPARTMENT", "ATTACH_NLB_TO_POD", "DETACH_NLB_FROM_POD"] if not value_allowed_none_or_none_sentinel(operation_type, allowed_values): operation_type = 'UNKNOWN_ENUM_VALUE' self._operation_type = operation_type diff --git a/src/oci/network_load_balancer/network_load_balancer_client.py b/src/oci/network_load_balancer/network_load_balancer_client.py index 35b1b34622..1be441984d 100644 --- a/src/oci/network_load_balancer/network_load_balancer_client.py +++ b/src/oci/network_load_balancer/network_load_balancer_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -18,7 +18,7 @@ class NetworkLoadBalancerClient(object): """ - A description of the network load balancer API + This describes the network load balancer API. """ def __init__(self, config, **kwargs): @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("network_load_balancer", config, signer, network_load_balancer_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -140,6 +146,10 @@ def change_network_load_balancer_compartment(self, network_load_balancer_id, cha To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -151,6 +161,7 @@ def change_network_load_balancer_compartment(self, network_load_balancer_id, cha # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -249,6 +260,10 @@ def create_backend(self, network_load_balancer_id, create_backend_details, backe To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -260,6 +275,7 @@ def create_backend(self, network_load_balancer_id, create_backend_details, backe # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -354,6 +370,10 @@ def create_backend_set(self, network_load_balancer_id, create_backend_set_detail To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -365,6 +385,7 @@ def create_backend_set(self, network_load_balancer_id, create_backend_set_detail # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -458,6 +479,10 @@ def create_listener(self, network_load_balancer_id, create_listener_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -469,6 +494,7 @@ def create_listener(self, network_load_balancer_id, create_listener_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -550,6 +576,10 @@ def create_network_load_balancer(self, create_network_load_balancer_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.NetworkLoadBalancer` :rtype: :class:`~oci.response.Response` @@ -561,6 +591,7 @@ def create_network_load_balancer(self, create_network_load_balancer_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -619,7 +650,10 @@ def delete_backend(self, network_load_balancer_id, backend_set_name, backend_nam Example: `example_backend_set` :param str backend_name: (required) - The name of the backend server to remove. This is specified as :, or as :. + The name of the backend server to remove. + If the backend was created with an explicitly specified name, that name should be used here. + If the backend was created without explicitly specifying the name, but was created using ipAddress, this is specified as :. + If the backend was created without explicitly specifying the name, but was created using targetId, this is specified as :. Example: `10.0.0.3:8080` or `ocid1.privateip..oc1.<unique_ID>:8080` @@ -642,6 +676,10 @@ def delete_backend(self, network_load_balancer_id, backend_set_name, backend_nam To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -653,6 +691,7 @@ def delete_backend(self, network_load_balancer_id, backend_set_name, backend_nam # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -740,6 +779,10 @@ def delete_backend_set(self, network_load_balancer_id, backend_set_name, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -751,6 +794,7 @@ def delete_backend_set(self, network_load_balancer_id, backend_set_name, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -835,6 +879,10 @@ def delete_listener(self, network_load_balancer_id, listener_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -846,6 +894,7 @@ def delete_listener(self, network_load_balancer_id, listener_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -925,6 +974,10 @@ def delete_network_load_balancer(self, network_load_balancer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -936,6 +989,7 @@ def delete_network_load_balancer(self, network_load_balancer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1001,7 +1055,10 @@ def get_backend(self, network_load_balancer_id, backend_set_name, backend_name, Example: `example_backend_set` :param str backend_name: (required) - The name of the backend server to retrieve. This is specified as :, or as :. + The name of the backend server to retrieve. + If the backend was created with an explicitly specified name, that name should be used here. + If the backend was created without explicitly specifying the name, but was created using ipAddress, this is specified as :. + If the backend was created without explicitly specifying the name, but was created using targetId, this is specified as :. Example: `10.0.0.3:8080` or `ocid1.privateip..oc1.<unique_ID>:8080` @@ -1024,6 +1081,10 @@ def get_backend(self, network_load_balancer_id, backend_set_name, backend_name, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.Backend` :rtype: :class:`~oci.response.Response` @@ -1035,6 +1096,7 @@ def get_backend(self, network_load_balancer_id, backend_set_name, backend_name, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_none_match" @@ -1104,7 +1166,10 @@ def get_backend_health(self, network_load_balancer_id, backend_set_name, backend Example: `example_backend_set` :param str backend_name: (required) - The name of the backend server for which to retrieve the health status, specified as : or as :. + The name of the backend server to retrieve health status for. + If the backend was created with an explicitly specified name, that name should be used here. + If the backend was created without explicitly specifying the name, but was created using ipAddress, this is specified as :. + If the backend was created without explicitly specifying the name, but was created using targetId, this is specified as :. Example: `10.0.0.3:8080` or `ocid1.privateip..oc1.<unique_ID>:8080` @@ -1120,6 +1185,10 @@ def get_backend_health(self, network_load_balancer_id, backend_set_name, backend To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.BackendHealth` :rtype: :class:`~oci.response.Response` @@ -1131,6 +1200,7 @@ def get_backend_health(self, network_load_balancer_id, backend_set_name, backend # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1216,6 +1286,10 @@ def get_backend_set(self, network_load_balancer_id, backend_set_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.BackendSet` :rtype: :class:`~oci.response.Response` @@ -1227,6 +1301,7 @@ def get_backend_set(self, network_load_balancer_id, backend_set_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_none_match" @@ -1306,6 +1381,10 @@ def get_backend_set_health(self, network_load_balancer_id, backend_set_name, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.BackendSetHealth` :rtype: :class:`~oci.response.Response` @@ -1317,6 +1396,7 @@ def get_backend_set_health(self, network_load_balancer_id, backend_set_name, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1408,6 +1488,10 @@ def get_health_checker(self, network_load_balancer_id, backend_set_name, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.HealthChecker` :rtype: :class:`~oci.response.Response` @@ -1419,6 +1503,7 @@ def get_health_checker(self, network_load_balancer_id, backend_set_name, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -1508,6 +1593,10 @@ def get_listener(self, network_load_balancer_id, listener_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.Listener` :rtype: :class:`~oci.response.Response` @@ -1519,6 +1608,7 @@ def get_listener(self, network_load_balancer_id, listener_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_none_match" @@ -1600,6 +1690,10 @@ def get_network_load_balancer(self, network_load_balancer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.NetworkLoadBalancer` :rtype: :class:`~oci.response.Response` @@ -1611,6 +1705,7 @@ def get_network_load_balancer(self, network_load_balancer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_none_match", "opc_request_id" @@ -1684,6 +1779,10 @@ def get_network_load_balancer_health(self, network_load_balancer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.NetworkLoadBalancerHealth` :rtype: :class:`~oci.response.Response` @@ -1695,6 +1794,7 @@ def get_network_load_balancer_health(self, network_load_balancer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1764,6 +1864,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -1775,6 +1879,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1863,6 +1968,12 @@ def list_backend_sets(self, network_load_balancer_id, **kwargs): Allowed values are: "ASC", "DESC" + :param str sort_by: (optional) + The field to sort by. Only one sort order can be provided. The default order for timeCreated is descending. + The default order for displayName is ascending. If no value is specified, then timeCreated is the default. + + Allowed values are: "timeCreated", "displayName" + :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. @@ -1871,6 +1982,10 @@ def list_backend_sets(self, network_load_balancer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.BackendSetCollection` :rtype: :class:`~oci.response.Response` @@ -1882,12 +1997,14 @@ def list_backend_sets(self, network_load_balancer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_none_match", "limit", "page", - "sort_order" + "sort_order", + "sort_by" ] extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs] if extra_kwargs: @@ -1911,10 +2028,18 @@ def list_backend_sets(self, network_load_balancer_id, **kwargs): "Invalid value for `sort_order`, must be one of {0}".format(sort_order_allowed_values) ) + if 'sort_by' in kwargs: + sort_by_allowed_values = ["timeCreated", "displayName"] + if kwargs['sort_by'] not in sort_by_allowed_values: + raise ValueError( + "Invalid value for `sort_by`, must be one of {0}".format(sort_by_allowed_values) + ) + query_params = { "limit": kwargs.get("limit", missing), "page": kwargs.get("page", missing), - "sortOrder": kwargs.get("sort_order", missing) + "sortOrder": kwargs.get("sort_order", missing), + "sortBy": kwargs.get("sort_by", missing) } query_params = {k: v for (k, v) in six.iteritems(query_params) if v is not missing and v is not None} @@ -1996,6 +2121,12 @@ def list_backends(self, network_load_balancer_id, backend_set_name, **kwargs): Allowed values are: "ASC", "DESC" + :param str sort_by: (optional) + The field to sort by. Only one sort order can be provided. The default order for timeCreated is descending. + The default order for displayName is ascending. If no value is specified, then timeCreated is the default. + + Allowed values are: "timeCreated", "displayName" + :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. @@ -2004,6 +2135,10 @@ def list_backends(self, network_load_balancer_id, backend_set_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.BackendCollection` :rtype: :class:`~oci.response.Response` @@ -2015,12 +2150,14 @@ def list_backends(self, network_load_balancer_id, backend_set_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_none_match", "limit", "page", - "sort_order" + "sort_order", + "sort_by" ] extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs] if extra_kwargs: @@ -2045,10 +2182,18 @@ def list_backends(self, network_load_balancer_id, backend_set_name, **kwargs): "Invalid value for `sort_order`, must be one of {0}".format(sort_order_allowed_values) ) + if 'sort_by' in kwargs: + sort_by_allowed_values = ["timeCreated", "displayName"] + if kwargs['sort_by'] not in sort_by_allowed_values: + raise ValueError( + "Invalid value for `sort_by`, must be one of {0}".format(sort_by_allowed_values) + ) + query_params = { "limit": kwargs.get("limit", missing), "page": kwargs.get("page", missing), - "sortOrder": kwargs.get("sort_order", missing) + "sortOrder": kwargs.get("sort_order", missing), + "sortBy": kwargs.get("sort_by", missing) } query_params = {k: v for (k, v) in six.iteritems(query_params) if v is not missing and v is not None} @@ -2125,6 +2270,12 @@ def list_listeners(self, network_load_balancer_id, **kwargs): Allowed values are: "ASC", "DESC" + :param str sort_by: (optional) + The field to sort by. Only one sort order can be provided. The default order for timeCreated is descending. + The default order for displayName is ascending. If no value is specified, then timeCreated is the default. + + Allowed values are: "timeCreated", "displayName" + :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. @@ -2133,6 +2284,10 @@ def list_listeners(self, network_load_balancer_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.ListenerCollection` :rtype: :class:`~oci.response.Response` @@ -2144,12 +2299,14 @@ def list_listeners(self, network_load_balancer_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_none_match", "limit", "page", - "sort_order" + "sort_order", + "sort_by" ] extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs] if extra_kwargs: @@ -2173,10 +2330,18 @@ def list_listeners(self, network_load_balancer_id, **kwargs): "Invalid value for `sort_order`, must be one of {0}".format(sort_order_allowed_values) ) + if 'sort_by' in kwargs: + sort_by_allowed_values = ["timeCreated", "displayName"] + if kwargs['sort_by'] not in sort_by_allowed_values: + raise ValueError( + "Invalid value for `sort_by`, must be one of {0}".format(sort_by_allowed_values) + ) + query_params = { "limit": kwargs.get("limit", missing), "page": kwargs.get("page", missing), - "sortOrder": kwargs.get("sort_order", missing) + "sortOrder": kwargs.get("sort_order", missing), + "sortBy": kwargs.get("sort_by", missing) } query_params = {k: v for (k, v) in six.iteritems(query_params) if v is not missing and v is not None} @@ -2260,6 +2425,10 @@ def list_network_load_balancer_healths(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.NetworkLoadBalancerHealthCollection` :rtype: :class:`~oci.response.Response` @@ -2271,6 +2440,7 @@ def list_network_load_balancer_healths(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "sort_order", "sort_by", @@ -2391,6 +2561,10 @@ def list_network_load_balancers(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.NetworkLoadBalancerCollection` :rtype: :class:`~oci.response.Response` @@ -2402,6 +2576,7 @@ def list_network_load_balancers(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "display_name", @@ -2506,6 +2681,12 @@ def list_network_load_balancers_policies(self, **kwargs): Allowed values are: "ASC", "DESC" + :param str sort_by: (optional) + The field to sort by. Only one sort order can be provided. The default order for timeCreated is descending. + The default order for displayName is ascending. If no value is specified, then timeCreated is the default. + + Allowed values are: "timeCreated", "displayName" + :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. @@ -2514,6 +2695,10 @@ def list_network_load_balancers_policies(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.NetworkLoadBalancersPolicyCollection` :rtype: :class:`~oci.response.Response` @@ -2525,11 +2710,13 @@ def list_network_load_balancers_policies(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", "page", - "sort_order" + "sort_order", + "sort_by" ] extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs] if extra_kwargs: @@ -2543,10 +2730,18 @@ def list_network_load_balancers_policies(self, **kwargs): "Invalid value for `sort_order`, must be one of {0}".format(sort_order_allowed_values) ) + if 'sort_by' in kwargs: + sort_by_allowed_values = ["timeCreated", "displayName"] + if kwargs['sort_by'] not in sort_by_allowed_values: + raise ValueError( + "Invalid value for `sort_by`, must be one of {0}".format(sort_by_allowed_values) + ) + query_params = { "limit": kwargs.get("limit", missing), "page": kwargs.get("page", missing), - "sortOrder": kwargs.get("sort_order", missing) + "sortOrder": kwargs.get("sort_order", missing), + "sortBy": kwargs.get("sort_by", missing) } query_params = {k: v for (k, v) in six.iteritems(query_params) if v is not missing and v is not None} @@ -2583,6 +2778,7 @@ def list_network_load_balancers_policies(self, **kwargs): def list_network_load_balancers_protocols(self, **kwargs): """ + This API has been deprecated so it won't return the updated list of supported protocls. Lists all supported traffic protocols. @@ -2608,6 +2804,12 @@ def list_network_load_balancers_protocols(self, **kwargs): Allowed values are: "ASC", "DESC" + :param str sort_by: (optional) + The field to sort by. Only one sort order can be provided. The default order for timeCreated is descending. + The default order for displayName is ascending. If no value is specified, then timeCreated is the default. + + Allowed values are: "timeCreated", "displayName" + :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. @@ -2616,6 +2818,10 @@ def list_network_load_balancers_protocols(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.NetworkLoadBalancersProtocolCollection` :rtype: :class:`~oci.response.Response` @@ -2627,11 +2833,13 @@ def list_network_load_balancers_protocols(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", "page", - "sort_order" + "sort_order", + "sort_by" ] extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs] if extra_kwargs: @@ -2645,10 +2853,18 @@ def list_network_load_balancers_protocols(self, **kwargs): "Invalid value for `sort_order`, must be one of {0}".format(sort_order_allowed_values) ) + if 'sort_by' in kwargs: + sort_by_allowed_values = ["timeCreated", "displayName"] + if kwargs['sort_by'] not in sort_by_allowed_values: + raise ValueError( + "Invalid value for `sort_by`, must be one of {0}".format(sort_by_allowed_values) + ) + query_params = { "limit": kwargs.get("limit", missing), "page": kwargs.get("page", missing), - "sortOrder": kwargs.get("sort_order", missing) + "sortOrder": kwargs.get("sort_order", missing), + "sortBy": kwargs.get("sort_by", missing) } query_params = {k: v for (k, v) in six.iteritems(query_params) if v is not missing and v is not None} @@ -2721,6 +2937,10 @@ def list_work_request_errors(self, work_request_id, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -2732,6 +2952,7 @@ def list_work_request_errors(self, work_request_id, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -2830,6 +3051,10 @@ def list_work_request_logs(self, work_request_id, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -2841,6 +3066,7 @@ def list_work_request_logs(self, work_request_id, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -2936,6 +3162,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.network_load_balancer.models.WorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -2947,6 +3177,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -3014,7 +3245,10 @@ def update_backend(self, network_load_balancer_id, update_backend_details, backe Example: `example_backend_set` :param str backend_name: (required) - The name of the backend server to update. This is specified as :, or as :. + The name of the backend server to update. + If the backend was created with an explicitly specified name, that name should be used here. + If the backend was created without explicitly specifying the name, but was created using ipAddress, this is specified as :. + If the backend was created without explicitly specifying the name, but was created using targetId, this is specified as :. Example: `10.0.0.3:8080` or `ocid1.privateip..oc1.<unique_ID>:8080` @@ -3044,6 +3278,10 @@ def update_backend(self, network_load_balancer_id, update_backend_details, backe To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3055,6 +3293,7 @@ def update_backend(self, network_load_balancer_id, update_backend_details, backe # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -3155,6 +3394,10 @@ def update_backend_set(self, network_load_balancer_id, update_backend_set_detail To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3166,6 +3409,7 @@ def update_backend_set(self, network_load_balancer_id, update_backend_set_detail # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -3265,6 +3509,10 @@ def update_health_checker(self, network_load_balancer_id, update_health_checker_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3276,6 +3524,7 @@ def update_health_checker(self, network_load_balancer_id, update_health_checker_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -3375,6 +3624,10 @@ def update_listener(self, network_load_balancer_id, update_listener_details, lis To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3386,6 +3639,7 @@ def update_listener(self, network_load_balancer_id, update_listener_details, lis # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -3443,7 +3697,7 @@ def update_listener(self, network_load_balancer_id, update_listener_details, lis def update_network_load_balancer(self, network_load_balancer_id, update_network_load_balancer_details, **kwargs): """ - Updates the network load balancer. + Updates the network load balancer :param str network_load_balancer_id: (required) @@ -3473,6 +3727,10 @@ def update_network_load_balancer(self, network_load_balancer_id, update_network_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3484,6 +3742,7 @@ def update_network_load_balancer(self, network_load_balancer_id, update_network_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -3574,6 +3833,10 @@ def update_network_security_groups(self, network_load_balancer_id, update_networ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -3585,6 +3848,7 @@ def update_network_security_groups(self, network_load_balancer_id, update_networ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", diff --git a/src/oci/network_load_balancer/network_load_balancer_client_composite_operations.py b/src/oci/network_load_balancer/network_load_balancer_client_composite_operations.py index 6cc18ef9ed..1598e980ed 100644 --- a/src/oci/network_load_balancer/network_load_balancer_client_composite_operations.py +++ b/src/oci/network_load_balancer/network_load_balancer_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 @@ -254,7 +254,10 @@ def delete_backend_and_wait_for_state(self, network_load_balancer_id, backend_se Example: `example_backend_set` :param str backend_name: (required) - The name of the backend server to remove. This is specified as :, or as :. + The name of the backend server to remove. + If the backend was created with an explicitly specified name, that name should be used here. + If the backend was created without explicitly specifying the name, but was created using ipAddress, this is specified as :. + If the backend was created without explicitly specifying the name, but was created using targetId, this is specified as :. Example: `10.0.0.3:8080` or `ocid1.privateip..oc1.<unique_ID>:8080` @@ -469,7 +472,10 @@ def update_backend_and_wait_for_state(self, network_load_balancer_id, update_bac Example: `example_backend_set` :param str backend_name: (required) - The name of the backend server to update. This is specified as :, or as :. + The name of the backend server to update. + If the backend was created with an explicitly specified name, that name should be used here. + If the backend was created without explicitly specifying the name, but was created using ipAddress, this is specified as :. + If the backend was created without explicitly specifying the name, but was created using targetId, this is specified as :. Example: `10.0.0.3:8080` or `ocid1.privateip..oc1.<unique_ID>:8080` diff --git a/src/oci/nosql/__init__.py b/src/oci/nosql/__init__.py index 2515e3e834..8321f45a7c 100644 --- a/src/oci/nosql/__init__.py +++ b/src/oci/nosql/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/nosql/models/__init__.py b/src/oci/nosql/models/__init__.py index 9867be2f5a..fb975f5ec3 100644 --- a/src/oci/nosql/models/__init__.py +++ b/src/oci/nosql/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/nosql/models/change_table_compartment_details.py b/src/oci/nosql/models/change_table_compartment_details.py index 55e91272df..944d75a132 100644 --- a/src/oci/nosql/models/change_table_compartment_details.py +++ b/src/oci/nosql/models/change_table_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/column.py b/src/oci/nosql/models/column.py index 4836bc35c7..7f5b352859 100644 --- a/src/oci/nosql/models/column.py +++ b/src/oci/nosql/models/column.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/create_index_details.py b/src/oci/nosql/models/create_index_details.py index 826c6a62ea..17be24ae63 100644 --- a/src/oci/nosql/models/create_index_details.py +++ b/src/oci/nosql/models/create_index_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/create_table_details.py b/src/oci/nosql/models/create_table_details.py index ed52a2b495..42c091df30 100644 --- a/src/oci/nosql/models/create_table_details.py +++ b/src/oci/nosql/models/create_table_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/delete_row_result.py b/src/oci/nosql/models/delete_row_result.py index a87daef394..4b0fd8bdd7 100644 --- a/src/oci/nosql/models/delete_row_result.py +++ b/src/oci/nosql/models/delete_row_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/index.py b/src/oci/nosql/models/index.py index b47d9564c2..0e2d3a9172 100644 --- a/src/oci/nosql/models/index.py +++ b/src/oci/nosql/models/index.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/index_collection.py b/src/oci/nosql/models/index_collection.py index 92c9c06fc7..728ca5ab59 100644 --- a/src/oci/nosql/models/index_collection.py +++ b/src/oci/nosql/models/index_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/index_key.py b/src/oci/nosql/models/index_key.py index 826b7cf431..fbd52108c1 100644 --- a/src/oci/nosql/models/index_key.py +++ b/src/oci/nosql/models/index_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/index_summary.py b/src/oci/nosql/models/index_summary.py index bb01a085ee..32c16d390b 100644 --- a/src/oci/nosql/models/index_summary.py +++ b/src/oci/nosql/models/index_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/prepared_statement.py b/src/oci/nosql/models/prepared_statement.py index 10e41ef62a..496e1bb63f 100644 --- a/src/oci/nosql/models/prepared_statement.py +++ b/src/oci/nosql/models/prepared_statement.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/query_details.py b/src/oci/nosql/models/query_details.py index 69de07c500..a7e87ef0cb 100644 --- a/src/oci/nosql/models/query_details.py +++ b/src/oci/nosql/models/query_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/query_result_collection.py b/src/oci/nosql/models/query_result_collection.py index 19f22101ce..01963a3c64 100644 --- a/src/oci/nosql/models/query_result_collection.py +++ b/src/oci/nosql/models/query_result_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/request_usage.py b/src/oci/nosql/models/request_usage.py index 7756b0b643..1d154e62d5 100644 --- a/src/oci/nosql/models/request_usage.py +++ b/src/oci/nosql/models/request_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/row.py b/src/oci/nosql/models/row.py index 7202c6578c..42797f7b70 100644 --- a/src/oci/nosql/models/row.py +++ b/src/oci/nosql/models/row.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/schema.py b/src/oci/nosql/models/schema.py index 4014ac9af4..dcaae701ba 100644 --- a/src/oci/nosql/models/schema.py +++ b/src/oci/nosql/models/schema.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/statement_summary.py b/src/oci/nosql/models/statement_summary.py index 201ab09ae4..32832007e8 100644 --- a/src/oci/nosql/models/statement_summary.py +++ b/src/oci/nosql/models/statement_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/table.py b/src/oci/nosql/models/table.py index 4c3ff8d4b0..83176efab1 100644 --- a/src/oci/nosql/models/table.py +++ b/src/oci/nosql/models/table.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/table_collection.py b/src/oci/nosql/models/table_collection.py index 0c75f320ae..217944d405 100644 --- a/src/oci/nosql/models/table_collection.py +++ b/src/oci/nosql/models/table_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/table_limits.py b/src/oci/nosql/models/table_limits.py index c5edf20514..2ccf5f2b6a 100644 --- a/src/oci/nosql/models/table_limits.py +++ b/src/oci/nosql/models/table_limits.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/table_summary.py b/src/oci/nosql/models/table_summary.py index 9c63a3ca11..b2c37d2968 100644 --- a/src/oci/nosql/models/table_summary.py +++ b/src/oci/nosql/models/table_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/table_usage_collection.py b/src/oci/nosql/models/table_usage_collection.py index 67ef1a30e1..10a232e8e9 100644 --- a/src/oci/nosql/models/table_usage_collection.py +++ b/src/oci/nosql/models/table_usage_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/table_usage_summary.py b/src/oci/nosql/models/table_usage_summary.py index 2fef38142e..5c8736b1f7 100644 --- a/src/oci/nosql/models/table_usage_summary.py +++ b/src/oci/nosql/models/table_usage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/update_row_details.py b/src/oci/nosql/models/update_row_details.py index 5dc8222bf3..ca469db84c 100644 --- a/src/oci/nosql/models/update_row_details.py +++ b/src/oci/nosql/models/update_row_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/update_row_result.py b/src/oci/nosql/models/update_row_result.py index 902438f1a7..1740d3eb74 100644 --- a/src/oci/nosql/models/update_row_result.py +++ b/src/oci/nosql/models/update_row_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/update_table_details.py b/src/oci/nosql/models/update_table_details.py index 2959ee1d41..fccfedf589 100644 --- a/src/oci/nosql/models/update_table_details.py +++ b/src/oci/nosql/models/update_table_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/work_request.py b/src/oci/nosql/models/work_request.py index 51e2774653..f35e1767f7 100644 --- a/src/oci/nosql/models/work_request.py +++ b/src/oci/nosql/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/work_request_collection.py b/src/oci/nosql/models/work_request_collection.py index da1d33d146..7973ba728d 100644 --- a/src/oci/nosql/models/work_request_collection.py +++ b/src/oci/nosql/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/work_request_error.py b/src/oci/nosql/models/work_request_error.py index a7d208d49d..ccee8e624a 100644 --- a/src/oci/nosql/models/work_request_error.py +++ b/src/oci/nosql/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/work_request_error_collection.py b/src/oci/nosql/models/work_request_error_collection.py index bde2e2dfb1..1f64ac7b0c 100644 --- a/src/oci/nosql/models/work_request_error_collection.py +++ b/src/oci/nosql/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/work_request_log_entry.py b/src/oci/nosql/models/work_request_log_entry.py index cd87d63022..b60fd9e2ea 100644 --- a/src/oci/nosql/models/work_request_log_entry.py +++ b/src/oci/nosql/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/work_request_log_entry_collection.py b/src/oci/nosql/models/work_request_log_entry_collection.py index b2a3d90d6b..0fc4342172 100644 --- a/src/oci/nosql/models/work_request_log_entry_collection.py +++ b/src/oci/nosql/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/work_request_resource.py b/src/oci/nosql/models/work_request_resource.py index 25e86a0f60..183c5030cd 100644 --- a/src/oci/nosql/models/work_request_resource.py +++ b/src/oci/nosql/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/models/work_request_summary.py b/src/oci/nosql/models/work_request_summary.py index a9f82028f4..72f1ec6e1e 100644 --- a/src/oci/nosql/models/work_request_summary.py +++ b/src/oci/nosql/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/nosql/nosql_client.py b/src/oci/nosql/nosql_client.py index 1ac761c473..6252352e15 100644 --- a/src/oci/nosql/nosql_client.py +++ b/src/oci/nosql/nosql_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -67,6 +67,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -97,6 +101,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("nosql", config, signer, nosql_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -139,6 +145,10 @@ def change_table_compartment(self, table_name_or_id, change_table_compartment_de To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -150,6 +160,7 @@ def change_table_compartment(self, table_name_or_id, change_table_compartment_de # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -235,6 +246,10 @@ def create_index(self, table_name_or_id, create_index_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -246,6 +261,7 @@ def create_index(self, table_name_or_id, create_index_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -326,6 +342,10 @@ def create_table(self, create_table_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -337,6 +357,7 @@ def create_table(self, create_table_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -414,6 +435,10 @@ def delete_index(self, table_name_or_id, index_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -425,6 +450,7 @@ def delete_index(self, table_name_or_id, index_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "is_if_exists", @@ -527,6 +553,10 @@ def delete_row(self, table_name_or_id, key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.nosql.models.DeleteRowResult` :rtype: :class:`~oci.response.Response` @@ -538,6 +568,7 @@ def delete_row(self, table_name_or_id, key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "is_get_return_row", @@ -636,6 +667,10 @@ def delete_table(self, table_name_or_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -647,6 +682,7 @@ def delete_table(self, table_name_or_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "is_if_exists", @@ -732,6 +768,10 @@ def delete_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -743,6 +783,7 @@ def delete_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -819,6 +860,10 @@ def get_index(self, table_name_or_id, index_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.nosql.models.Index` :rtype: :class:`~oci.response.Response` @@ -830,6 +875,7 @@ def get_index(self, table_name_or_id, index_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "opc_request_id" @@ -924,6 +970,10 @@ def get_row(self, table_name_or_id, key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.nosql.models.Row` :rtype: :class:`~oci.response.Response` @@ -935,6 +985,7 @@ def get_row(self, table_name_or_id, key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "consistency", @@ -1028,6 +1079,10 @@ def get_table(self, table_name_or_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.nosql.models.Table` :rtype: :class:`~oci.response.Response` @@ -1039,6 +1094,7 @@ def get_table(self, table_name_or_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "opc_request_id" @@ -1115,6 +1171,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.nosql.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -1126,6 +1186,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1228,6 +1289,10 @@ def list_indexes(self, table_name_or_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.nosql.models.IndexCollection` :rtype: :class:`~oci.response.Response` @@ -1239,6 +1304,7 @@ def list_indexes(self, table_name_or_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "name", @@ -1369,6 +1435,10 @@ def list_table_usage(self, table_name_or_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.nosql.models.TableUsageCollection` :rtype: :class:`~oci.response.Response` @@ -1380,6 +1450,7 @@ def list_table_usage(self, table_name_or_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "opc_request_id", @@ -1493,6 +1564,10 @@ def list_tables(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.nosql.models.TableCollection` :rtype: :class:`~oci.response.Response` @@ -1504,6 +1579,7 @@ def list_tables(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "limit", @@ -1608,6 +1684,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.nosql.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -1619,6 +1699,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1705,6 +1786,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.nosql.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -1716,6 +1801,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1802,6 +1888,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.nosql.models.WorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -1813,6 +1903,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1883,6 +1974,10 @@ def prepare_statement(self, compartment_id, statement, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.nosql.models.PreparedStatement` :rtype: :class:`~oci.response.Response` @@ -1894,6 +1989,7 @@ def prepare_statement(self, compartment_id, statement, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1966,6 +2062,10 @@ def query(self, query_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.nosql.models.QueryResultCollection` :rtype: :class:`~oci.response.Response` @@ -1977,6 +2077,7 @@ def query(self, query_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -2048,6 +2149,10 @@ def summarize_statement(self, compartment_id, statement, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.nosql.models.StatementSummary` :rtype: :class:`~oci.response.Response` @@ -2059,6 +2164,7 @@ def summarize_statement(self, compartment_id, statement, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2133,6 +2239,10 @@ def update_row(self, table_name_or_id, update_row_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.nosql.models.UpdateRowResult` :rtype: :class:`~oci.response.Response` @@ -2144,6 +2254,7 @@ def update_row(self, table_name_or_id, update_row_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2227,6 +2338,10 @@ def update_table(self, table_name_or_id, update_table_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2238,6 +2353,7 @@ def update_table(self, table_name_or_id, update_table_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/nosql/nosql_client_composite_operations.py b/src/oci/nosql/nosql_client_composite_operations.py index 3b2ecce8b1..9e02d24d8e 100644 --- a/src/oci/nosql/nosql_client_composite_operations.py +++ b/src/oci/nosql/nosql_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/object_storage/__init__.py b/src/oci/object_storage/__init__.py index 534ccd2322..f4eb8ae375 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/object_storage/models/__init__.py b/src/oci/object_storage/models/__init__.py index 58e732f61c..e2cb587c50 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/object_storage/models/bucket.py b/src/oci/object_storage/models/bucket.py index f7eef6d6c3..87d0675318 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/bucket_summary.py b/src/oci/object_storage/models/bucket_summary.py index 6220c119cb..9eee3d4fae 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 bf19a66b76..0f960729e8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 1fbb15e086..aad4319f70 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/copy_object_details.py b/src/oci/object_storage/models/copy_object_details.py index 656bb8af52..0ed25eaf72 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/create_bucket_details.py b/src/oci/object_storage/models/create_bucket_details.py index abd9027775..97d4d94bf5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 3c6d0d39a4..23f4f786ca 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 f8fff39541..9aec216d36 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/create_replication_policy_details.py b/src/oci/object_storage/models/create_replication_policy_details.py index d0701bf3f7..f91206f2a0 100644 --- a/src/oci/object_storage/models/create_replication_policy_details.py +++ b/src/oci/object_storage/models/create_replication_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/create_retention_rule_details.py b/src/oci/object_storage/models/create_retention_rule_details.py index 347c37b581..8f328d1f9f 100644 --- a/src/oci/object_storage/models/create_retention_rule_details.py +++ b/src/oci/object_storage/models/create_retention_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/duration.py b/src/oci/object_storage/models/duration.py index 6decceecf0..950e8b1934 100644 --- a/src/oci/object_storage/models/duration.py +++ b/src/oci/object_storage/models/duration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/list_objects.py b/src/oci/object_storage/models/list_objects.py index d4b46b9e52..c97604545f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/multipart_upload.py b/src/oci/object_storage/models/multipart_upload.py index fefa9b31a2..6d9a501b8e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 3924715fca..9bbcf9a06b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/namespace_metadata.py b/src/oci/object_storage/models/namespace_metadata.py index 5cf7a878fa..95367a2eab 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/object_lifecycle_policy.py b/src/oci/object_storage/models/object_lifecycle_policy.py index 572cf232cc..61b2394b99 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/object_lifecycle_rule.py b/src/oci/object_storage/models/object_lifecycle_rule.py index fd048991f4..b8cbc14292 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/object_name_filter.py b/src/oci/object_storage/models/object_name_filter.py index 97324dfd57..ffa59d625a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/object_summary.py b/src/oci/object_storage/models/object_summary.py index 7db9babffc..ed0f9ac0c6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/object_version_collection.py b/src/oci/object_storage/models/object_version_collection.py index 6c6d80bb26..75d5dfafd1 100644 --- a/src/oci/object_storage/models/object_version_collection.py +++ b/src/oci/object_storage/models/object_version_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/object_version_summary.py b/src/oci/object_storage/models/object_version_summary.py index e9cfa09659..add209b4a1 100644 --- a/src/oci/object_storage/models/object_version_summary.py +++ b/src/oci/object_storage/models/object_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/pattern_details.py b/src/oci/object_storage/models/pattern_details.py index 371929d0c1..b17ea48e0c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/preauthenticated_request.py b/src/oci/object_storage/models/preauthenticated_request.py index 2ebc5d909e..ec791d45d3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/preauthenticated_request_summary.py b/src/oci/object_storage/models/preauthenticated_request_summary.py index 91ea03cd3f..95fcafe826 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 230f857094..193003cf26 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/reencrypt_object_details.py b/src/oci/object_storage/models/reencrypt_object_details.py index aaa9780975..6a1a4faac9 100644 --- a/src/oci/object_storage/models/reencrypt_object_details.py +++ b/src/oci/object_storage/models/reencrypt_object_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/rename_object_details.py b/src/oci/object_storage/models/rename_object_details.py index 193cba189b..2b193bf828 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/replication_policy.py b/src/oci/object_storage/models/replication_policy.py index a7383f5bf8..f75b244d82 100644 --- a/src/oci/object_storage/models/replication_policy.py +++ b/src/oci/object_storage/models/replication_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/replication_policy_summary.py b/src/oci/object_storage/models/replication_policy_summary.py index d867328b53..c3d2e67439 100644 --- a/src/oci/object_storage/models/replication_policy_summary.py +++ b/src/oci/object_storage/models/replication_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/replication_source.py b/src/oci/object_storage/models/replication_source.py index 46a74c3a15..073ed7c21b 100644 --- a/src/oci/object_storage/models/replication_source.py +++ b/src/oci/object_storage/models/replication_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/restore_objects_details.py b/src/oci/object_storage/models/restore_objects_details.py index 7b165bc26c..884971df14 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/retention_rule.py b/src/oci/object_storage/models/retention_rule.py index 56837f2ccd..e00453b30c 100644 --- a/src/oci/object_storage/models/retention_rule.py +++ b/src/oci/object_storage/models/retention_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/retention_rule_collection.py b/src/oci/object_storage/models/retention_rule_collection.py index 46edece1b7..b30bb2ff75 100644 --- a/src/oci/object_storage/models/retention_rule_collection.py +++ b/src/oci/object_storage/models/retention_rule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/retention_rule_details.py b/src/oci/object_storage/models/retention_rule_details.py index cc557843ae..1a167a3013 100644 --- a/src/oci/object_storage/models/retention_rule_details.py +++ b/src/oci/object_storage/models/retention_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/retention_rule_summary.py b/src/oci/object_storage/models/retention_rule_summary.py index 0f526f08ec..ca33bd6fcc 100644 --- a/src/oci/object_storage/models/retention_rule_summary.py +++ b/src/oci/object_storage/models/retention_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/sse_customer_key_details.py b/src/oci/object_storage/models/sse_customer_key_details.py index 8a0ae78547..b8b7a9ed42 100644 --- a/src/oci/object_storage/models/sse_customer_key_details.py +++ b/src/oci/object_storage/models/sse_customer_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/update_bucket_details.py b/src/oci/object_storage/models/update_bucket_details.py index 39b3e6e2a9..60fb0d873f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 23cb6a3752..e9f3f3c1ff 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/update_object_storage_tier_details.py b/src/oci/object_storage/models/update_object_storage_tier_details.py index 471aa57973..dcf7c22b2f 100644 --- a/src/oci/object_storage/models/update_object_storage_tier_details.py +++ b/src/oci/object_storage/models/update_object_storage_tier_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/update_retention_rule_details.py b/src/oci/object_storage/models/update_retention_rule_details.py index 8177a8cf8d..10777f660f 100644 --- a/src/oci/object_storage/models/update_retention_rule_details.py +++ b/src/oci/object_storage/models/update_retention_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/work_request.py b/src/oci/object_storage/models/work_request.py index 999df76b43..020bd2cde2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/work_request_error.py b/src/oci/object_storage/models/work_request_error.py index 3071e88c8f..31125060b3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 6e6809a9bd..aa800f8841 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/work_request_resource.py b/src/oci/object_storage/models/work_request_resource.py index 23d34ccb76..f7563f34ae 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/models/work_request_summary.py b/src/oci/object_storage/models/work_request_summary.py index 116fa415dc..e96c855d07 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/object_storage_client.py b/src/oci/object_storage/object_storage_client.py index da86859379..dcc373fb46 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -67,6 +67,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -97,6 +101,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("object_storage", config, signer, object_storage_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -131,6 +137,10 @@ def abort_multipart_upload(self, namespace_name, bucket_name, object_name, uploa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -142,6 +152,7 @@ def abort_multipart_upload(self, namespace_name, bucket_name, object_name, uploa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -217,6 +228,10 @@ def cancel_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -228,6 +243,7 @@ def cancel_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -317,6 +333,10 @@ def commit_multipart_upload(self, namespace_name, bucket_name, object_name, uplo To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -328,6 +348,7 @@ def commit_multipart_upload(self, namespace_name, bucket_name, object_name, uplo # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_none_match", @@ -464,6 +485,10 @@ def copy_object(self, namespace_name, bucket_name, copy_object_details, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -475,6 +500,7 @@ def copy_object(self, namespace_name, bucket_name, copy_object_details, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id", "opc_sse_customer_algorithm", @@ -562,6 +588,10 @@ def create_bucket(self, namespace_name, create_bucket_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.Bucket` :rtype: :class:`~oci.response.Response` @@ -573,6 +603,7 @@ def create_bucket(self, namespace_name, create_bucket_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -685,6 +716,10 @@ def create_multipart_upload(self, namespace_name, bucket_name, create_multipart_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.MultipartUpload` :rtype: :class:`~oci.response.Response` @@ -696,6 +731,7 @@ def create_multipart_upload(self, namespace_name, bucket_name, create_multipart_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_none_match", @@ -786,6 +822,10 @@ def create_preauthenticated_request(self, namespace_name, bucket_name, create_pr To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.PreauthenticatedRequest` :rtype: :class:`~oci.response.Response` @@ -797,6 +837,7 @@ def create_preauthenticated_request(self, namespace_name, bucket_name, create_pr # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -875,6 +916,10 @@ def create_replication_policy(self, namespace_name, bucket_name, create_replicat To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.ReplicationPolicy` :rtype: :class:`~oci.response.Response` @@ -886,6 +931,7 @@ def create_replication_policy(self, namespace_name, bucket_name, create_replicat # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -965,6 +1011,10 @@ def create_retention_rule(self, namespace_name, bucket_name, create_retention_ru To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.RetentionRule` :rtype: :class:`~oci.response.Response` @@ -976,6 +1026,7 @@ def create_retention_rule(self, namespace_name, bucket_name, create_retention_ru # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -1059,6 +1110,10 @@ def delete_bucket(self, namespace_name, bucket_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1070,6 +1125,7 @@ def delete_bucket(self, namespace_name, bucket_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_client_request_id" @@ -1155,6 +1211,10 @@ def delete_object(self, namespace_name, bucket_name, object_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1166,6 +1226,7 @@ def delete_object(self, namespace_name, bucket_name, object_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_client_request_id", @@ -1253,6 +1314,10 @@ def delete_object_lifecycle_policy(self, namespace_name, bucket_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1264,6 +1329,7 @@ def delete_object_lifecycle_policy(self, namespace_name, bucket_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id", "if_match" @@ -1341,6 +1407,10 @@ def delete_preauthenticated_request(self, namespace_name, bucket_name, par_id, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1352,6 +1422,7 @@ def delete_preauthenticated_request(self, namespace_name, bucket_name, par_id, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -1427,6 +1498,10 @@ def delete_replication_policy(self, namespace_name, bucket_name, replication_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1438,6 +1513,7 @@ def delete_replication_policy(self, namespace_name, bucket_name, replication_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -1518,6 +1594,10 @@ def delete_retention_rule(self, namespace_name, bucket_name, retention_rule_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1529,6 +1609,7 @@ def delete_retention_rule(self, namespace_name, bucket_name, retention_rule_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_client_request_id" @@ -1621,6 +1702,10 @@ def get_bucket(self, namespace_name, bucket_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.Bucket` :rtype: :class:`~oci.response.Response` @@ -1632,6 +1717,7 @@ def get_bucket(self, namespace_name, bucket_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_none_match", @@ -1731,6 +1817,10 @@ def get_namespace(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type str :rtype: :class:`~oci.response.Response` @@ -1742,6 +1832,7 @@ def get_namespace(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id", "compartment_id" @@ -1814,6 +1905,10 @@ def get_namespace_metadata(self, namespace_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.NamespaceMetadata` :rtype: :class:`~oci.response.Response` @@ -1825,6 +1920,7 @@ def get_namespace_metadata(self, namespace_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -1958,6 +2054,10 @@ def get_object(self, namespace_name, bucket_name, object_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -1969,6 +2069,7 @@ def get_object(self, namespace_name, bucket_name, object_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "version_id", "if_match", @@ -2075,6 +2176,10 @@ def get_object_lifecycle_policy(self, namespace_name, bucket_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.ObjectLifecyclePolicy` :rtype: :class:`~oci.response.Response` @@ -2086,6 +2191,7 @@ def get_object_lifecycle_policy(self, namespace_name, bucket_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -2163,6 +2269,10 @@ def get_preauthenticated_request(self, namespace_name, bucket_name, par_id, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.PreauthenticatedRequestSummary` :rtype: :class:`~oci.response.Response` @@ -2174,6 +2284,7 @@ def get_preauthenticated_request(self, namespace_name, bucket_name, par_id, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -2251,6 +2362,10 @@ def get_replication_policy(self, namespace_name, bucket_name, replication_id, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.ReplicationPolicy` :rtype: :class:`~oci.response.Response` @@ -2262,6 +2377,7 @@ def get_replication_policy(self, namespace_name, bucket_name, replication_id, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -2339,6 +2455,10 @@ def get_retention_rule(self, namespace_name, bucket_name, retention_rule_id, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.RetentionRule` :rtype: :class:`~oci.response.Response` @@ -2350,6 +2470,7 @@ def get_retention_rule(self, namespace_name, bucket_name, retention_rule_id, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -2420,6 +2541,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -2431,6 +2556,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -2513,6 +2639,10 @@ def head_bucket(self, namespace_name, bucket_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2524,6 +2654,7 @@ def head_bucket(self, namespace_name, bucket_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "if_none_match", @@ -2636,6 +2767,10 @@ def head_object(self, namespace_name, bucket_name, object_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2647,6 +2782,7 @@ def head_object(self, namespace_name, bucket_name, object_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "version_id", "if_match", @@ -2766,6 +2902,10 @@ def list_buckets(self, namespace_name, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.object_storage.models.BucketSummary` :rtype: :class:`~oci.response.Response` @@ -2777,6 +2917,7 @@ def list_buckets(self, namespace_name, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -2890,6 +3031,10 @@ def list_multipart_upload_parts(self, namespace_name, bucket_name, object_name, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.object_storage.models.MultipartUploadPartSummary` :rtype: :class:`~oci.response.Response` @@ -2901,6 +3046,7 @@ def list_multipart_upload_parts(self, namespace_name, bucket_name, object_name, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -2999,6 +3145,10 @@ def list_multipart_uploads(self, namespace_name, bucket_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.object_storage.models.MultipartUpload` :rtype: :class:`~oci.response.Response` @@ -3010,6 +3160,7 @@ def list_multipart_uploads(self, namespace_name, bucket_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -3143,6 +3294,10 @@ def list_object_versions(self, namespace_name, bucket_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.ObjectVersionCollection` :rtype: :class:`~oci.response.Response` @@ -3154,6 +3309,7 @@ def list_object_versions(self, namespace_name, bucket_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "prefix", "start", @@ -3295,6 +3451,10 @@ def list_objects(self, namespace_name, bucket_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.ListObjects` :rtype: :class:`~oci.response.Response` @@ -3306,6 +3466,7 @@ def list_objects(self, namespace_name, bucket_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "prefix", "start", @@ -3415,6 +3576,10 @@ def list_preauthenticated_requests(self, namespace_name, bucket_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.object_storage.models.PreauthenticatedRequestSummary` :rtype: :class:`~oci.response.Response` @@ -3426,6 +3591,7 @@ def list_preauthenticated_requests(self, namespace_name, bucket_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "object_name_prefix", "limit", @@ -3524,6 +3690,10 @@ def list_replication_policies(self, namespace_name, bucket_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.object_storage.models.ReplicationPolicySummary` :rtype: :class:`~oci.response.Response` @@ -3535,6 +3705,7 @@ def list_replication_policies(self, namespace_name, bucket_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id", "page", @@ -3631,6 +3802,10 @@ def list_replication_sources(self, namespace_name, bucket_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.object_storage.models.ReplicationSource` :rtype: :class:`~oci.response.Response` @@ -3642,6 +3817,7 @@ def list_replication_sources(self, namespace_name, bucket_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id", "page", @@ -3729,6 +3905,10 @@ def list_retention_rules(self, namespace_name, bucket_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.RetentionRuleCollection` :rtype: :class:`~oci.response.Response` @@ -3740,6 +3920,7 @@ def list_retention_rules(self, namespace_name, bucket_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page" ] @@ -3827,6 +4008,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.object_storage.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -3838,6 +4023,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -3929,6 +4115,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.object_storage.models.WorkRequestLogEntry` :rtype: :class:`~oci.response.Response` @@ -3940,6 +4130,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -4031,6 +4222,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.object_storage.models.WorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -4042,6 +4237,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id", "page", @@ -4116,6 +4312,10 @@ def make_bucket_writable(self, namespace_name, bucket_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4127,6 +4327,7 @@ def make_bucket_writable(self, namespace_name, bucket_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -4305,6 +4506,10 @@ def put_object(self, namespace_name, bucket_name, object_name, put_object_body, The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings :param int buffer_limit: (optional) A buffer limit for the stream to be buffered. buffer_limit is used to set the buffer size capacity. Streams will be read until the size of the buffer reaches the buffer_limit. If the stream size is greater than the buffer_limit, a BufferError exception will be thrown. @@ -4324,6 +4529,7 @@ def put_object(self, namespace_name, bucket_name, object_name, put_object_body, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "buffer_limit", "content_length", @@ -4426,6 +4632,7 @@ def put_object(self, namespace_name, bucket_name, object_name, put_object_body, path_params=path_params, header_params=header_params, body=put_object_body, + allow_control_chars=kwargs.get('allow_control_chars'), enforce_content_headers=False) else: return self.base_client.call_api( @@ -4434,6 +4641,7 @@ def put_object(self, namespace_name, bucket_name, object_name, put_object_body, path_params=path_params, header_params=header_params, body=put_object_body, + allow_control_chars=kwargs.get('allow_control_chars'), enforce_content_headers=False) def put_object_lifecycle_policy(self, namespace_name, bucket_name, put_object_lifecycle_policy_details, **kwargs): @@ -4471,6 +4679,10 @@ def put_object_lifecycle_policy(self, namespace_name, bucket_name, put_object_li To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.ObjectLifecyclePolicy` :rtype: :class:`~oci.response.Response` @@ -4482,6 +4694,7 @@ def put_object_lifecycle_policy(self, namespace_name, bucket_name, put_object_li # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id", "if_match", @@ -4575,6 +4788,10 @@ def reencrypt_bucket(self, namespace_name, bucket_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4586,6 +4803,7 @@ def reencrypt_bucket(self, namespace_name, bucket_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -4675,6 +4893,10 @@ def reencrypt_object(self, namespace_name, bucket_name, object_name, reencrypt_o To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4686,6 +4908,7 @@ def reencrypt_object(self, namespace_name, bucket_name, object_name, reencrypt_o # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "version_id", "opc_client_request_id" @@ -4776,6 +4999,10 @@ def rename_object(self, namespace_name, bucket_name, rename_object_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4787,6 +5014,7 @@ def rename_object(self, namespace_name, bucket_name, rename_object_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -4864,6 +5092,10 @@ def restore_objects(self, namespace_name, bucket_name, restore_objects_details, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4875,6 +5107,7 @@ def restore_objects(self, namespace_name, bucket_name, restore_objects_details, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -4962,6 +5195,10 @@ def update_bucket(self, namespace_name, bucket_name, update_bucket_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.Bucket` :rtype: :class:`~oci.response.Response` @@ -4973,6 +5210,7 @@ def update_bucket(self, namespace_name, bucket_name, update_bucket_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_client_request_id" @@ -5055,6 +5293,10 @@ def update_namespace_metadata(self, namespace_name, update_namespace_metadata_de To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.NamespaceMetadata` :rtype: :class:`~oci.response.Response` @@ -5066,6 +5308,7 @@ def update_namespace_metadata(self, namespace_name, update_namespace_metadata_de # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -5143,6 +5386,10 @@ def update_object_storage_tier(self, namespace_name, bucket_name, update_object_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5154,6 +5401,7 @@ def update_object_storage_tier(self, namespace_name, bucket_name, update_object_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_client_request_id" ] @@ -5238,6 +5486,10 @@ def update_retention_rule(self, namespace_name, bucket_name, retention_rule_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.object_storage.models.RetentionRule` :rtype: :class:`~oci.response.Response` @@ -5249,6 +5501,7 @@ def update_retention_rule(self, namespace_name, bucket_name, retention_rule_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_client_request_id" @@ -5388,6 +5641,10 @@ def upload_part(self, namespace_name, bucket_name, object_name, upload_id, uploa The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings :param int buffer_limit: (optional) A buffer limit for the stream to be buffered. buffer_limit is used to set the buffer size capacity. Streams will be read until the size of the buffer reaches the buffer_limit. If the stream size is greater than the buffer_limit, a BufferError exception will be thrown. @@ -5407,6 +5664,7 @@ def upload_part(self, namespace_name, bucket_name, object_name, upload_id, uploa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "buffer_limit", "content_length", @@ -5500,6 +5758,7 @@ def upload_part(self, namespace_name, bucket_name, object_name, upload_id, uploa query_params=query_params, header_params=header_params, body=upload_part_body, + allow_control_chars=kwargs.get('allow_control_chars'), enforce_content_headers=False) else: return self.base_client.call_api( @@ -5509,4 +5768,5 @@ def upload_part(self, namespace_name, bucket_name, object_name, upload_id, uploa query_params=query_params, header_params=header_params, body=upload_part_body, + allow_control_chars=kwargs.get('allow_control_chars'), enforce_content_headers=False) 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 3071be17de..7d39cc7cb1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/object_storage/transfer/__init__.py b/src/oci/object_storage/transfer/__init__.py index d6e42819b4..d29612e2c5 100644 --- a/src/oci/object_storage/transfer/__init__.py +++ b/src/oci/object_storage/transfer/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # noqa: W391, W292 diff --git a/src/oci/object_storage/transfer/constants.py b/src/oci/object_storage/transfer/constants.py index 309485b54b..429e0dfd3c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. MEBIBYTE = 1024 * 1024 diff --git a/src/oci/object_storage/transfer/internal/__init__.py b/src/oci/object_storage/transfer/internal/__init__.py index d6e42819b4..d29612e2c5 100644 --- a/src/oci/object_storage/transfer/internal/__init__.py +++ b/src/oci/object_storage/transfer/internal/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 f9a35c25d7..71f9f38ce4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 deede5551c..03785f0283 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/object_storage/transfer/internal/md5.py b/src/oci/object_storage/transfer/internal/md5.py index 2c966a7dd5..c6d1472c5e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from cryptography.hazmat.backends import default_backend 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 7c9241e0c6..f1c412870c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import io @@ -541,6 +541,13 @@ def _upload_stream_part(self, part_num, part_bytes, **kwargs): if 'progress_callback' in kwargs: kwargs['progress_callback'](len(part_bytes)) + + except Exception as e: + if 'shared_dict' in kwargs: + kwargs['shared_dict']['should_continue'] = False + kwargs['shared_dict']['exceptions'].put(e) + raise + finally: if 'semaphore' in kwargs: kwargs['semaphore'].release() diff --git a/src/oci/object_storage/transfer/upload_manager.py b/src/oci/object_storage/transfer/upload_manager.py index da83d842b3..c4c0c9b7d8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import print_function diff --git a/src/oci/oce/__init__.py b/src/oci/oce/__init__.py index 4a33cc1c2e..c659a51789 100644 --- a/src/oci/oce/__init__.py +++ b/src/oci/oce/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/oce/models/__init__.py b/src/oci/oce/models/__init__.py index c48ad739af..4908129172 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 592a7d95a3..2e0a900453 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oce/models/create_oce_instance_details.py b/src/oci/oce/models/create_oce_instance_details.py index 3b4709f258..162463337e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oce/models/delete_oce_instance_details.py b/src/oci/oce/models/delete_oce_instance_details.py index 122e08a0c4..f154c381b9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oce/models/identity_stripe_details.py b/src/oci/oce/models/identity_stripe_details.py index 8e1f4108be..16fccf9038 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oce/models/oce_instance.py b/src/oci/oce/models/oce_instance.py index 73cf67d8c8..c3c9286bb4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oce/models/oce_instance_summary.py b/src/oci/oce/models/oce_instance_summary.py index 06ced2fbe0..24dd25e272 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oce/models/update_oce_instance_details.py b/src/oci/oce/models/update_oce_instance_details.py index dcaee28b92..ca22b2f778 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oce/models/work_request.py b/src/oci/oce/models/work_request.py index bf9d4452e0..95cf6e5d45 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oce/models/work_request_error.py b/src/oci/oce/models/work_request_error.py index 04dde83e08..26ac6a8cc9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oce/models/work_request_log_entry.py b/src/oci/oce/models/work_request_log_entry.py index 8d02a6a994..7b37ab8d12 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oce/models/work_request_resource.py b/src/oci/oce/models/work_request_resource.py index 22fc2d2248..93081f5866 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oce/models/workflow_monitor.py b/src/oci/oce/models/workflow_monitor.py index 0a590a65be..54ba7b20d6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oce/models/workflow_step.py b/src/oci/oce/models/workflow_step.py index 707fb18fe5..12f23b785e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oce/oce_instance_client.py b/src/oci/oce/oce_instance_client.py index 23e3958720..a19c155bba 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("oce_instance", config, signer, oce_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -134,6 +140,10 @@ def change_oce_instance_compartment(self, oce_instance_id, change_oce_instance_c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -145,6 +155,7 @@ def change_oce_instance_compartment(self, oce_instance_id, change_oce_instance_c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -225,6 +236,10 @@ def create_oce_instance(self, create_oce_instance_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -236,6 +251,7 @@ def create_oce_instance(self, create_oce_instance_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -302,6 +318,10 @@ def delete_oce_instance(self, oce_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -313,6 +333,7 @@ def delete_oce_instance(self, oce_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -381,6 +402,10 @@ def get_oce_instance(self, oce_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.oce.models.OceInstance` :rtype: :class:`~oci.response.Response` @@ -392,6 +417,7 @@ def get_oce_instance(self, oce_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -460,6 +486,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.oce.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -471,6 +501,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -568,6 +599,10 @@ def list_oce_instances(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.oce.models.OceInstanceSummary` :rtype: :class:`~oci.response.Response` @@ -579,6 +614,7 @@ def list_oce_instances(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "tenancy_id", "display_name", @@ -683,6 +719,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.oce.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -694,6 +734,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -778,6 +819,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.oce.models.WorkRequestLogEntry` :rtype: :class:`~oci.response.Response` @@ -789,6 +834,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -876,6 +922,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.oce.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -887,6 +937,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "resource_id", "opc_request_id", @@ -966,6 +1017,10 @@ def update_oce_instance(self, oce_instance_id, update_oce_instance_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -977,6 +1032,7 @@ def update_oce_instance(self, oce_instance_id, update_oce_instance_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/oce/oce_instance_client_composite_operations.py b/src/oci/oce/oce_instance_client_composite_operations.py index 0d54bde0be..4eded601cf 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/ocvp/__init__.py b/src/oci/ocvp/__init__.py index dff2a005a3..b3bf1cd92c 100644 --- a/src/oci/ocvp/__init__.py +++ b/src/oci/ocvp/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/ocvp/esxi_host_client.py b/src/oci/ocvp/esxi_host_client.py index d6e04e6efe..42d544dc25 100644 --- a/src/oci/ocvp/esxi_host_client.py +++ b/src/oci/ocvp/esxi_host_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("esxi_host", config, signer, ocvp_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -131,6 +137,10 @@ def create_esxi_host(self, create_esxi_host_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -142,6 +152,7 @@ def create_esxi_host(self, create_esxi_host_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -226,6 +237,10 @@ def delete_esxi_host(self, esxi_host_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -237,6 +252,7 @@ def delete_esxi_host(self, esxi_host_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -310,6 +326,10 @@ def get_esxi_host(self, esxi_host_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ocvp.models.EsxiHost` :rtype: :class:`~oci.response.Response` @@ -321,6 +341,7 @@ def get_esxi_host(self, esxi_host_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -447,6 +468,10 @@ def list_esxi_hosts(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ocvp.models.EsxiHostCollection` :rtype: :class:`~oci.response.Response` @@ -458,6 +483,7 @@ def list_esxi_hosts(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "sddc_id", "compute_instance_id", @@ -572,6 +598,10 @@ def update_esxi_host(self, esxi_host_id, update_esxi_host_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ocvp.models.EsxiHost` :rtype: :class:`~oci.response.Response` @@ -583,6 +613,7 @@ def update_esxi_host(self, esxi_host_id, update_esxi_host_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/ocvp/esxi_host_client_composite_operations.py b/src/oci/ocvp/esxi_host_client_composite_operations.py index def790aea7..973e2d7e32 100644 --- a/src/oci/ocvp/esxi_host_client_composite_operations.py +++ b/src/oci/ocvp/esxi_host_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/ocvp/models/__init__.py b/src/oci/ocvp/models/__init__.py index b6c7f7e518..f156e0389b 100644 --- a/src/oci/ocvp/models/__init__.py +++ b/src/oci/ocvp/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/ocvp/models/change_sddc_compartment_details.py b/src/oci/ocvp/models/change_sddc_compartment_details.py index 38cc35d9ad..2651050384 100644 --- a/src/oci/ocvp/models/change_sddc_compartment_details.py +++ b/src/oci/ocvp/models/change_sddc_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/create_esxi_host_details.py b/src/oci/ocvp/models/create_esxi_host_details.py index 9cd47453a4..f7bb677632 100644 --- a/src/oci/ocvp/models/create_esxi_host_details.py +++ b/src/oci/ocvp/models/create_esxi_host_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/create_sddc_details.py b/src/oci/ocvp/models/create_sddc_details.py index c40c7e6617..9906542cff 100644 --- a/src/oci/ocvp/models/create_sddc_details.py +++ b/src/oci/ocvp/models/create_sddc_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/downgrade_hcx_details.py b/src/oci/ocvp/models/downgrade_hcx_details.py index 89d24be854..e0c2b7beba 100644 --- a/src/oci/ocvp/models/downgrade_hcx_details.py +++ b/src/oci/ocvp/models/downgrade_hcx_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/esxi_host.py b/src/oci/ocvp/models/esxi_host.py index 603e979328..3b7ad328b7 100644 --- a/src/oci/ocvp/models/esxi_host.py +++ b/src/oci/ocvp/models/esxi_host.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/esxi_host_collection.py b/src/oci/ocvp/models/esxi_host_collection.py index 3aacd7fffa..0b896f485e 100644 --- a/src/oci/ocvp/models/esxi_host_collection.py +++ b/src/oci/ocvp/models/esxi_host_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/esxi_host_summary.py b/src/oci/ocvp/models/esxi_host_summary.py index 38fe444130..07a8cb65ed 100644 --- a/src/oci/ocvp/models/esxi_host_summary.py +++ b/src/oci/ocvp/models/esxi_host_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/hcx_license_summary.py b/src/oci/ocvp/models/hcx_license_summary.py index f8b824e387..f85dc1fee0 100644 --- a/src/oci/ocvp/models/hcx_license_summary.py +++ b/src/oci/ocvp/models/hcx_license_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/sddc.py b/src/oci/ocvp/models/sddc.py index 3ccefb7dc1..340a35400f 100644 --- a/src/oci/ocvp/models/sddc.py +++ b/src/oci/ocvp/models/sddc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/sddc_collection.py b/src/oci/ocvp/models/sddc_collection.py index 89a7f22853..eaa8f84226 100644 --- a/src/oci/ocvp/models/sddc_collection.py +++ b/src/oci/ocvp/models/sddc_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/sddc_summary.py b/src/oci/ocvp/models/sddc_summary.py index 33b7488a82..f3132b06ee 100644 --- a/src/oci/ocvp/models/sddc_summary.py +++ b/src/oci/ocvp/models/sddc_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/supported_sku_summary.py b/src/oci/ocvp/models/supported_sku_summary.py index d5f8caba3b..786b5ecb72 100644 --- a/src/oci/ocvp/models/supported_sku_summary.py +++ b/src/oci/ocvp/models/supported_sku_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/supported_sku_summary_collection.py b/src/oci/ocvp/models/supported_sku_summary_collection.py index 1c05e72e46..595bdbdca0 100644 --- a/src/oci/ocvp/models/supported_sku_summary_collection.py +++ b/src/oci/ocvp/models/supported_sku_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/supported_vmware_software_version_collection.py b/src/oci/ocvp/models/supported_vmware_software_version_collection.py index ff376bba84..b4d9efa93e 100644 --- a/src/oci/ocvp/models/supported_vmware_software_version_collection.py +++ b/src/oci/ocvp/models/supported_vmware_software_version_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/supported_vmware_software_version_summary.py b/src/oci/ocvp/models/supported_vmware_software_version_summary.py index 786c584fad..a749ccab08 100644 --- a/src/oci/ocvp/models/supported_vmware_software_version_summary.py +++ b/src/oci/ocvp/models/supported_vmware_software_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/update_esxi_host_details.py b/src/oci/ocvp/models/update_esxi_host_details.py index bb07add6c9..e19870a792 100644 --- a/src/oci/ocvp/models/update_esxi_host_details.py +++ b/src/oci/ocvp/models/update_esxi_host_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/update_sddc_details.py b/src/oci/ocvp/models/update_sddc_details.py index 152e96d5d8..f881cea98f 100644 --- a/src/oci/ocvp/models/update_sddc_details.py +++ b/src/oci/ocvp/models/update_sddc_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/work_request.py b/src/oci/ocvp/models/work_request.py index 1998032248..db85acb3c2 100644 --- a/src/oci/ocvp/models/work_request.py +++ b/src/oci/ocvp/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/work_request_collection.py b/src/oci/ocvp/models/work_request_collection.py index e5b090d06b..0be37f5bfe 100644 --- a/src/oci/ocvp/models/work_request_collection.py +++ b/src/oci/ocvp/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/work_request_error.py b/src/oci/ocvp/models/work_request_error.py index 8fe7f5b067..a39847990f 100644 --- a/src/oci/ocvp/models/work_request_error.py +++ b/src/oci/ocvp/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/work_request_error_collection.py b/src/oci/ocvp/models/work_request_error_collection.py index bdee540cf2..bab7cf5db6 100644 --- a/src/oci/ocvp/models/work_request_error_collection.py +++ b/src/oci/ocvp/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/work_request_log_entry.py b/src/oci/ocvp/models/work_request_log_entry.py index b11ce0c7e6..1422b31742 100644 --- a/src/oci/ocvp/models/work_request_log_entry.py +++ b/src/oci/ocvp/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/work_request_log_entry_collection.py b/src/oci/ocvp/models/work_request_log_entry_collection.py index f0f0bafacc..67f868c5cf 100644 --- a/src/oci/ocvp/models/work_request_log_entry_collection.py +++ b/src/oci/ocvp/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/models/work_request_resource.py b/src/oci/ocvp/models/work_request_resource.py index 2d75a95717..5c1170c3f1 100644 --- a/src/oci/ocvp/models/work_request_resource.py +++ b/src/oci/ocvp/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ocvp/sddc_client.py b/src/oci/ocvp/sddc_client.py index 755d81a7c0..7320f37de0 100644 --- a/src/oci/ocvp/sddc_client.py +++ b/src/oci/ocvp/sddc_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("sddc", config, signer, ocvp_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -135,6 +141,10 @@ def cancel_downgrade_hcx(self, sddc_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -146,6 +156,7 @@ def cancel_downgrade_hcx(self, sddc_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -243,6 +254,10 @@ def change_sddc_compartment(self, sddc_id, change_sddc_compartment_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -254,6 +269,7 @@ def change_sddc_compartment(self, sddc_id, change_sddc_compartment_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -344,6 +360,10 @@ def create_sddc(self, create_sddc_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -355,6 +375,7 @@ def create_sddc(self, create_sddc_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -431,6 +452,10 @@ def delete_sddc(self, sddc_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -442,6 +467,7 @@ def delete_sddc(self, sddc_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -535,6 +561,10 @@ def downgrade_hcx(self, downgrade_hcx_details, sddc_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -546,6 +576,7 @@ def downgrade_hcx(self, downgrade_hcx_details, sddc_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -624,6 +655,10 @@ def get_sddc(self, sddc_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ocvp.models.Sddc` :rtype: :class:`~oci.response.Response` @@ -635,6 +670,7 @@ def get_sddc(self, sddc_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -754,6 +790,10 @@ def list_sddcs(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ocvp.models.SddcCollection` :rtype: :class:`~oci.response.Response` @@ -765,6 +805,7 @@ def list_sddcs(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compute_availability_domain", "display_name", @@ -882,6 +923,10 @@ def list_supported_skus(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ocvp.models.SupportedSkuSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -893,6 +938,7 @@ def list_supported_skus(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -980,6 +1026,10 @@ def list_supported_vmware_software_versions(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ocvp.models.SupportedVmwareSoftwareVersionCollection` :rtype: :class:`~oci.response.Response` @@ -991,6 +1041,7 @@ def list_supported_vmware_software_versions(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -1077,6 +1128,10 @@ def refresh_hcx_license_status(self, sddc_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1088,6 +1143,7 @@ def refresh_hcx_license_status(self, sddc_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -1179,6 +1235,10 @@ def update_sddc(self, sddc_id, update_sddc_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ocvp.models.Sddc` :rtype: :class:`~oci.response.Response` @@ -1190,6 +1250,7 @@ def update_sddc(self, sddc_id, update_sddc_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1281,6 +1342,10 @@ def upgrade_hcx(self, sddc_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1292,6 +1357,7 @@ def upgrade_hcx(self, sddc_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", diff --git a/src/oci/ocvp/sddc_client_composite_operations.py b/src/oci/ocvp/sddc_client_composite_operations.py index 779a8748be..d9617a5a69 100644 --- a/src/oci/ocvp/sddc_client_composite_operations.py +++ b/src/oci/ocvp/sddc_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/ocvp/work_request_client.py b/src/oci/ocvp/work_request_client.py index cab4405ce5..75154ad6a8 100644 --- a/src/oci/ocvp/work_request_client.py +++ b/src/oci/ocvp/work_request_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("work_request", config, signer, ocvp_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -121,6 +127,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ocvp.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -132,6 +142,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -219,6 +230,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ocvp.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -230,6 +245,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -327,6 +343,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ocvp.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -338,6 +358,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -440,6 +461,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ocvp.models.WorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -451,6 +476,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "resource_id", "opc_request_id", diff --git a/src/oci/ocvp/work_request_client_composite_operations.py b/src/oci/ocvp/work_request_client_composite_operations.py index 26880b6c26..8bdff3347a 100644 --- a/src/oci/ocvp/work_request_client_composite_operations.py +++ b/src/oci/ocvp/work_request_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/oda/__init__.py b/src/oci/oda/__init__.py index 3a073c7ae5..767dc3c31e 100644 --- a/src/oci/oda/__init__.py +++ b/src/oci/oda/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/oda/models/__init__.py b/src/oci/oda/models/__init__.py index 14921ec701..a110c082a2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 87a810eb9f..518f420970 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oda/models/create_oda_instance_details.py b/src/oci/oda/models/create_oda_instance_details.py index 64d6a3c936..556008fb04 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oda/models/error_body.py b/src/oci/oda/models/error_body.py index cdadd371c0..29aff7f9d3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oda/models/oda_instance.py b/src/oci/oda/models/oda_instance.py index fec9879d06..b1cb704867 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oda/models/oda_instance_summary.py b/src/oci/oda/models/oda_instance_summary.py index 97acadb3d5..d8da1ac05a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oda/models/update_oda_instance_details.py b/src/oci/oda/models/update_oda_instance_details.py index a15e9a8a7b..64e3839704 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oda/models/work_request.py b/src/oci/oda/models/work_request.py index 64285defa6..6b3cedc4ca 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oda/models/work_request_error.py b/src/oci/oda/models/work_request_error.py index 16ccdd4006..86d5d9bce5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oda/models/work_request_log_entry.py b/src/oci/oda/models/work_request_log_entry.py index 7e69d886d3..916012894a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oda/models/work_request_resource.py b/src/oci/oda/models/work_request_resource.py index 05a2349bbd..acd78c28fe 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oda/models/work_request_summary.py b/src/oci/oda/models/work_request_summary.py index 61b1cdf6dc..1c0b0d397c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/oda/oda_client.py b/src/oci/oda/oda_client.py index 21ba0ac949..c617b60ad4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("oda", config, signer, oda_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -137,6 +143,10 @@ def change_oda_instance_compartment(self, oda_instance_id, change_oda_instance_c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -148,6 +158,7 @@ def change_oda_instance_compartment(self, oda_instance_id, change_oda_instance_c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -232,6 +243,10 @@ def create_oda_instance(self, create_oda_instance_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.oda.models.OdaInstance` :rtype: :class:`~oci.response.Response` @@ -243,6 +258,7 @@ def create_oda_instance(self, create_oda_instance_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -313,6 +329,10 @@ def delete_oda_instance(self, oda_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -324,6 +344,7 @@ def delete_oda_instance(self, oda_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -392,6 +413,10 @@ def get_oda_instance(self, oda_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.oda.models.OdaInstance` :rtype: :class:`~oci.response.Response` @@ -403,6 +428,7 @@ def get_oda_instance(self, oda_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -474,6 +500,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.oda.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -485,6 +515,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -591,6 +622,10 @@ def list_oda_instances(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.oda.models.OdaInstanceSummary` :rtype: :class:`~oci.response.Response` @@ -602,6 +637,7 @@ def list_oda_instances(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "lifecycle_state", @@ -725,6 +761,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.oda.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -736,6 +776,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -859,6 +900,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.oda.models.WorkRequestLogEntry` :rtype: :class:`~oci.response.Response` @@ -870,6 +915,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -996,6 +1042,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.oda.models.WorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -1007,6 +1057,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "oda_instance_id", @@ -1111,6 +1162,10 @@ def start_oda_instance(self, oda_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1122,6 +1177,7 @@ def start_oda_instance(self, oda_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -1211,6 +1267,10 @@ def stop_oda_instance(self, oda_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1222,6 +1282,7 @@ def stop_oda_instance(self, oda_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -1304,6 +1365,10 @@ def update_oda_instance(self, oda_instance_id, update_oda_instance_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.oda.models.OdaInstance` :rtype: :class:`~oci.response.Response` @@ -1315,6 +1380,7 @@ def update_oda_instance(self, oda_instance_id, update_oda_instance_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/oda/oda_client_composite_operations.py b/src/oci/oda/oda_client_composite_operations.py index f05181514c..35341f15c2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/ons/__init__.py b/src/oci/ons/__init__.py index 3c9e948d34..bbccf673ec 100644 --- a/src/oci/ons/__init__.py +++ b/src/oci/ons/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/ons/models/__init__.py b/src/oci/ons/models/__init__.py index aa37d951fa..bc94405d6f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 2c31de5443..a1b5a4d1c5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ons/models/change_compartment_details.py b/src/oci/ons/models/change_compartment_details.py index 8a31f25b99..999c5950ff 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ons/models/confirmation_result.py b/src/oci/ons/models/confirmation_result.py index 5ae6229fed..1c21891f28 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ons/models/create_subscription_details.py b/src/oci/ons/models/create_subscription_details.py index cca99fdf7e..09726c5b32 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ons/models/create_topic_details.py b/src/oci/ons/models/create_topic_details.py index 9052af8cb8..710f0bb47a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ons/models/delivery_policy.py b/src/oci/ons/models/delivery_policy.py index e83eddc5de..7cfcf737e4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ons/models/message_details.py b/src/oci/ons/models/message_details.py index bcc29b75c8..52333ddd76 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ons/models/notification_topic.py b/src/oci/ons/models/notification_topic.py index 4804772e77..d649912e4a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ons/models/notification_topic_summary.py b/src/oci/ons/models/notification_topic_summary.py index 6365a7dfb6..4fa3e36745 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ons/models/publish_result.py b/src/oci/ons/models/publish_result.py index 1f5f500fce..3a68852a60 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ons/models/subscription.py b/src/oci/ons/models/subscription.py index 3e664cf3b7..91a5593f08 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ons/models/subscription_summary.py b/src/oci/ons/models/subscription_summary.py index 647bd93382..e3329cde3a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ons/models/topic_attributes_details.py b/src/oci/ons/models/topic_attributes_details.py index b24b86f4c7..84ccad1758 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ons/models/update_subscription_details.py b/src/oci/ons/models/update_subscription_details.py index b2d9983657..211e6d1ad3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/ons/notification_control_plane_client.py b/src/oci/ons/notification_control_plane_client.py index e760dd885c..60aaf897ac 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("notification_control_plane", config, signer, ons_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -142,6 +148,10 @@ def change_topic_compartment(self, topic_id, change_topic_compartment_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -153,6 +163,7 @@ def change_topic_compartment(self, topic_id, change_topic_compartment_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -251,6 +262,10 @@ def create_topic(self, create_topic_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ons.models.NotificationTopic` :rtype: :class:`~oci.response.Response` @@ -262,6 +277,7 @@ def create_topic(self, create_topic_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -333,6 +349,10 @@ def delete_topic(self, topic_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -344,6 +364,7 @@ def delete_topic(self, topic_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -417,6 +438,10 @@ def get_topic(self, topic_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ons.models.NotificationTopic` :rtype: :class:`~oci.response.Response` @@ -428,6 +453,7 @@ def get_topic(self, topic_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -534,6 +560,10 @@ def list_topics(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.ons.models.NotificationTopicSummary` :rtype: :class:`~oci.response.Response` @@ -545,6 +575,7 @@ def list_topics(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "name", @@ -656,6 +687,10 @@ def update_topic(self, topic_id, topic_attributes_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ons.models.NotificationTopic` :rtype: :class:`~oci.response.Response` @@ -667,6 +702,7 @@ def update_topic(self, topic_id, topic_attributes_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" 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 42ef42f1e9..a87e1ca6aa 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/ons/notification_data_plane_client.py b/src/oci/ons/notification_data_plane_client.py index 0884945c37..64f6d1672f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("notification_data_plane", config, signer, ons_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -142,6 +148,10 @@ def change_subscription_compartment(self, subscription_id, change_subscription_c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -153,6 +163,7 @@ def change_subscription_compartment(self, subscription_id, change_subscription_c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -240,6 +251,10 @@ def create_subscription(self, create_subscription_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ons.models.Subscription` :rtype: :class:`~oci.response.Response` @@ -251,6 +266,7 @@ def create_subscription(self, create_subscription_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -322,6 +338,10 @@ def delete_subscription(self, subscription_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -333,6 +353,7 @@ def delete_subscription(self, subscription_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -426,6 +447,10 @@ def get_confirm_subscription(self, id, token, protocol, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ons.models.ConfirmationResult` :rtype: :class:`~oci.response.Response` @@ -437,6 +462,7 @@ def get_confirm_subscription(self, id, token, protocol, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -518,6 +544,10 @@ def get_subscription(self, subscription_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ons.models.Subscription` :rtype: :class:`~oci.response.Response` @@ -529,6 +559,7 @@ def get_subscription(self, subscription_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -622,6 +653,10 @@ def get_unsubscription(self, id, token, protocol, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type str :rtype: :class:`~oci.response.Response` @@ -633,6 +668,7 @@ def get_unsubscription(self, id, token, protocol, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -729,6 +765,10 @@ def list_subscriptions(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.ons.models.SubscriptionSummary` :rtype: :class:`~oci.response.Response` @@ -740,6 +780,7 @@ def list_subscriptions(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "topic_id", "page", @@ -845,6 +886,10 @@ def publish_message(self, topic_id, message_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ons.models.PublishResult` :rtype: :class:`~oci.response.Response` @@ -856,6 +901,7 @@ def publish_message(self, topic_id, message_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "message_type" @@ -933,6 +979,10 @@ def resend_subscription_confirmation(self, id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ons.models.Subscription` :rtype: :class:`~oci.response.Response` @@ -944,6 +994,7 @@ def resend_subscription_confirmation(self, id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1025,6 +1076,10 @@ def update_subscription(self, subscription_id, update_subscription_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.ons.models.UpdateSubscriptionDetails` :rtype: :class:`~oci.response.Response` @@ -1036,6 +1091,7 @@ def update_subscription(self, subscription_id, update_subscription_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" 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 e69da2c680..d0b4ae74bc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/operator_access_control/__init__.py b/src/oci/operator_access_control/__init__.py index 41b0d4e674..e337372787 100644 --- a/src/oci/operator_access_control/__init__.py +++ b/src/oci/operator_access_control/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/operator_access_control/access_requests_client.py b/src/oci/operator_access_control/access_requests_client.py index b8e16604e9..876a0e4521 100644 --- a/src/oci/operator_access_control/access_requests_client.py +++ b/src/oci/operator_access_control/access_requests_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -67,6 +67,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -97,6 +101,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("access_requests", config, signer, operator_access_control_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -137,6 +143,10 @@ def approve_access_request(self, access_request_id, approve_access_request_detai To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -148,6 +158,7 @@ def approve_access_request(self, access_request_id, approve_access_request_detai # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -221,6 +232,10 @@ def get_access_request(self, access_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.operator_access_control.models.AccessRequest` :rtype: :class:`~oci.response.Response` @@ -232,6 +247,7 @@ def get_access_request(self, access_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -306,6 +322,10 @@ def list_access_request_histories(self, access_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.operator_access_control.models.AccessRequestHistoryCollection` :rtype: :class:`~oci.response.Response` @@ -317,6 +337,7 @@ def list_access_request_histories(self, access_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -432,6 +453,10 @@ def list_access_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.operator_access_control.models.AccessRequestCollection` :rtype: :class:`~oci.response.Response` @@ -443,6 +468,7 @@ def list_access_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "resource_name", "resource_type", @@ -562,6 +588,10 @@ def reject_access_request(self, access_request_id, reject_access_request_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -573,6 +603,7 @@ def reject_access_request(self, access_request_id, reject_access_request_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -663,6 +694,10 @@ def review_access_request(self, access_request_id, review_access_request_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.operator_access_control.models.AccessRequest` :rtype: :class:`~oci.response.Response` @@ -674,6 +709,7 @@ def review_access_request(self, access_request_id, review_access_request_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -766,6 +802,10 @@ def revoke_access_request(self, access_request_id, revoke_access_request_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -777,6 +817,7 @@ def revoke_access_request(self, access_request_id, revoke_access_request_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", diff --git a/src/oci/operator_access_control/access_requests_client_composite_operations.py b/src/oci/operator_access_control/access_requests_client_composite_operations.py index a7de1ceeec..0f5b4cf133 100644 --- a/src/oci/operator_access_control/access_requests_client_composite_operations.py +++ b/src/oci/operator_access_control/access_requests_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/operator_access_control/models/__init__.py b/src/oci/operator_access_control/models/__init__.py index a9c3e6fd63..7d12f8a580 100644 --- a/src/oci/operator_access_control/models/__init__.py +++ b/src/oci/operator_access_control/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/operator_access_control/models/access_request.py b/src/oci/operator_access_control/models/access_request.py index c5df614777..9df10bdde3 100644 --- a/src/oci/operator_access_control/models/access_request.py +++ b/src/oci/operator_access_control/models/access_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/access_request_collection.py b/src/oci/operator_access_control/models/access_request_collection.py index 03dd17c802..99db082697 100644 --- a/src/oci/operator_access_control/models/access_request_collection.py +++ b/src/oci/operator_access_control/models/access_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/access_request_history_collection.py b/src/oci/operator_access_control/models/access_request_history_collection.py index 67fba2950a..0241d522f8 100644 --- a/src/oci/operator_access_control/models/access_request_history_collection.py +++ b/src/oci/operator_access_control/models/access_request_history_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/access_request_history_summary.py b/src/oci/operator_access_control/models/access_request_history_summary.py index c17944d2d6..acd8abfdb5 100644 --- a/src/oci/operator_access_control/models/access_request_history_summary.py +++ b/src/oci/operator_access_control/models/access_request_history_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/access_request_summary.py b/src/oci/operator_access_control/models/access_request_summary.py index 8a00776fc1..21e56ea0ae 100644 --- a/src/oci/operator_access_control/models/access_request_summary.py +++ b/src/oci/operator_access_control/models/access_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/approve_access_request_details.py b/src/oci/operator_access_control/models/approve_access_request_details.py index 15c7d59b8c..e491b13f57 100644 --- a/src/oci/operator_access_control/models/approve_access_request_details.py +++ b/src/oci/operator_access_control/models/approve_access_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/change_operator_control_assignment_compartment_details.py b/src/oci/operator_access_control/models/change_operator_control_assignment_compartment_details.py index c06c1eb700..f1a62d00e9 100644 --- a/src/oci/operator_access_control/models/change_operator_control_assignment_compartment_details.py +++ b/src/oci/operator_access_control/models/change_operator_control_assignment_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/change_operator_control_compartment_details.py b/src/oci/operator_access_control/models/change_operator_control_compartment_details.py index dc97c87534..636eed1f7d 100644 --- a/src/oci/operator_access_control/models/change_operator_control_compartment_details.py +++ b/src/oci/operator_access_control/models/change_operator_control_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/create_operator_control_assignment_details.py b/src/oci/operator_access_control/models/create_operator_control_assignment_details.py index 2ff3fb30b2..050d6b7f6a 100644 --- a/src/oci/operator_access_control/models/create_operator_control_assignment_details.py +++ b/src/oci/operator_access_control/models/create_operator_control_assignment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/create_operator_control_details.py b/src/oci/operator_access_control/models/create_operator_control_details.py index cfc5ea89aa..bcfe15146b 100644 --- a/src/oci/operator_access_control/models/create_operator_control_details.py +++ b/src/oci/operator_access_control/models/create_operator_control_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/operator_action.py b/src/oci/operator_access_control/models/operator_action.py index 56d50074d3..cf8db03265 100644 --- a/src/oci/operator_access_control/models/operator_action.py +++ b/src/oci/operator_access_control/models/operator_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/operator_action_collection.py b/src/oci/operator_access_control/models/operator_action_collection.py index 608620a169..53c6dd5e63 100644 --- a/src/oci/operator_access_control/models/operator_action_collection.py +++ b/src/oci/operator_access_control/models/operator_action_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/operator_action_properties.py b/src/oci/operator_access_control/models/operator_action_properties.py index 12b8cf1b26..0913880958 100644 --- a/src/oci/operator_access_control/models/operator_action_properties.py +++ b/src/oci/operator_access_control/models/operator_action_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/operator_action_summary.py b/src/oci/operator_access_control/models/operator_action_summary.py index cf4309805f..561f821916 100644 --- a/src/oci/operator_access_control/models/operator_action_summary.py +++ b/src/oci/operator_access_control/models/operator_action_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/operator_control.py b/src/oci/operator_access_control/models/operator_control.py index 031662564a..af3883a70f 100644 --- a/src/oci/operator_access_control/models/operator_control.py +++ b/src/oci/operator_access_control/models/operator_control.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/operator_control_assignment.py b/src/oci/operator_access_control/models/operator_control_assignment.py index cc0b04aa9e..4aba5d549f 100644 --- a/src/oci/operator_access_control/models/operator_control_assignment.py +++ b/src/oci/operator_access_control/models/operator_control_assignment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/operator_control_assignment_collection.py b/src/oci/operator_access_control/models/operator_control_assignment_collection.py index 93103e7c71..3bd5e6cf71 100644 --- a/src/oci/operator_access_control/models/operator_control_assignment_collection.py +++ b/src/oci/operator_access_control/models/operator_control_assignment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/operator_control_assignment_summary.py b/src/oci/operator_access_control/models/operator_control_assignment_summary.py index 9f31fc8e10..81c295868a 100644 --- a/src/oci/operator_access_control/models/operator_control_assignment_summary.py +++ b/src/oci/operator_access_control/models/operator_control_assignment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/operator_control_collection.py b/src/oci/operator_access_control/models/operator_control_collection.py index bd07c197f9..911a5e6886 100644 --- a/src/oci/operator_access_control/models/operator_control_collection.py +++ b/src/oci/operator_access_control/models/operator_control_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/operator_control_summary.py b/src/oci/operator_access_control/models/operator_control_summary.py index 2498112e90..3e557be12f 100644 --- a/src/oci/operator_access_control/models/operator_control_summary.py +++ b/src/oci/operator_access_control/models/operator_control_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/reject_access_request_details.py b/src/oci/operator_access_control/models/reject_access_request_details.py index bc61ceef95..aceacaef58 100644 --- a/src/oci/operator_access_control/models/reject_access_request_details.py +++ b/src/oci/operator_access_control/models/reject_access_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/review_access_request_details.py b/src/oci/operator_access_control/models/review_access_request_details.py index 67ed06a261..d6bda1dcdd 100644 --- a/src/oci/operator_access_control/models/review_access_request_details.py +++ b/src/oci/operator_access_control/models/review_access_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/revoke_access_request_details.py b/src/oci/operator_access_control/models/revoke_access_request_details.py index 3dcccdb1fb..0eece9f1be 100644 --- a/src/oci/operator_access_control/models/revoke_access_request_details.py +++ b/src/oci/operator_access_control/models/revoke_access_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/update_operator_control_assignment_details.py b/src/oci/operator_access_control/models/update_operator_control_assignment_details.py index c186699689..33b620fb97 100644 --- a/src/oci/operator_access_control/models/update_operator_control_assignment_details.py +++ b/src/oci/operator_access_control/models/update_operator_control_assignment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/models/update_operator_control_details.py b/src/oci/operator_access_control/models/update_operator_control_details.py index 8df698317b..1d109b540e 100644 --- a/src/oci/operator_access_control/models/update_operator_control_details.py +++ b/src/oci/operator_access_control/models/update_operator_control_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/operator_access_control/operator_actions_client.py b/src/oci/operator_access_control/operator_actions_client.py index 0922816479..b98ca915f7 100644 --- a/src/oci/operator_access_control/operator_actions_client.py +++ b/src/oci/operator_access_control/operator_actions_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -67,6 +67,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -97,6 +101,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("operator_actions", config, signer, operator_access_control_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -120,6 +126,10 @@ def get_operator_action(self, operator_action_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.operator_access_control.models.OperatorAction` :rtype: :class:`~oci.response.Response` @@ -131,6 +141,7 @@ def get_operator_action(self, operator_action_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -226,6 +237,10 @@ def list_operator_actions(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.operator_access_control.models.OperatorActionCollection` :rtype: :class:`~oci.response.Response` @@ -237,6 +252,7 @@ def list_operator_actions(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "resource_type", diff --git a/src/oci/operator_access_control/operator_actions_client_composite_operations.py b/src/oci/operator_access_control/operator_actions_client_composite_operations.py index 26bfce9ebf..10ae3d0464 100644 --- a/src/oci/operator_access_control/operator_actions_client_composite_operations.py +++ b/src/oci/operator_access_control/operator_actions_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/operator_access_control/operator_control_assignment_client.py b/src/oci/operator_access_control/operator_control_assignment_client.py index 7f3d7d8443..b7e7d1c0d3 100644 --- a/src/oci/operator_access_control/operator_control_assignment_client.py +++ b/src/oci/operator_access_control/operator_control_assignment_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -67,6 +67,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -97,6 +101,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("operator_control_assignment", config, signer, operator_access_control_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -137,6 +143,10 @@ def change_operator_control_assignment_compartment(self, operator_control_assign To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -148,6 +158,7 @@ def change_operator_control_assignment_compartment(self, operator_control_assign # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -228,6 +239,10 @@ def create_operator_control_assignment(self, create_operator_control_assignment_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.operator_access_control.models.OperatorControlAssignment` :rtype: :class:`~oci.response.Response` @@ -239,6 +254,7 @@ def create_operator_control_assignment(self, create_operator_control_assignment_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -310,6 +326,10 @@ def delete_operator_control_assignment(self, operator_control_assignment_id, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -321,6 +341,7 @@ def delete_operator_control_assignment(self, operator_control_assignment_id, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "description", "if_match", @@ -397,6 +418,10 @@ def get_operator_control_assignment(self, operator_control_assignment_id, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.operator_access_control.models.OperatorControlAssignment` :rtype: :class:`~oci.response.Response` @@ -408,6 +433,7 @@ def get_operator_control_assignment(self, operator_control_assignment_id, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -506,6 +532,10 @@ def list_operator_control_assignments(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.operator_access_control.models.OperatorControlAssignmentCollection` :rtype: :class:`~oci.response.Response` @@ -517,6 +547,7 @@ def list_operator_control_assignments(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "operator_control_name", "resource_name", @@ -627,6 +658,10 @@ def update_operator_control_assignment(self, operator_control_assignment_id, upd To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.operator_access_control.models.OperatorControlAssignment` :rtype: :class:`~oci.response.Response` @@ -638,6 +673,7 @@ def update_operator_control_assignment(self, operator_control_assignment_id, upd # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/operator_access_control/operator_control_assignment_client_composite_operations.py b/src/oci/operator_access_control/operator_control_assignment_client_composite_operations.py index 83193ac805..89001631fc 100644 --- a/src/oci/operator_access_control/operator_control_assignment_client_composite_operations.py +++ b/src/oci/operator_access_control/operator_control_assignment_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/operator_access_control/operator_control_client.py b/src/oci/operator_access_control/operator_control_client.py index 0482973f84..3ec8fae4ae 100644 --- a/src/oci/operator_access_control/operator_control_client.py +++ b/src/oci/operator_access_control/operator_control_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -67,6 +67,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -97,6 +101,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("operator_control", config, signer, operator_access_control_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -137,6 +143,10 @@ def change_operator_control_compartment(self, operator_control_id, change_operat To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -148,6 +158,7 @@ def change_operator_control_compartment(self, operator_control_id, change_operat # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -228,6 +239,10 @@ def create_operator_control(self, create_operator_control_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.operator_access_control.models.OperatorControl` :rtype: :class:`~oci.response.Response` @@ -239,6 +254,7 @@ def create_operator_control(self, create_operator_control_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -314,6 +330,10 @@ def delete_operator_control(self, operator_control_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -325,6 +345,7 @@ def delete_operator_control(self, operator_control_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "description", "if_match", @@ -401,6 +422,10 @@ def get_operator_control(self, operator_control_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.operator_access_control.models.OperatorControl` :rtype: :class:`~oci.response.Response` @@ -412,6 +437,7 @@ def get_operator_control(self, operator_control_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -507,6 +533,10 @@ def list_operator_controls(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.operator_access_control.models.OperatorControlCollection` :rtype: :class:`~oci.response.Response` @@ -518,6 +548,7 @@ def list_operator_controls(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "display_name", @@ -626,6 +657,10 @@ def update_operator_control(self, operator_control_id, update_operator_control_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.operator_access_control.models.OperatorControl` :rtype: :class:`~oci.response.Response` @@ -637,6 +672,7 @@ def update_operator_control(self, operator_control_id, update_operator_control_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/operator_access_control/operator_control_client_composite_operations.py b/src/oci/operator_access_control/operator_control_client_composite_operations.py index 84b0e7fc76..ce6d426a20 100644 --- a/src/oci/operator_access_control/operator_control_client_composite_operations.py +++ b/src/oci/operator_access_control/operator_control_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/opsi/__init__.py b/src/oci/opsi/__init__.py index c56cb8f472..a3235ef358 100644 --- a/src/oci/opsi/__init__.py +++ b/src/oci/opsi/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/opsi/models/__init__.py b/src/oci/opsi/models/__init__.py index 3b459d0a84..66e3daf154 100644 --- a/src/oci/opsi/models/__init__.py +++ b/src/oci/opsi/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/opsi/models/add_em_managed_external_exadata_insight_members_details.py b/src/oci/opsi/models/add_em_managed_external_exadata_insight_members_details.py index a1ff504140..ca1bee7d3b 100644 --- a/src/oci/opsi/models/add_em_managed_external_exadata_insight_members_details.py +++ b/src/oci/opsi/models/add_em_managed_external_exadata_insight_members_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .add_exadata_insight_members_details import AddExadataInsightMembersDetails diff --git a/src/oci/opsi/models/add_exadata_insight_members_details.py b/src/oci/opsi/models/add_exadata_insight_members_details.py index 3dad99f82f..b1fe1df19b 100644 --- a/src/oci/opsi/models/add_exadata_insight_members_details.py +++ b/src/oci/opsi/models/add_exadata_insight_members_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/autonomous_database_configuration_summary.py b/src/oci/opsi/models/autonomous_database_configuration_summary.py index 998a0c6f50..44543bf566 100644 --- a/src/oci/opsi/models/autonomous_database_configuration_summary.py +++ b/src/oci/opsi/models/autonomous_database_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_configuration_summary import DatabaseConfigurationSummary diff --git a/src/oci/opsi/models/autonomous_database_insight.py b/src/oci/opsi/models/autonomous_database_insight.py index d511bfa9c8..91473addee 100644 --- a/src/oci/opsi/models/autonomous_database_insight.py +++ b/src/oci/opsi/models/autonomous_database_insight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_insight import DatabaseInsight diff --git a/src/oci/opsi/models/autonomous_database_insight_summary.py b/src/oci/opsi/models/autonomous_database_insight_summary.py index 025d354e65..7486a5ea80 100644 --- a/src/oci/opsi/models/autonomous_database_insight_summary.py +++ b/src/oci/opsi/models/autonomous_database_insight_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_insight_summary import DatabaseInsightSummary diff --git a/src/oci/opsi/models/awr_hub.py b/src/oci/opsi/models/awr_hub.py index 92f560e8dd..0d61c45b1e 100644 --- a/src/oci/opsi/models/awr_hub.py +++ b/src/oci/opsi/models/awr_hub.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/awr_hub_summary.py b/src/oci/opsi/models/awr_hub_summary.py index 6958d56090..c029dda5f2 100644 --- a/src/oci/opsi/models/awr_hub_summary.py +++ b/src/oci/opsi/models/awr_hub_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/awr_hub_summary_collection.py b/src/oci/opsi/models/awr_hub_summary_collection.py index 4d730f1495..93c68247bc 100644 --- a/src/oci/opsi/models/awr_hub_summary_collection.py +++ b/src/oci/opsi/models/awr_hub_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/awr_hubs.py b/src/oci/opsi/models/awr_hubs.py index 6cd715a97a..357b06acbf 100644 --- a/src/oci/opsi/models/awr_hubs.py +++ b/src/oci/opsi/models/awr_hubs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/awr_report.py b/src/oci/opsi/models/awr_report.py index ea6e76a74f..1ebe6b42b1 100644 --- a/src/oci/opsi/models/awr_report.py +++ b/src/oci/opsi/models/awr_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/awr_snapshot_collection.py b/src/oci/opsi/models/awr_snapshot_collection.py index 60677da473..02d2279b01 100644 --- a/src/oci/opsi/models/awr_snapshot_collection.py +++ b/src/oci/opsi/models/awr_snapshot_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/awr_snapshot_summary.py b/src/oci/opsi/models/awr_snapshot_summary.py index 559db7fd2a..b1bb0b09be 100644 --- a/src/oci/opsi/models/awr_snapshot_summary.py +++ b/src/oci/opsi/models/awr_snapshot_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/awr_source_summary.py b/src/oci/opsi/models/awr_source_summary.py index b3157bc161..5f2b69a9a0 100644 --- a/src/oci/opsi/models/awr_source_summary.py +++ b/src/oci/opsi/models/awr_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/change_database_insight_compartment_details.py b/src/oci/opsi/models/change_database_insight_compartment_details.py index 7d55c2da79..a0bc5f33b8 100644 --- a/src/oci/opsi/models/change_database_insight_compartment_details.py +++ b/src/oci/opsi/models/change_database_insight_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/change_enterprise_manager_bridge_compartment_details.py b/src/oci/opsi/models/change_enterprise_manager_bridge_compartment_details.py index 3ef02bbeee..9c5b848d70 100644 --- a/src/oci/opsi/models/change_enterprise_manager_bridge_compartment_details.py +++ b/src/oci/opsi/models/change_enterprise_manager_bridge_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/change_exadata_insight_compartment_details.py b/src/oci/opsi/models/change_exadata_insight_compartment_details.py index e37f17ca43..dcefbf8c90 100644 --- a/src/oci/opsi/models/change_exadata_insight_compartment_details.py +++ b/src/oci/opsi/models/change_exadata_insight_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/change_host_insight_compartment_details.py b/src/oci/opsi/models/change_host_insight_compartment_details.py index 778ab08ba2..f67114a18b 100644 --- a/src/oci/opsi/models/change_host_insight_compartment_details.py +++ b/src/oci/opsi/models/change_host_insight_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/connection_details.py b/src/oci/opsi/models/connection_details.py index 7c4710ad8e..00101bd26d 100644 --- a/src/oci/opsi/models/connection_details.py +++ b/src/oci/opsi/models/connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/create_awr_hub_details.py b/src/oci/opsi/models/create_awr_hub_details.py index c1b34f8d99..e4b337dba4 100644 --- a/src/oci/opsi/models/create_awr_hub_details.py +++ b/src/oci/opsi/models/create_awr_hub_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/create_database_insight_details.py b/src/oci/opsi/models/create_database_insight_details.py index 6e44da2fba..8cc18d8644 100644 --- a/src/oci/opsi/models/create_database_insight_details.py +++ b/src/oci/opsi/models/create_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/create_em_managed_external_database_insight_details.py b/src/oci/opsi/models/create_em_managed_external_database_insight_details.py index 14c4075add..51109a321b 100644 --- a/src/oci/opsi/models/create_em_managed_external_database_insight_details.py +++ b/src/oci/opsi/models/create_em_managed_external_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_database_insight_details import CreateDatabaseInsightDetails diff --git a/src/oci/opsi/models/create_em_managed_external_exadata_insight_details.py b/src/oci/opsi/models/create_em_managed_external_exadata_insight_details.py index 2b85fa9eda..a5f87c87dc 100644 --- a/src/oci/opsi/models/create_em_managed_external_exadata_insight_details.py +++ b/src/oci/opsi/models/create_em_managed_external_exadata_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_exadata_insight_details import CreateExadataInsightDetails diff --git a/src/oci/opsi/models/create_em_managed_external_exadata_member_entity_details.py b/src/oci/opsi/models/create_em_managed_external_exadata_member_entity_details.py index b338f09d8b..27b99c7bd2 100644 --- a/src/oci/opsi/models/create_em_managed_external_exadata_member_entity_details.py +++ b/src/oci/opsi/models/create_em_managed_external_exadata_member_entity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/create_em_managed_external_host_insight_details.py b/src/oci/opsi/models/create_em_managed_external_host_insight_details.py index c63ceecfbb..1f693060e4 100644 --- a/src/oci/opsi/models/create_em_managed_external_host_insight_details.py +++ b/src/oci/opsi/models/create_em_managed_external_host_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_host_insight_details import CreateHostInsightDetails diff --git a/src/oci/opsi/models/create_enterprise_manager_bridge_details.py b/src/oci/opsi/models/create_enterprise_manager_bridge_details.py index 122bb9caee..cb6841aa53 100644 --- a/src/oci/opsi/models/create_enterprise_manager_bridge_details.py +++ b/src/oci/opsi/models/create_enterprise_manager_bridge_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/create_exadata_insight_details.py b/src/oci/opsi/models/create_exadata_insight_details.py index 9732411faa..a2eb7ac33c 100644 --- a/src/oci/opsi/models/create_exadata_insight_details.py +++ b/src/oci/opsi/models/create_exadata_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/create_host_insight_details.py b/src/oci/opsi/models/create_host_insight_details.py index 3723e6a8b3..49b034bbc3 100644 --- a/src/oci/opsi/models/create_host_insight_details.py +++ b/src/oci/opsi/models/create_host_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/create_macs_managed_external_host_insight_details.py b/src/oci/opsi/models/create_macs_managed_external_host_insight_details.py index 33e6ec044a..01fe3f207d 100644 --- a/src/oci/opsi/models/create_macs_managed_external_host_insight_details.py +++ b/src/oci/opsi/models/create_macs_managed_external_host_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_host_insight_details import CreateHostInsightDetails diff --git a/src/oci/opsi/models/create_operations_insights_warehouse_details.py b/src/oci/opsi/models/create_operations_insights_warehouse_details.py index ebd311051d..0872838fe0 100644 --- a/src/oci/opsi/models/create_operations_insights_warehouse_details.py +++ b/src/oci/opsi/models/create_operations_insights_warehouse_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/create_operations_insights_warehouse_user_details.py b/src/oci/opsi/models/create_operations_insights_warehouse_user_details.py index 49644d8727..8d1d322d18 100644 --- a/src/oci/opsi/models/create_operations_insights_warehouse_user_details.py +++ b/src/oci/opsi/models/create_operations_insights_warehouse_user_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/credential_details.py b/src/oci/opsi/models/credential_details.py index 3e05482cb5..5976a7d6bb 100644 --- a/src/oci/opsi/models/credential_details.py +++ b/src/oci/opsi/models/credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/credentials_by_source.py b/src/oci/opsi/models/credentials_by_source.py index 0a685ef060..aa16f7ee46 100644 --- a/src/oci/opsi/models/credentials_by_source.py +++ b/src/oci/opsi/models/credentials_by_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .credential_details import CredentialDetails diff --git a/src/oci/opsi/models/database_configuration_collection.py b/src/oci/opsi/models/database_configuration_collection.py index f5ec1cbd6a..24a2b7b54b 100644 --- a/src/oci/opsi/models/database_configuration_collection.py +++ b/src/oci/opsi/models/database_configuration_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/database_configuration_metric_group.py b/src/oci/opsi/models/database_configuration_metric_group.py index a08d89bc44..a829b4c381 100644 --- a/src/oci/opsi/models/database_configuration_metric_group.py +++ b/src/oci/opsi/models/database_configuration_metric_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/database_configuration_summary.py b/src/oci/opsi/models/database_configuration_summary.py index 74f3f38728..c5afd37d3a 100644 --- a/src/oci/opsi/models/database_configuration_summary.py +++ b/src/oci/opsi/models/database_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/database_details.py b/src/oci/opsi/models/database_details.py index 09b93a6c2a..f0bf91c2fb 100644 --- a/src/oci/opsi/models/database_details.py +++ b/src/oci/opsi/models/database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/database_insight.py b/src/oci/opsi/models/database_insight.py index 6f57c96ee6..3a1a0f4c95 100644 --- a/src/oci/opsi/models/database_insight.py +++ b/src/oci/opsi/models/database_insight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/database_insight_summary.py b/src/oci/opsi/models/database_insight_summary.py index 702a25610a..c96efa161a 100644 --- a/src/oci/opsi/models/database_insight_summary.py +++ b/src/oci/opsi/models/database_insight_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/database_insights.py b/src/oci/opsi/models/database_insights.py index c6d2fc1022..e4c0f1f531 100644 --- a/src/oci/opsi/models/database_insights.py +++ b/src/oci/opsi/models/database_insights.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/database_insights_collection.py b/src/oci/opsi/models/database_insights_collection.py index 9d2de0ed36..26c33f36a2 100644 --- a/src/oci/opsi/models/database_insights_collection.py +++ b/src/oci/opsi/models/database_insights_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/db_external_instance.py b/src/oci/opsi/models/db_external_instance.py index 3e5473763f..37f7abf29f 100644 --- a/src/oci/opsi/models/db_external_instance.py +++ b/src/oci/opsi/models/db_external_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_configuration_metric_group import DatabaseConfigurationMetricGroup diff --git a/src/oci/opsi/models/db_external_properties.py b/src/oci/opsi/models/db_external_properties.py index 4e2cf7102d..4f04178b14 100644 --- a/src/oci/opsi/models/db_external_properties.py +++ b/src/oci/opsi/models/db_external_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_configuration_metric_group import DatabaseConfigurationMetricGroup diff --git a/src/oci/opsi/models/dbos_config_instance.py b/src/oci/opsi/models/dbos_config_instance.py index 9f2e5da471..8611b64850 100644 --- a/src/oci/opsi/models/dbos_config_instance.py +++ b/src/oci/opsi/models/dbos_config_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_configuration_metric_group import DatabaseConfigurationMetricGroup diff --git a/src/oci/opsi/models/disk_group_details.py b/src/oci/opsi/models/disk_group_details.py index 5acd8b7824..e43e831558 100644 --- a/src/oci/opsi/models/disk_group_details.py +++ b/src/oci/opsi/models/disk_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/download_operations_insights_warehouse_wallet_details.py b/src/oci/opsi/models/download_operations_insights_warehouse_wallet_details.py index 3e0ead86ee..003361f962 100644 --- a/src/oci/opsi/models/download_operations_insights_warehouse_wallet_details.py +++ b/src/oci/opsi/models/download_operations_insights_warehouse_wallet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/em_managed_external_database_configuration_summary.py b/src/oci/opsi/models/em_managed_external_database_configuration_summary.py index 245ba9a0d4..b583f3d30c 100644 --- a/src/oci/opsi/models/em_managed_external_database_configuration_summary.py +++ b/src/oci/opsi/models/em_managed_external_database_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_configuration_summary import DatabaseConfigurationSummary diff --git a/src/oci/opsi/models/em_managed_external_database_insight.py b/src/oci/opsi/models/em_managed_external_database_insight.py index d1e8423978..b4957cb3ff 100644 --- a/src/oci/opsi/models/em_managed_external_database_insight.py +++ b/src/oci/opsi/models/em_managed_external_database_insight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_insight import DatabaseInsight diff --git a/src/oci/opsi/models/em_managed_external_database_insight_summary.py b/src/oci/opsi/models/em_managed_external_database_insight_summary.py index 8282e8a822..4f4a121a32 100644 --- a/src/oci/opsi/models/em_managed_external_database_insight_summary.py +++ b/src/oci/opsi/models/em_managed_external_database_insight_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_insight_summary import DatabaseInsightSummary diff --git a/src/oci/opsi/models/em_managed_external_exadata_insight.py b/src/oci/opsi/models/em_managed_external_exadata_insight.py index 991dda7ab3..1ca38f7f92 100644 --- a/src/oci/opsi/models/em_managed_external_exadata_insight.py +++ b/src/oci/opsi/models/em_managed_external_exadata_insight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .exadata_insight import ExadataInsight diff --git a/src/oci/opsi/models/em_managed_external_exadata_insight_summary.py b/src/oci/opsi/models/em_managed_external_exadata_insight_summary.py index 66083333e5..933571d145 100644 --- a/src/oci/opsi/models/em_managed_external_exadata_insight_summary.py +++ b/src/oci/opsi/models/em_managed_external_exadata_insight_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .exadata_insight_summary import ExadataInsightSummary diff --git a/src/oci/opsi/models/em_managed_external_host_configuration_summary.py b/src/oci/opsi/models/em_managed_external_host_configuration_summary.py index 6c6440a2a7..abef451350 100644 --- a/src/oci/opsi/models/em_managed_external_host_configuration_summary.py +++ b/src/oci/opsi/models/em_managed_external_host_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_configuration_summary import HostConfigurationSummary @@ -38,7 +38,7 @@ def __init__(self, **kwargs): :param platform_type: The value to assign to the platform_type property of this EmManagedExternalHostConfigurationSummary. - Allowed values for this property are: "LINUX" + Allowed values for this property are: "LINUX", "SOLARIS", "SUNOS" :type platform_type: str :param platform_version: diff --git a/src/oci/opsi/models/em_managed_external_host_insight.py b/src/oci/opsi/models/em_managed_external_host_insight.py index 628254a586..88b9345b7d 100644 --- a/src/oci/opsi/models/em_managed_external_host_insight.py +++ b/src/oci/opsi/models/em_managed_external_host_insight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_insight import HostInsight @@ -17,6 +17,14 @@ class EmManagedExternalHostInsight(HostInsight): #: This constant has a value of "LINUX" PLATFORM_TYPE_LINUX = "LINUX" + #: A constant which can be used with the platform_type property of a EmManagedExternalHostInsight. + #: This constant has a value of "SOLARIS" + PLATFORM_TYPE_SOLARIS = "SOLARIS" + + #: A constant which can be used with the platform_type property of a EmManagedExternalHostInsight. + #: This constant has a value of "SUNOS" + PLATFORM_TYPE_SUNOS = "SUNOS" + def __init__(self, **kwargs): """ Initializes a new EmManagedExternalHostInsight object with values from keyword arguments. The default value of the :py:attr:`~oci.opsi.models.EmManagedExternalHostInsight.entity_source` attribute @@ -115,7 +123,7 @@ def __init__(self, **kwargs): :param platform_type: The value to assign to the platform_type property of this EmManagedExternalHostInsight. - Allowed values for this property are: "LINUX", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "LINUX", "SOLARIS", "SUNOS", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type platform_type: str @@ -364,8 +372,10 @@ def platform_type(self): """ Gets the platform_type of this EmManagedExternalHostInsight. Platform type. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. - Allowed values for this property are: "LINUX", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "LINUX", "SOLARIS", "SUNOS", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -379,12 +389,14 @@ def platform_type(self, platform_type): """ Sets the platform_type of this EmManagedExternalHostInsight. Platform type. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. :param platform_type: The platform_type of this EmManagedExternalHostInsight. :type: str """ - allowed_values = ["LINUX"] + allowed_values = ["LINUX", "SOLARIS", "SUNOS"] if not value_allowed_none_or_none_sentinel(platform_type, allowed_values): platform_type = 'UNKNOWN_ENUM_VALUE' self._platform_type = platform_type diff --git a/src/oci/opsi/models/em_managed_external_host_insight_summary.py b/src/oci/opsi/models/em_managed_external_host_insight_summary.py index d4e8b65994..b2e4d4ac71 100644 --- a/src/oci/opsi/models/em_managed_external_host_insight_summary.py +++ b/src/oci/opsi/models/em_managed_external_host_insight_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_insight_summary import HostInsightSummary @@ -17,6 +17,14 @@ class EmManagedExternalHostInsightSummary(HostInsightSummary): #: This constant has a value of "LINUX" PLATFORM_TYPE_LINUX = "LINUX" + #: A constant which can be used with the platform_type property of a EmManagedExternalHostInsightSummary. + #: This constant has a value of "SOLARIS" + PLATFORM_TYPE_SOLARIS = "SOLARIS" + + #: A constant which can be used with the platform_type property of a EmManagedExternalHostInsightSummary. + #: This constant has a value of "SUNOS" + PLATFORM_TYPE_SUNOS = "SUNOS" + def __init__(self, **kwargs): """ Initializes a new EmManagedExternalHostInsightSummary object with values from keyword arguments. The default value of the :py:attr:`~oci.opsi.models.EmManagedExternalHostInsightSummary.entity_source` attribute @@ -115,7 +123,7 @@ def __init__(self, **kwargs): :param platform_type: The value to assign to the platform_type property of this EmManagedExternalHostInsightSummary. - Allowed values for this property are: "LINUX", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "LINUX", "SOLARIS", "SUNOS", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type platform_type: str @@ -350,8 +358,10 @@ def platform_type(self): """ Gets the platform_type of this EmManagedExternalHostInsightSummary. Platform type. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. - Allowed values for this property are: "LINUX", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "LINUX", "SOLARIS", "SUNOS", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -365,12 +375,14 @@ def platform_type(self, platform_type): """ Sets the platform_type of this EmManagedExternalHostInsightSummary. Platform type. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. :param platform_type: The platform_type of this EmManagedExternalHostInsightSummary. :type: str """ - allowed_values = ["LINUX"] + allowed_values = ["LINUX", "SOLARIS", "SUNOS"] if not value_allowed_none_or_none_sentinel(platform_type, allowed_values): platform_type = 'UNKNOWN_ENUM_VALUE' self._platform_type = platform_type diff --git a/src/oci/opsi/models/enable_database_insight_details.py b/src/oci/opsi/models/enable_database_insight_details.py index 418e07c5f4..83f425214f 100644 --- a/src/oci/opsi/models/enable_database_insight_details.py +++ b/src/oci/opsi/models/enable_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/enable_em_managed_external_database_insight_details.py b/src/oci/opsi/models/enable_em_managed_external_database_insight_details.py index f110f70106..e5ecc081cc 100644 --- a/src/oci/opsi/models/enable_em_managed_external_database_insight_details.py +++ b/src/oci/opsi/models/enable_em_managed_external_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .enable_database_insight_details import EnableDatabaseInsightDetails diff --git a/src/oci/opsi/models/enable_em_managed_external_exadata_insight_details.py b/src/oci/opsi/models/enable_em_managed_external_exadata_insight_details.py index 24a7861fd1..391858b52d 100644 --- a/src/oci/opsi/models/enable_em_managed_external_exadata_insight_details.py +++ b/src/oci/opsi/models/enable_em_managed_external_exadata_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .enable_exadata_insight_details import EnableExadataInsightDetails diff --git a/src/oci/opsi/models/enable_em_managed_external_host_insight_details.py b/src/oci/opsi/models/enable_em_managed_external_host_insight_details.py index 3b1e99ccfa..c85d6c2b6d 100644 --- a/src/oci/opsi/models/enable_em_managed_external_host_insight_details.py +++ b/src/oci/opsi/models/enable_em_managed_external_host_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .enable_host_insight_details import EnableHostInsightDetails diff --git a/src/oci/opsi/models/enable_exadata_insight_details.py b/src/oci/opsi/models/enable_exadata_insight_details.py index 0540e2bdb0..40fecb48c4 100644 --- a/src/oci/opsi/models/enable_exadata_insight_details.py +++ b/src/oci/opsi/models/enable_exadata_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/enable_host_insight_details.py b/src/oci/opsi/models/enable_host_insight_details.py index 7a3e9e9fdc..81042fd9e1 100644 --- a/src/oci/opsi/models/enable_host_insight_details.py +++ b/src/oci/opsi/models/enable_host_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/enable_macs_managed_external_host_insight_details.py b/src/oci/opsi/models/enable_macs_managed_external_host_insight_details.py index 59cfc15e2b..0d14d6b1ad 100644 --- a/src/oci/opsi/models/enable_macs_managed_external_host_insight_details.py +++ b/src/oci/opsi/models/enable_macs_managed_external_host_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .enable_host_insight_details import EnableHostInsightDetails diff --git a/src/oci/opsi/models/enterprise_manager_bridge.py b/src/oci/opsi/models/enterprise_manager_bridge.py index 6ad2619c67..eae8a457af 100644 --- a/src/oci/opsi/models/enterprise_manager_bridge.py +++ b/src/oci/opsi/models/enterprise_manager_bridge.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/enterprise_manager_bridge_collection.py b/src/oci/opsi/models/enterprise_manager_bridge_collection.py index 0613b6ba3e..430cb0d939 100644 --- a/src/oci/opsi/models/enterprise_manager_bridge_collection.py +++ b/src/oci/opsi/models/enterprise_manager_bridge_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/enterprise_manager_bridge_summary.py b/src/oci/opsi/models/enterprise_manager_bridge_summary.py index 490fa35575..4a31d8b574 100644 --- a/src/oci/opsi/models/enterprise_manager_bridge_summary.py +++ b/src/oci/opsi/models/enterprise_manager_bridge_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/enterprise_manager_bridges.py b/src/oci/opsi/models/enterprise_manager_bridges.py index b4410ba1da..d3ddc796b7 100644 --- a/src/oci/opsi/models/enterprise_manager_bridges.py +++ b/src/oci/opsi/models/enterprise_manager_bridges.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/exadata_configuration_collection.py b/src/oci/opsi/models/exadata_configuration_collection.py index 585a7c0ba2..4d87c085b8 100644 --- a/src/oci/opsi/models/exadata_configuration_collection.py +++ b/src/oci/opsi/models/exadata_configuration_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/exadata_configuration_summary.py b/src/oci/opsi/models/exadata_configuration_summary.py index ee974043a7..e22d9d83cf 100644 --- a/src/oci/opsi/models/exadata_configuration_summary.py +++ b/src/oci/opsi/models/exadata_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/exadata_database_machine_configuration_summary.py b/src/oci/opsi/models/exadata_database_machine_configuration_summary.py index c4e1ec96e0..68e4366504 100644 --- a/src/oci/opsi/models/exadata_database_machine_configuration_summary.py +++ b/src/oci/opsi/models/exadata_database_machine_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .exadata_configuration_summary import ExadataConfigurationSummary diff --git a/src/oci/opsi/models/exadata_database_statistics_summary.py b/src/oci/opsi/models/exadata_database_statistics_summary.py index d5b1f2d5a2..dd2388f9aa 100644 --- a/src/oci/opsi/models/exadata_database_statistics_summary.py +++ b/src/oci/opsi/models/exadata_database_statistics_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .exadata_insight_resource_statistics_aggregation import ExadataInsightResourceStatisticsAggregation diff --git a/src/oci/opsi/models/exadata_details.py b/src/oci/opsi/models/exadata_details.py index 401cdebfc6..f9f53eda7c 100644 --- a/src/oci/opsi/models/exadata_details.py +++ b/src/oci/opsi/models/exadata_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/exadata_diskgroup_statistics_summary.py b/src/oci/opsi/models/exadata_diskgroup_statistics_summary.py index 5399f41ccc..af7e91429e 100644 --- a/src/oci/opsi/models/exadata_diskgroup_statistics_summary.py +++ b/src/oci/opsi/models/exadata_diskgroup_statistics_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .exadata_insight_resource_statistics_aggregation import ExadataInsightResourceStatisticsAggregation diff --git a/src/oci/opsi/models/exadata_host_statistics_summary.py b/src/oci/opsi/models/exadata_host_statistics_summary.py index 6c15b64dd8..44bacc8308 100644 --- a/src/oci/opsi/models/exadata_host_statistics_summary.py +++ b/src/oci/opsi/models/exadata_host_statistics_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .exadata_insight_resource_statistics_aggregation import ExadataInsightResourceStatisticsAggregation diff --git a/src/oci/opsi/models/exadata_insight.py b/src/oci/opsi/models/exadata_insight.py index 7a1b5796ff..e8d0cdb3ad 100644 --- a/src/oci/opsi/models/exadata_insight.py +++ b/src/oci/opsi/models/exadata_insight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/exadata_insight_resource_capacity_trend_aggregation.py b/src/oci/opsi/models/exadata_insight_resource_capacity_trend_aggregation.py index 7041c25e61..b2452bf31d 100644 --- a/src/oci/opsi/models/exadata_insight_resource_capacity_trend_aggregation.py +++ b/src/oci/opsi/models/exadata_insight_resource_capacity_trend_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/exadata_insight_resource_capacity_trend_summary.py b/src/oci/opsi/models/exadata_insight_resource_capacity_trend_summary.py index c8ad4185cb..cdf31cb1f6 100644 --- a/src/oci/opsi/models/exadata_insight_resource_capacity_trend_summary.py +++ b/src/oci/opsi/models/exadata_insight_resource_capacity_trend_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/exadata_insight_resource_forecast_trend_summary.py b/src/oci/opsi/models/exadata_insight_resource_forecast_trend_summary.py index d5fb076ebd..e87dbc0458 100644 --- a/src/oci/opsi/models/exadata_insight_resource_forecast_trend_summary.py +++ b/src/oci/opsi/models/exadata_insight_resource_forecast_trend_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/exadata_insight_resource_insight_utilization_item.py b/src/oci/opsi/models/exadata_insight_resource_insight_utilization_item.py index d4dcac0437..7b46f6c797 100644 --- a/src/oci/opsi/models/exadata_insight_resource_insight_utilization_item.py +++ b/src/oci/opsi/models/exadata_insight_resource_insight_utilization_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/exadata_insight_resource_statistics.py b/src/oci/opsi/models/exadata_insight_resource_statistics.py index d8c53994bb..e9c8a3539e 100644 --- a/src/oci/opsi/models/exadata_insight_resource_statistics.py +++ b/src/oci/opsi/models/exadata_insight_resource_statistics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/exadata_insight_resource_statistics_aggregation.py b/src/oci/opsi/models/exadata_insight_resource_statistics_aggregation.py index f0850ec46b..471146bb6a 100644 --- a/src/oci/opsi/models/exadata_insight_resource_statistics_aggregation.py +++ b/src/oci/opsi/models/exadata_insight_resource_statistics_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/exadata_insight_summary.py b/src/oci/opsi/models/exadata_insight_summary.py index 398d2756bc..97c2787671 100644 --- a/src/oci/opsi/models/exadata_insight_summary.py +++ b/src/oci/opsi/models/exadata_insight_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/exadata_insight_summary_collection.py b/src/oci/opsi/models/exadata_insight_summary_collection.py index 73fbef616b..ea4097bde9 100644 --- a/src/oci/opsi/models/exadata_insight_summary_collection.py +++ b/src/oci/opsi/models/exadata_insight_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/exadata_insights.py b/src/oci/opsi/models/exadata_insights.py index 43dfe84405..717099c8fb 100644 --- a/src/oci/opsi/models/exadata_insights.py +++ b/src/oci/opsi/models/exadata_insights.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/exadata_member_collection.py b/src/oci/opsi/models/exadata_member_collection.py index 9878f58b5a..fa737b14fb 100644 --- a/src/oci/opsi/models/exadata_member_collection.py +++ b/src/oci/opsi/models/exadata_member_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/exadata_member_summary.py b/src/oci/opsi/models/exadata_member_summary.py index 4bf50dd7bd..76dd57cf02 100644 --- a/src/oci/opsi/models/exadata_member_summary.py +++ b/src/oci/opsi/models/exadata_member_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/exadata_storage_server_statistics_summary.py b/src/oci/opsi/models/exadata_storage_server_statistics_summary.py index b96a65217c..d4a5ee66b1 100644 --- a/src/oci/opsi/models/exadata_storage_server_statistics_summary.py +++ b/src/oci/opsi/models/exadata_storage_server_statistics_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .exadata_insight_resource_statistics_aggregation import ExadataInsightResourceStatisticsAggregation diff --git a/src/oci/opsi/models/historical_data_item.py b/src/oci/opsi/models/historical_data_item.py index 9c9d739cf2..e2c6a21836 100644 --- a/src/oci/opsi/models/historical_data_item.py +++ b/src/oci/opsi/models/historical_data_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/host_configuration_collection.py b/src/oci/opsi/models/host_configuration_collection.py index 8ce711b461..2dd9d48433 100644 --- a/src/oci/opsi/models/host_configuration_collection.py +++ b/src/oci/opsi/models/host_configuration_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/host_configuration_metric_group.py b/src/oci/opsi/models/host_configuration_metric_group.py index c40aac877b..981431b882 100644 --- a/src/oci/opsi/models/host_configuration_metric_group.py +++ b/src/oci/opsi/models/host_configuration_metric_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/host_configuration_summary.py b/src/oci/opsi/models/host_configuration_summary.py index e8d570012d..61d2c3d6ea 100644 --- a/src/oci/opsi/models/host_configuration_summary.py +++ b/src/oci/opsi/models/host_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -25,6 +25,14 @@ class HostConfigurationSummary(object): #: This constant has a value of "LINUX" PLATFORM_TYPE_LINUX = "LINUX" + #: A constant which can be used with the platform_type property of a HostConfigurationSummary. + #: This constant has a value of "SOLARIS" + PLATFORM_TYPE_SOLARIS = "SOLARIS" + + #: A constant which can be used with the platform_type property of a HostConfigurationSummary. + #: This constant has a value of "SUNOS" + PLATFORM_TYPE_SUNOS = "SUNOS" + def __init__(self, **kwargs): """ Initializes a new HostConfigurationSummary object with values from keyword arguments. This class has the following subclasses and if you are using this class as input @@ -55,7 +63,7 @@ def __init__(self, **kwargs): :param platform_type: The value to assign to the platform_type property of this HostConfigurationSummary. - Allowed values for this property are: "LINUX", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "LINUX", "SOLARIS", "SUNOS", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type platform_type: str @@ -318,8 +326,10 @@ def platform_type(self): """ **[Required]** Gets the platform_type of this HostConfigurationSummary. Platform type. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. - Allowed values for this property are: "LINUX", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "LINUX", "SOLARIS", "SUNOS", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -333,12 +343,14 @@ def platform_type(self, platform_type): """ Sets the platform_type of this HostConfigurationSummary. Platform type. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. :param platform_type: The platform_type of this HostConfigurationSummary. :type: str """ - allowed_values = ["LINUX"] + allowed_values = ["LINUX", "SOLARIS", "SUNOS"] if not value_allowed_none_or_none_sentinel(platform_type, allowed_values): platform_type = 'UNKNOWN_ENUM_VALUE' self._platform_type = platform_type diff --git a/src/oci/opsi/models/host_cpu_hardware_configuration.py b/src/oci/opsi/models/host_cpu_hardware_configuration.py index 204d579f6d..aa7ad063e8 100644 --- a/src/oci/opsi/models/host_cpu_hardware_configuration.py +++ b/src/oci/opsi/models/host_cpu_hardware_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_configuration_metric_group import HostConfigurationMetricGroup diff --git a/src/oci/opsi/models/host_cpu_statistics.py b/src/oci/opsi/models/host_cpu_statistics.py index 9f119afc7d..e873c78c6a 100644 --- a/src/oci/opsi/models/host_cpu_statistics.py +++ b/src/oci/opsi/models/host_cpu_statistics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_resource_statistics import HostResourceStatistics diff --git a/src/oci/opsi/models/host_cpu_usage.py b/src/oci/opsi/models/host_cpu_usage.py index 3e4773ac09..028952099b 100644 --- a/src/oci/opsi/models/host_cpu_usage.py +++ b/src/oci/opsi/models/host_cpu_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_performance_metric_group import HostPerformanceMetricGroup diff --git a/src/oci/opsi/models/host_details.py b/src/oci/opsi/models/host_details.py index ae87cce75b..5aa7ca22c9 100644 --- a/src/oci/opsi/models/host_details.py +++ b/src/oci/opsi/models/host_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. @@ -17,6 +17,14 @@ class HostDetails(object): #: This constant has a value of "LINUX" PLATFORM_TYPE_LINUX = "LINUX" + #: A constant which can be used with the platform_type property of a HostDetails. + #: This constant has a value of "SOLARIS" + PLATFORM_TYPE_SOLARIS = "SOLARIS" + + #: A constant which can be used with the platform_type property of a HostDetails. + #: This constant has a value of "SUNOS" + PLATFORM_TYPE_SUNOS = "SUNOS" + def __init__(self, **kwargs): """ Initializes a new HostDetails object with values from keyword arguments. @@ -40,7 +48,7 @@ def __init__(self, **kwargs): :param platform_type: The value to assign to the platform_type property of this HostDetails. - Allowed values for this property are: "LINUX", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "LINUX", "SOLARIS", "SUNOS", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type platform_type: str @@ -183,8 +191,10 @@ def platform_type(self): """ **[Required]** Gets the platform_type of this HostDetails. Platform type. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. - Allowed values for this property are: "LINUX", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "LINUX", "SOLARIS", "SUNOS", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -198,12 +208,14 @@ def platform_type(self, platform_type): """ Sets the platform_type of this HostDetails. Platform type. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. :param platform_type: The platform_type of this HostDetails. :type: str """ - allowed_values = ["LINUX"] + allowed_values = ["LINUX", "SOLARIS", "SUNOS"] if not value_allowed_none_or_none_sentinel(platform_type, allowed_values): platform_type = 'UNKNOWN_ENUM_VALUE' self._platform_type = platform_type diff --git a/src/oci/opsi/models/host_entities.py b/src/oci/opsi/models/host_entities.py index 259f668cb2..f35b8558e1 100644 --- a/src/oci/opsi/models/host_entities.py +++ b/src/oci/opsi/models/host_entities.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_configuration_metric_group import HostConfigurationMetricGroup diff --git a/src/oci/opsi/models/host_hardware_configuration.py b/src/oci/opsi/models/host_hardware_configuration.py index c768e6f8a5..e94e5a3bf5 100644 --- a/src/oci/opsi/models/host_hardware_configuration.py +++ b/src/oci/opsi/models/host_hardware_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_configuration_metric_group import HostConfigurationMetricGroup diff --git a/src/oci/opsi/models/host_importable_agent_entity_summary.py b/src/oci/opsi/models/host_importable_agent_entity_summary.py index c58b7c5658..e4dd56d7b6 100644 --- a/src/oci/opsi/models/host_importable_agent_entity_summary.py +++ b/src/oci/opsi/models/host_importable_agent_entity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .importable_agent_entity_summary import ImportableAgentEntitySummary @@ -17,6 +17,14 @@ class HostImportableAgentEntitySummary(ImportableAgentEntitySummary): #: This constant has a value of "LINUX" PLATFORM_TYPE_LINUX = "LINUX" + #: A constant which can be used with the platform_type property of a HostImportableAgentEntitySummary. + #: This constant has a value of "SOLARIS" + PLATFORM_TYPE_SOLARIS = "SOLARIS" + + #: A constant which can be used with the platform_type property of a HostImportableAgentEntitySummary. + #: This constant has a value of "SUNOS" + PLATFORM_TYPE_SUNOS = "SUNOS" + def __init__(self, **kwargs): """ Initializes a new HostImportableAgentEntitySummary object with values from keyword arguments. The default value of the :py:attr:`~oci.opsi.models.HostImportableAgentEntitySummary.entity_source` attribute @@ -43,7 +51,7 @@ def __init__(self, **kwargs): :param platform_type: The value to assign to the platform_type property of this HostImportableAgentEntitySummary. - Allowed values for this property are: "LINUX", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "LINUX", "SOLARIS", "SUNOS", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type platform_type: str @@ -100,8 +108,10 @@ def platform_type(self): """ **[Required]** Gets the platform_type of this HostImportableAgentEntitySummary. Platform type. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. - Allowed values for this property are: "LINUX", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "LINUX", "SOLARIS", "SUNOS", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -115,12 +125,14 @@ def platform_type(self, platform_type): """ Sets the platform_type of this HostImportableAgentEntitySummary. Platform type. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. :param platform_type: The platform_type of this HostImportableAgentEntitySummary. :type: str """ - allowed_values = ["LINUX"] + allowed_values = ["LINUX", "SOLARIS", "SUNOS"] if not value_allowed_none_or_none_sentinel(platform_type, allowed_values): platform_type = 'UNKNOWN_ENUM_VALUE' self._platform_type = platform_type diff --git a/src/oci/opsi/models/host_insight.py b/src/oci/opsi/models/host_insight.py index 9bcc5e7111..7c00e72058 100644 --- a/src/oci/opsi/models/host_insight.py +++ b/src/oci/opsi/models/host_insight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/host_insight_resource_statistics_aggregation.py b/src/oci/opsi/models/host_insight_resource_statistics_aggregation.py index d0474fcea2..af506177cf 100644 --- a/src/oci/opsi/models/host_insight_resource_statistics_aggregation.py +++ b/src/oci/opsi/models/host_insight_resource_statistics_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/host_insight_summary.py b/src/oci/opsi/models/host_insight_summary.py index dd1871ea30..2fd9a2a3d7 100644 --- a/src/oci/opsi/models/host_insight_summary.py +++ b/src/oci/opsi/models/host_insight_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/host_insight_summary_collection.py b/src/oci/opsi/models/host_insight_summary_collection.py index e0296a1f43..233b67b889 100644 --- a/src/oci/opsi/models/host_insight_summary_collection.py +++ b/src/oci/opsi/models/host_insight_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/host_insights.py b/src/oci/opsi/models/host_insights.py index 07a6b2b768..445e28d02e 100644 --- a/src/oci/opsi/models/host_insights.py +++ b/src/oci/opsi/models/host_insights.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/host_instance_map.py b/src/oci/opsi/models/host_instance_map.py index 062d84bdb8..796b367c30 100644 --- a/src/oci/opsi/models/host_instance_map.py +++ b/src/oci/opsi/models/host_instance_map.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/host_memory_configuration.py b/src/oci/opsi/models/host_memory_configuration.py index c12ec562e9..9197a0a4a1 100644 --- a/src/oci/opsi/models/host_memory_configuration.py +++ b/src/oci/opsi/models/host_memory_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_configuration_metric_group import HostConfigurationMetricGroup diff --git a/src/oci/opsi/models/host_memory_statistics.py b/src/oci/opsi/models/host_memory_statistics.py index 88ff6f0863..73c5626a7a 100644 --- a/src/oci/opsi/models/host_memory_statistics.py +++ b/src/oci/opsi/models/host_memory_statistics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_resource_statistics import HostResourceStatistics diff --git a/src/oci/opsi/models/host_memory_usage.py b/src/oci/opsi/models/host_memory_usage.py index 968a59fce7..54cab00ec1 100644 --- a/src/oci/opsi/models/host_memory_usage.py +++ b/src/oci/opsi/models/host_memory_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_performance_metric_group import HostPerformanceMetricGroup diff --git a/src/oci/opsi/models/host_network_activity_summary.py b/src/oci/opsi/models/host_network_activity_summary.py index ab99a5f42d..c5f5c32020 100644 --- a/src/oci/opsi/models/host_network_activity_summary.py +++ b/src/oci/opsi/models/host_network_activity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_performance_metric_group import HostPerformanceMetricGroup diff --git a/src/oci/opsi/models/host_network_configuration.py b/src/oci/opsi/models/host_network_configuration.py index 9a17b84312..278e84f37e 100644 --- a/src/oci/opsi/models/host_network_configuration.py +++ b/src/oci/opsi/models/host_network_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_configuration_metric_group import HostConfigurationMetricGroup diff --git a/src/oci/opsi/models/host_performance_metric_group.py b/src/oci/opsi/models/host_performance_metric_group.py index 0a132ac547..c2b1c98e08 100644 --- a/src/oci/opsi/models/host_performance_metric_group.py +++ b/src/oci/opsi/models/host_performance_metric_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/host_product.py b/src/oci/opsi/models/host_product.py index 345be824a9..8f8e907316 100644 --- a/src/oci/opsi/models/host_product.py +++ b/src/oci/opsi/models/host_product.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_configuration_metric_group import HostConfigurationMetricGroup diff --git a/src/oci/opsi/models/host_resource_allocation.py b/src/oci/opsi/models/host_resource_allocation.py index 55cc96a08d..4a6ca11622 100644 --- a/src/oci/opsi/models/host_resource_allocation.py +++ b/src/oci/opsi/models/host_resource_allocation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_configuration_metric_group import HostConfigurationMetricGroup diff --git a/src/oci/opsi/models/host_resource_capacity_trend_aggregation.py b/src/oci/opsi/models/host_resource_capacity_trend_aggregation.py index 64498db008..ae0124ec12 100644 --- a/src/oci/opsi/models/host_resource_capacity_trend_aggregation.py +++ b/src/oci/opsi/models/host_resource_capacity_trend_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/host_resource_statistics.py b/src/oci/opsi/models/host_resource_statistics.py index c4f1753910..59846d1964 100644 --- a/src/oci/opsi/models/host_resource_statistics.py +++ b/src/oci/opsi/models/host_resource_statistics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/hosted_entity_collection.py b/src/oci/opsi/models/hosted_entity_collection.py index a8fdecc60d..6ed792667f 100644 --- a/src/oci/opsi/models/hosted_entity_collection.py +++ b/src/oci/opsi/models/hosted_entity_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/hosted_entity_summary.py b/src/oci/opsi/models/hosted_entity_summary.py index ed618e4ebe..1db0531e2e 100644 --- a/src/oci/opsi/models/hosted_entity_summary.py +++ b/src/oci/opsi/models/hosted_entity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/importable_agent_entity_summary.py b/src/oci/opsi/models/importable_agent_entity_summary.py index decf0173e7..5c7bc65af9 100644 --- a/src/oci/opsi/models/importable_agent_entity_summary.py +++ b/src/oci/opsi/models/importable_agent_entity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/importable_agent_entity_summary_collection.py b/src/oci/opsi/models/importable_agent_entity_summary_collection.py index c5803f8976..a954e6c6f5 100644 --- a/src/oci/opsi/models/importable_agent_entity_summary_collection.py +++ b/src/oci/opsi/models/importable_agent_entity_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/importable_enterprise_manager_entity.py b/src/oci/opsi/models/importable_enterprise_manager_entity.py index 903d81df11..933e51144f 100644 --- a/src/oci/opsi/models/importable_enterprise_manager_entity.py +++ b/src/oci/opsi/models/importable_enterprise_manager_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/importable_enterprise_manager_entity_collection.py b/src/oci/opsi/models/importable_enterprise_manager_entity_collection.py index a211b5fe8d..fa132703d7 100644 --- a/src/oci/opsi/models/importable_enterprise_manager_entity_collection.py +++ b/src/oci/opsi/models/importable_enterprise_manager_entity_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/ingest_database_configuration_details.py b/src/oci/opsi/models/ingest_database_configuration_details.py index be52cab055..9166a47ad0 100644 --- a/src/oci/opsi/models/ingest_database_configuration_details.py +++ b/src/oci/opsi/models/ingest_database_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/ingest_database_configuration_response_details.py b/src/oci/opsi/models/ingest_database_configuration_response_details.py index e2d808bad3..5f3da48a25 100644 --- a/src/oci/opsi/models/ingest_database_configuration_response_details.py +++ b/src/oci/opsi/models/ingest_database_configuration_response_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/ingest_host_configuration_details.py b/src/oci/opsi/models/ingest_host_configuration_details.py index bfebe7997a..a7fac644aa 100644 --- a/src/oci/opsi/models/ingest_host_configuration_details.py +++ b/src/oci/opsi/models/ingest_host_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/ingest_host_configuration_response_details.py b/src/oci/opsi/models/ingest_host_configuration_response_details.py index 56cdcf0e8a..60846625e6 100644 --- a/src/oci/opsi/models/ingest_host_configuration_response_details.py +++ b/src/oci/opsi/models/ingest_host_configuration_response_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/ingest_host_metrics_details.py b/src/oci/opsi/models/ingest_host_metrics_details.py index 27fc1a95e2..fe3f7605b0 100644 --- a/src/oci/opsi/models/ingest_host_metrics_details.py +++ b/src/oci/opsi/models/ingest_host_metrics_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/ingest_host_metrics_response_details.py b/src/oci/opsi/models/ingest_host_metrics_response_details.py index ef71149505..5b3819d740 100644 --- a/src/oci/opsi/models/ingest_host_metrics_response_details.py +++ b/src/oci/opsi/models/ingest_host_metrics_response_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/ingest_sql_bucket_details.py b/src/oci/opsi/models/ingest_sql_bucket_details.py index 174de8f6f4..d1d93ffc32 100644 --- a/src/oci/opsi/models/ingest_sql_bucket_details.py +++ b/src/oci/opsi/models/ingest_sql_bucket_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/ingest_sql_bucket_response_details.py b/src/oci/opsi/models/ingest_sql_bucket_response_details.py index 780e203861..000fef41ba 100644 --- a/src/oci/opsi/models/ingest_sql_bucket_response_details.py +++ b/src/oci/opsi/models/ingest_sql_bucket_response_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/ingest_sql_plan_lines_details.py b/src/oci/opsi/models/ingest_sql_plan_lines_details.py index 5891fdbaf9..4ecb948ff0 100644 --- a/src/oci/opsi/models/ingest_sql_plan_lines_details.py +++ b/src/oci/opsi/models/ingest_sql_plan_lines_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/ingest_sql_plan_lines_response_details.py b/src/oci/opsi/models/ingest_sql_plan_lines_response_details.py index 7ebc08b0c7..71f366aece 100644 --- a/src/oci/opsi/models/ingest_sql_plan_lines_response_details.py +++ b/src/oci/opsi/models/ingest_sql_plan_lines_response_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/ingest_sql_stats_details.py b/src/oci/opsi/models/ingest_sql_stats_details.py index 76e7fc910d..11a8b246c1 100644 --- a/src/oci/opsi/models/ingest_sql_stats_details.py +++ b/src/oci/opsi/models/ingest_sql_stats_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/ingest_sql_stats_response_details.py b/src/oci/opsi/models/ingest_sql_stats_response_details.py index 48d3a929b3..fe5fe2ff49 100644 --- a/src/oci/opsi/models/ingest_sql_stats_response_details.py +++ b/src/oci/opsi/models/ingest_sql_stats_response_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/ingest_sql_text_details.py b/src/oci/opsi/models/ingest_sql_text_details.py index a5521c3f3b..f0cc14226d 100644 --- a/src/oci/opsi/models/ingest_sql_text_details.py +++ b/src/oci/opsi/models/ingest_sql_text_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/ingest_sql_text_response_details.py b/src/oci/opsi/models/ingest_sql_text_response_details.py index af518d6437..2c8a905965 100644 --- a/src/oci/opsi/models/ingest_sql_text_response_details.py +++ b/src/oci/opsi/models/ingest_sql_text_response_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/instance_metrics.py b/src/oci/opsi/models/instance_metrics.py index 6e1633f2c4..a076b8ec7b 100644 --- a/src/oci/opsi/models/instance_metrics.py +++ b/src/oci/opsi/models/instance_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/macs_managed_external_database_configuration_summary.py b/src/oci/opsi/models/macs_managed_external_database_configuration_summary.py index 2230398591..cbdbd61ad0 100644 --- a/src/oci/opsi/models/macs_managed_external_database_configuration_summary.py +++ b/src/oci/opsi/models/macs_managed_external_database_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_configuration_summary import DatabaseConfigurationSummary diff --git a/src/oci/opsi/models/macs_managed_external_database_insight.py b/src/oci/opsi/models/macs_managed_external_database_insight.py index 3928cacef6..c1c5364f95 100644 --- a/src/oci/opsi/models/macs_managed_external_database_insight.py +++ b/src/oci/opsi/models/macs_managed_external_database_insight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_insight import DatabaseInsight diff --git a/src/oci/opsi/models/macs_managed_external_database_insight_summary.py b/src/oci/opsi/models/macs_managed_external_database_insight_summary.py index 0ececa2631..8bcb63580a 100644 --- a/src/oci/opsi/models/macs_managed_external_database_insight_summary.py +++ b/src/oci/opsi/models/macs_managed_external_database_insight_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .database_insight_summary import DatabaseInsightSummary diff --git a/src/oci/opsi/models/macs_managed_external_host_configuration_summary.py b/src/oci/opsi/models/macs_managed_external_host_configuration_summary.py index 588ca29f00..413ff3c629 100644 --- a/src/oci/opsi/models/macs_managed_external_host_configuration_summary.py +++ b/src/oci/opsi/models/macs_managed_external_host_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_configuration_summary import HostConfigurationSummary @@ -38,7 +38,7 @@ def __init__(self, **kwargs): :param platform_type: The value to assign to the platform_type property of this MacsManagedExternalHostConfigurationSummary. - Allowed values for this property are: "LINUX" + Allowed values for this property are: "LINUX", "SOLARIS", "SUNOS" :type platform_type: str :param platform_version: diff --git a/src/oci/opsi/models/macs_managed_external_host_insight.py b/src/oci/opsi/models/macs_managed_external_host_insight.py index fb225ca383..42f6bd8696 100644 --- a/src/oci/opsi/models/macs_managed_external_host_insight.py +++ b/src/oci/opsi/models/macs_managed_external_host_insight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_insight import HostInsight @@ -17,6 +17,14 @@ class MacsManagedExternalHostInsight(HostInsight): #: This constant has a value of "LINUX" PLATFORM_TYPE_LINUX = "LINUX" + #: A constant which can be used with the platform_type property of a MacsManagedExternalHostInsight. + #: This constant has a value of "SOLARIS" + PLATFORM_TYPE_SOLARIS = "SOLARIS" + + #: A constant which can be used with the platform_type property of a MacsManagedExternalHostInsight. + #: This constant has a value of "SUNOS" + PLATFORM_TYPE_SUNOS = "SUNOS" + def __init__(self, **kwargs): """ Initializes a new MacsManagedExternalHostInsight object with values from keyword arguments. The default value of the :py:attr:`~oci.opsi.models.MacsManagedExternalHostInsight.entity_source` attribute @@ -99,7 +107,7 @@ def __init__(self, **kwargs): :param platform_type: The value to assign to the platform_type property of this MacsManagedExternalHostInsight. - Allowed values for this property are: "LINUX", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "LINUX", "SOLARIS", "SUNOS", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type platform_type: str @@ -230,8 +238,10 @@ def platform_type(self): """ Gets the platform_type of this MacsManagedExternalHostInsight. Platform type. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. - Allowed values for this property are: "LINUX", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "LINUX", "SOLARIS", "SUNOS", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -245,12 +255,14 @@ def platform_type(self, platform_type): """ Sets the platform_type of this MacsManagedExternalHostInsight. Platform type. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. :param platform_type: The platform_type of this MacsManagedExternalHostInsight. :type: str """ - allowed_values = ["LINUX"] + allowed_values = ["LINUX", "SOLARIS", "SUNOS"] if not value_allowed_none_or_none_sentinel(platform_type, allowed_values): platform_type = 'UNKNOWN_ENUM_VALUE' self._platform_type = platform_type diff --git a/src/oci/opsi/models/macs_managed_external_host_insight_summary.py b/src/oci/opsi/models/macs_managed_external_host_insight_summary.py index 5c22c7b8be..74e5f2474e 100644 --- a/src/oci/opsi/models/macs_managed_external_host_insight_summary.py +++ b/src/oci/opsi/models/macs_managed_external_host_insight_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_insight_summary import HostInsightSummary @@ -17,6 +17,14 @@ class MacsManagedExternalHostInsightSummary(HostInsightSummary): #: This constant has a value of "LINUX" PLATFORM_TYPE_LINUX = "LINUX" + #: A constant which can be used with the platform_type property of a MacsManagedExternalHostInsightSummary. + #: This constant has a value of "SOLARIS" + PLATFORM_TYPE_SOLARIS = "SOLARIS" + + #: A constant which can be used with the platform_type property of a MacsManagedExternalHostInsightSummary. + #: This constant has a value of "SUNOS" + PLATFORM_TYPE_SUNOS = "SUNOS" + def __init__(self, **kwargs): """ Initializes a new MacsManagedExternalHostInsightSummary object with values from keyword arguments. The default value of the :py:attr:`~oci.opsi.models.MacsManagedExternalHostInsightSummary.entity_source` attribute @@ -95,7 +103,7 @@ def __init__(self, **kwargs): :param platform_type: The value to assign to the platform_type property of this MacsManagedExternalHostInsightSummary. - Allowed values for this property are: "LINUX", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "LINUX", "SOLARIS", "SUNOS", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type platform_type: str @@ -192,8 +200,10 @@ def platform_type(self): """ Gets the platform_type of this MacsManagedExternalHostInsightSummary. Platform type. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. - Allowed values for this property are: "LINUX", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "LINUX", "SOLARIS", "SUNOS", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -207,12 +217,14 @@ def platform_type(self, platform_type): """ Sets the platform_type of this MacsManagedExternalHostInsightSummary. Platform type. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. :param platform_type: The platform_type of this MacsManagedExternalHostInsightSummary. :type: str """ - allowed_values = ["LINUX"] + allowed_values = ["LINUX", "SOLARIS", "SUNOS"] if not value_allowed_none_or_none_sentinel(platform_type, allowed_values): platform_type = 'UNKNOWN_ENUM_VALUE' self._platform_type = platform_type diff --git a/src/oci/opsi/models/operations_insights_warehouse.py b/src/oci/opsi/models/operations_insights_warehouse.py index 069f665766..ea8c1463d1 100644 --- a/src/oci/opsi/models/operations_insights_warehouse.py +++ b/src/oci/opsi/models/operations_insights_warehouse.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/operations_insights_warehouse_summary.py b/src/oci/opsi/models/operations_insights_warehouse_summary.py index 7d6867d6e8..03e97b6e5e 100644 --- a/src/oci/opsi/models/operations_insights_warehouse_summary.py +++ b/src/oci/opsi/models/operations_insights_warehouse_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/operations_insights_warehouse_summary_collection.py b/src/oci/opsi/models/operations_insights_warehouse_summary_collection.py index 202e5bec5b..d8d650fdbc 100644 --- a/src/oci/opsi/models/operations_insights_warehouse_summary_collection.py +++ b/src/oci/opsi/models/operations_insights_warehouse_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/operations_insights_warehouse_user.py b/src/oci/opsi/models/operations_insights_warehouse_user.py index 33ed466fd2..a8716dcf40 100644 --- a/src/oci/opsi/models/operations_insights_warehouse_user.py +++ b/src/oci/opsi/models/operations_insights_warehouse_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/operations_insights_warehouse_user_summary.py b/src/oci/opsi/models/operations_insights_warehouse_user_summary.py index 5654b8810d..4e6121c6b5 100644 --- a/src/oci/opsi/models/operations_insights_warehouse_user_summary.py +++ b/src/oci/opsi/models/operations_insights_warehouse_user_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/operations_insights_warehouse_user_summary_collection.py b/src/oci/opsi/models/operations_insights_warehouse_user_summary_collection.py index 3dbf50dbfc..72b24ae7ec 100644 --- a/src/oci/opsi/models/operations_insights_warehouse_user_summary_collection.py +++ b/src/oci/opsi/models/operations_insights_warehouse_user_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/operations_insights_warehouse_users.py b/src/oci/opsi/models/operations_insights_warehouse_users.py index 5bf3c97138..4396bf05a1 100644 --- a/src/oci/opsi/models/operations_insights_warehouse_users.py +++ b/src/oci/opsi/models/operations_insights_warehouse_users.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/operations_insights_warehouses.py b/src/oci/opsi/models/operations_insights_warehouses.py index 5f19d89272..d7a74555b3 100644 --- a/src/oci/opsi/models/operations_insights_warehouses.py +++ b/src/oci/opsi/models/operations_insights_warehouses.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/projected_data_item.py b/src/oci/opsi/models/projected_data_item.py index ae6856a689..cd3eee6bf8 100644 --- a/src/oci/opsi/models/projected_data_item.py +++ b/src/oci/opsi/models/projected_data_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/resource_capacity_trend_aggregation.py b/src/oci/opsi/models/resource_capacity_trend_aggregation.py index 9337e0ee49..8f4f2bff21 100644 --- a/src/oci/opsi/models/resource_capacity_trend_aggregation.py +++ b/src/oci/opsi/models/resource_capacity_trend_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/resource_insight_current_utilization.py b/src/oci/opsi/models/resource_insight_current_utilization.py index 7d201ecff9..4309d6dac7 100644 --- a/src/oci/opsi/models/resource_insight_current_utilization.py +++ b/src/oci/opsi/models/resource_insight_current_utilization.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/resource_insight_projected_utilization.py b/src/oci/opsi/models/resource_insight_projected_utilization.py index 1a32854838..4c04a04b43 100644 --- a/src/oci/opsi/models/resource_insight_projected_utilization.py +++ b/src/oci/opsi/models/resource_insight_projected_utilization.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/resource_insight_projected_utilization_item.py b/src/oci/opsi/models/resource_insight_projected_utilization_item.py index b9077fcd54..bf8d3ebdd5 100644 --- a/src/oci/opsi/models/resource_insight_projected_utilization_item.py +++ b/src/oci/opsi/models/resource_insight_projected_utilization_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/resource_statistics.py b/src/oci/opsi/models/resource_statistics.py index e386f1f298..99c25f1961 100644 --- a/src/oci/opsi/models/resource_statistics.py +++ b/src/oci/opsi/models/resource_statistics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/resource_statistics_aggregation.py b/src/oci/opsi/models/resource_statistics_aggregation.py index 2bd8711026..2eac054042 100644 --- a/src/oci/opsi/models/resource_statistics_aggregation.py +++ b/src/oci/opsi/models/resource_statistics_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/resource_usage_summary.py b/src/oci/opsi/models/resource_usage_summary.py index 43e0b9fa8c..1514bcf8e5 100644 --- a/src/oci/opsi/models/resource_usage_summary.py +++ b/src/oci/opsi/models/resource_usage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/resource_usage_trend_aggregation.py b/src/oci/opsi/models/resource_usage_trend_aggregation.py index 8f0c94f48b..f09ae40151 100644 --- a/src/oci/opsi/models/resource_usage_trend_aggregation.py +++ b/src/oci/opsi/models/resource_usage_trend_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_bucket.py b/src/oci/opsi/models/sql_bucket.py index 6660769f50..439ec7c481 100644 --- a/src/oci/opsi/models/sql_bucket.py +++ b/src/oci/opsi/models/sql_bucket.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_insight_aggregation.py b/src/oci/opsi/models/sql_insight_aggregation.py index a2e13fc6ce..da910f0664 100644 --- a/src/oci/opsi/models/sql_insight_aggregation.py +++ b/src/oci/opsi/models/sql_insight_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_insight_aggregation_collection.py b/src/oci/opsi/models/sql_insight_aggregation_collection.py index 0a81c4cf62..ee2c86425f 100644 --- a/src/oci/opsi/models/sql_insight_aggregation_collection.py +++ b/src/oci/opsi/models/sql_insight_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_insight_thresholds.py b/src/oci/opsi/models/sql_insight_thresholds.py index d07759d34c..1697ea898b 100644 --- a/src/oci/opsi/models/sql_insight_thresholds.py +++ b/src/oci/opsi/models/sql_insight_thresholds.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_inventory.py b/src/oci/opsi/models/sql_inventory.py index 57045fc3c3..e500da7592 100644 --- a/src/oci/opsi/models/sql_inventory.py +++ b/src/oci/opsi/models/sql_inventory.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_plan_collection.py b/src/oci/opsi/models/sql_plan_collection.py index e2aed11fc3..597776aebe 100644 --- a/src/oci/opsi/models/sql_plan_collection.py +++ b/src/oci/opsi/models/sql_plan_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_plan_insight_aggregation.py b/src/oci/opsi/models/sql_plan_insight_aggregation.py index c21a01b27a..c9efe8b621 100644 --- a/src/oci/opsi/models/sql_plan_insight_aggregation.py +++ b/src/oci/opsi/models/sql_plan_insight_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_plan_insight_aggregation_collection.py b/src/oci/opsi/models/sql_plan_insight_aggregation_collection.py index c81b019134..f4c046b9d1 100644 --- a/src/oci/opsi/models/sql_plan_insight_aggregation_collection.py +++ b/src/oci/opsi/models/sql_plan_insight_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_plan_insights.py b/src/oci/opsi/models/sql_plan_insights.py index f5615ceec2..f4152b6928 100644 --- a/src/oci/opsi/models/sql_plan_insights.py +++ b/src/oci/opsi/models/sql_plan_insights.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_plan_line.py b/src/oci/opsi/models/sql_plan_line.py index dd27324c8d..8f2941909d 100644 --- a/src/oci/opsi/models/sql_plan_line.py +++ b/src/oci/opsi/models/sql_plan_line.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_plan_summary.py b/src/oci/opsi/models/sql_plan_summary.py index f1c01fda0b..315cfa7d51 100644 --- a/src/oci/opsi/models/sql_plan_summary.py +++ b/src/oci/opsi/models/sql_plan_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_response_time_distribution_aggregation.py b/src/oci/opsi/models/sql_response_time_distribution_aggregation.py index 95d00677c2..e83682ca25 100644 --- a/src/oci/opsi/models/sql_response_time_distribution_aggregation.py +++ b/src/oci/opsi/models/sql_response_time_distribution_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_response_time_distribution_aggregation_collection.py b/src/oci/opsi/models/sql_response_time_distribution_aggregation_collection.py index d62549b8c6..814fb5353b 100644 --- a/src/oci/opsi/models/sql_response_time_distribution_aggregation_collection.py +++ b/src/oci/opsi/models/sql_response_time_distribution_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_search_collection.py b/src/oci/opsi/models/sql_search_collection.py index 26c5da8dfe..6204b0e35b 100644 --- a/src/oci/opsi/models/sql_search_collection.py +++ b/src/oci/opsi/models/sql_search_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_search_summary.py b/src/oci/opsi/models/sql_search_summary.py index 62cbb3ef69..0dbfe063a2 100644 --- a/src/oci/opsi/models/sql_search_summary.py +++ b/src/oci/opsi/models/sql_search_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_statistic_aggregation.py b/src/oci/opsi/models/sql_statistic_aggregation.py index cef743c3df..36ceec2b60 100644 --- a/src/oci/opsi/models/sql_statistic_aggregation.py +++ b/src/oci/opsi/models/sql_statistic_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_statistic_aggregation_collection.py b/src/oci/opsi/models/sql_statistic_aggregation_collection.py index c35ad54935..0282d62b5e 100644 --- a/src/oci/opsi/models/sql_statistic_aggregation_collection.py +++ b/src/oci/opsi/models/sql_statistic_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_statistics.py b/src/oci/opsi/models/sql_statistics.py index 821d196e3e..7d9669fde1 100644 --- a/src/oci/opsi/models/sql_statistics.py +++ b/src/oci/opsi/models/sql_statistics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_statistics_time_series.py b/src/oci/opsi/models/sql_statistics_time_series.py index ecdbf29bd2..053f85bff5 100644 --- a/src/oci/opsi/models/sql_statistics_time_series.py +++ b/src/oci/opsi/models/sql_statistics_time_series.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_statistics_time_series_aggregation.py b/src/oci/opsi/models/sql_statistics_time_series_aggregation.py index e96347054a..70c8095db8 100644 --- a/src/oci/opsi/models/sql_statistics_time_series_aggregation.py +++ b/src/oci/opsi/models/sql_statistics_time_series_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_statistics_time_series_aggregation_collection.py b/src/oci/opsi/models/sql_statistics_time_series_aggregation_collection.py index bbdb06467a..b76dba81fa 100644 --- a/src/oci/opsi/models/sql_statistics_time_series_aggregation_collection.py +++ b/src/oci/opsi/models/sql_statistics_time_series_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_statistics_time_series_by_plan_aggregation.py b/src/oci/opsi/models/sql_statistics_time_series_by_plan_aggregation.py index e383c068ac..ae2ba5325d 100644 --- a/src/oci/opsi/models/sql_statistics_time_series_by_plan_aggregation.py +++ b/src/oci/opsi/models/sql_statistics_time_series_by_plan_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_statistics_time_series_by_plan_aggregation_collection.py b/src/oci/opsi/models/sql_statistics_time_series_by_plan_aggregation_collection.py index 67d6a1ebf7..f79f68264e 100644 --- a/src/oci/opsi/models/sql_statistics_time_series_by_plan_aggregation_collection.py +++ b/src/oci/opsi/models/sql_statistics_time_series_by_plan_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_stats.py b/src/oci/opsi/models/sql_stats.py index 33f219c5d3..985e8edadc 100644 --- a/src/oci/opsi/models/sql_stats.py +++ b/src/oci/opsi/models/sql_stats.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_text.py b/src/oci/opsi/models/sql_text.py index 17297a7f04..b2cd8a4cf6 100644 --- a/src/oci/opsi/models/sql_text.py +++ b/src/oci/opsi/models/sql_text.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_text_collection.py b/src/oci/opsi/models/sql_text_collection.py index 9138ba23c6..50ace1cd43 100644 --- a/src/oci/opsi/models/sql_text_collection.py +++ b/src/oci/opsi/models/sql_text_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/sql_text_summary.py b/src/oci/opsi/models/sql_text_summary.py index 258530d1cf..317fbd921c 100644 --- a/src/oci/opsi/models/sql_text_summary.py +++ b/src/oci/opsi/models/sql_text_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/storage_server_details.py b/src/oci/opsi/models/storage_server_details.py index 5ea11e72d0..6987006ae0 100644 --- a/src/oci/opsi/models/storage_server_details.py +++ b/src/oci/opsi/models/storage_server_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_awr_sources_summaries_collection.py b/src/oci/opsi/models/summarize_awr_sources_summaries_collection.py index 76c5c09eaa..87a38eadcd 100644 --- a/src/oci/opsi/models/summarize_awr_sources_summaries_collection.py +++ b/src/oci/opsi/models/summarize_awr_sources_summaries_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_database_insight_resource_capacity_trend_aggregation_collection.py b/src/oci/opsi/models/summarize_database_insight_resource_capacity_trend_aggregation_collection.py index e5ce3bca13..a40183ca71 100644 --- a/src/oci/opsi/models/summarize_database_insight_resource_capacity_trend_aggregation_collection.py +++ b/src/oci/opsi/models/summarize_database_insight_resource_capacity_trend_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_database_insight_resource_forecast_trend_aggregation.py b/src/oci/opsi/models/summarize_database_insight_resource_forecast_trend_aggregation.py index 78e6f7e945..6f1442b985 100644 --- a/src/oci/opsi/models/summarize_database_insight_resource_forecast_trend_aggregation.py +++ b/src/oci/opsi/models/summarize_database_insight_resource_forecast_trend_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_database_insight_resource_statistics_aggregation_collection.py b/src/oci/opsi/models/summarize_database_insight_resource_statistics_aggregation_collection.py index e74974cd08..49a6dc7e5c 100644 --- a/src/oci/opsi/models/summarize_database_insight_resource_statistics_aggregation_collection.py +++ b/src/oci/opsi/models/summarize_database_insight_resource_statistics_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_database_insight_resource_usage_aggregation.py b/src/oci/opsi/models/summarize_database_insight_resource_usage_aggregation.py index f7a1b8171d..9f5c74ec71 100644 --- a/src/oci/opsi/models/summarize_database_insight_resource_usage_aggregation.py +++ b/src/oci/opsi/models/summarize_database_insight_resource_usage_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_database_insight_resource_usage_trend_aggregation_collection.py b/src/oci/opsi/models/summarize_database_insight_resource_usage_trend_aggregation_collection.py index 412402a2b0..6d362d0df7 100644 --- a/src/oci/opsi/models/summarize_database_insight_resource_usage_trend_aggregation_collection.py +++ b/src/oci/opsi/models/summarize_database_insight_resource_usage_trend_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_database_insight_resource_utilization_insight_aggregation.py b/src/oci/opsi/models/summarize_database_insight_resource_utilization_insight_aggregation.py index e6c3402588..77146a2c8d 100644 --- a/src/oci/opsi/models/summarize_database_insight_resource_utilization_insight_aggregation.py +++ b/src/oci/opsi/models/summarize_database_insight_resource_utilization_insight_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_database_insight_tablespace_usage_trend_aggregation_collection.py b/src/oci/opsi/models/summarize_database_insight_tablespace_usage_trend_aggregation_collection.py index 242cd04bf8..ad2e020fd2 100644 --- a/src/oci/opsi/models/summarize_database_insight_tablespace_usage_trend_aggregation_collection.py +++ b/src/oci/opsi/models/summarize_database_insight_tablespace_usage_trend_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_exadata_insight_resource_capacity_trend_aggregation.py b/src/oci/opsi/models/summarize_exadata_insight_resource_capacity_trend_aggregation.py index 92a96994b0..a262510651 100644 --- a/src/oci/opsi/models/summarize_exadata_insight_resource_capacity_trend_aggregation.py +++ b/src/oci/opsi/models/summarize_exadata_insight_resource_capacity_trend_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_exadata_insight_resource_capacity_trend_collection.py b/src/oci/opsi/models/summarize_exadata_insight_resource_capacity_trend_collection.py index b06f159c7d..6c3de6ee8b 100644 --- a/src/oci/opsi/models/summarize_exadata_insight_resource_capacity_trend_collection.py +++ b/src/oci/opsi/models/summarize_exadata_insight_resource_capacity_trend_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_exadata_insight_resource_forecast_trend_aggregation.py b/src/oci/opsi/models/summarize_exadata_insight_resource_forecast_trend_aggregation.py index c6348e86c6..30cd290d5d 100644 --- a/src/oci/opsi/models/summarize_exadata_insight_resource_forecast_trend_aggregation.py +++ b/src/oci/opsi/models/summarize_exadata_insight_resource_forecast_trend_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_exadata_insight_resource_forecast_trend_collection.py b/src/oci/opsi/models/summarize_exadata_insight_resource_forecast_trend_collection.py index af48356969..b518f89a9d 100644 --- a/src/oci/opsi/models/summarize_exadata_insight_resource_forecast_trend_collection.py +++ b/src/oci/opsi/models/summarize_exadata_insight_resource_forecast_trend_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_exadata_insight_resource_statistics_aggregation_collection.py b/src/oci/opsi/models/summarize_exadata_insight_resource_statistics_aggregation_collection.py index 13d64d5dbc..232a61264b 100644 --- a/src/oci/opsi/models/summarize_exadata_insight_resource_statistics_aggregation_collection.py +++ b/src/oci/opsi/models/summarize_exadata_insight_resource_statistics_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_exadata_insight_resource_usage_aggregation.py b/src/oci/opsi/models/summarize_exadata_insight_resource_usage_aggregation.py index 7595a13658..46ebffa25c 100644 --- a/src/oci/opsi/models/summarize_exadata_insight_resource_usage_aggregation.py +++ b/src/oci/opsi/models/summarize_exadata_insight_resource_usage_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_exadata_insight_resource_usage_collection.py b/src/oci/opsi/models/summarize_exadata_insight_resource_usage_collection.py index c4c7f7145b..f228013c73 100644 --- a/src/oci/opsi/models/summarize_exadata_insight_resource_usage_collection.py +++ b/src/oci/opsi/models/summarize_exadata_insight_resource_usage_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_exadata_insight_resource_utilization_insight_aggregation.py b/src/oci/opsi/models/summarize_exadata_insight_resource_utilization_insight_aggregation.py index 8f59b659a1..dcde67ea53 100644 --- a/src/oci/opsi/models/summarize_exadata_insight_resource_utilization_insight_aggregation.py +++ b/src/oci/opsi/models/summarize_exadata_insight_resource_utilization_insight_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_host_insight_resource_capacity_trend_aggregation_collection.py b/src/oci/opsi/models/summarize_host_insight_resource_capacity_trend_aggregation_collection.py index 64e731df9d..ae311a47dc 100644 --- a/src/oci/opsi/models/summarize_host_insight_resource_capacity_trend_aggregation_collection.py +++ b/src/oci/opsi/models/summarize_host_insight_resource_capacity_trend_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_host_insight_resource_forecast_trend_aggregation.py b/src/oci/opsi/models/summarize_host_insight_resource_forecast_trend_aggregation.py index 4dbf834738..32d3db99c8 100644 --- a/src/oci/opsi/models/summarize_host_insight_resource_forecast_trend_aggregation.py +++ b/src/oci/opsi/models/summarize_host_insight_resource_forecast_trend_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_host_insight_resource_statistics_aggregation_collection.py b/src/oci/opsi/models/summarize_host_insight_resource_statistics_aggregation_collection.py index b209c5bb7d..f561e1e4fd 100644 --- a/src/oci/opsi/models/summarize_host_insight_resource_statistics_aggregation_collection.py +++ b/src/oci/opsi/models/summarize_host_insight_resource_statistics_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_host_insight_resource_usage_aggregation.py b/src/oci/opsi/models/summarize_host_insight_resource_usage_aggregation.py index bff54c956c..caa9de66e2 100644 --- a/src/oci/opsi/models/summarize_host_insight_resource_usage_aggregation.py +++ b/src/oci/opsi/models/summarize_host_insight_resource_usage_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_host_insight_resource_usage_trend_aggregation_collection.py b/src/oci/opsi/models/summarize_host_insight_resource_usage_trend_aggregation_collection.py index 6db4bfa2de..7278f55bc4 100644 --- a/src/oci/opsi/models/summarize_host_insight_resource_usage_trend_aggregation_collection.py +++ b/src/oci/opsi/models/summarize_host_insight_resource_usage_trend_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_host_insight_resource_utilization_insight_aggregation.py b/src/oci/opsi/models/summarize_host_insight_resource_utilization_insight_aggregation.py index 588020a01e..3838af9a83 100644 --- a/src/oci/opsi/models/summarize_host_insight_resource_utilization_insight_aggregation.py +++ b/src/oci/opsi/models/summarize_host_insight_resource_utilization_insight_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summarize_operations_insights_warehouse_resource_usage_aggregation.py b/src/oci/opsi/models/summarize_operations_insights_warehouse_resource_usage_aggregation.py index 0be91a83a1..3551d68580 100644 --- a/src/oci/opsi/models/summarize_operations_insights_warehouse_resource_usage_aggregation.py +++ b/src/oci/opsi/models/summarize_operations_insights_warehouse_resource_usage_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/summary_statistics.py b/src/oci/opsi/models/summary_statistics.py index 4c8210308a..d5e8e1d4d6 100644 --- a/src/oci/opsi/models/summary_statistics.py +++ b/src/oci/opsi/models/summary_statistics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/tablespace_usage_trend.py b/src/oci/opsi/models/tablespace_usage_trend.py index d5b93ea00d..cec8045396 100644 --- a/src/oci/opsi/models/tablespace_usage_trend.py +++ b/src/oci/opsi/models/tablespace_usage_trend.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/tablespace_usage_trend_aggregation.py b/src/oci/opsi/models/tablespace_usage_trend_aggregation.py index c8d29e5528..6114b139b2 100644 --- a/src/oci/opsi/models/tablespace_usage_trend_aggregation.py +++ b/src/oci/opsi/models/tablespace_usage_trend_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/update_autonomous_database_insight_details.py b/src/oci/opsi/models/update_autonomous_database_insight_details.py index 2a7b5b1dfb..7fd91aef51 100644 --- a/src/oci/opsi/models/update_autonomous_database_insight_details.py +++ b/src/oci/opsi/models/update_autonomous_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_database_insight_details import UpdateDatabaseInsightDetails diff --git a/src/oci/opsi/models/update_awr_hub_details.py b/src/oci/opsi/models/update_awr_hub_details.py index 86053ce5ff..f5c6708794 100644 --- a/src/oci/opsi/models/update_awr_hub_details.py +++ b/src/oci/opsi/models/update_awr_hub_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/update_database_insight_details.py b/src/oci/opsi/models/update_database_insight_details.py index 77e67a4287..879c888139 100644 --- a/src/oci/opsi/models/update_database_insight_details.py +++ b/src/oci/opsi/models/update_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/update_em_managed_external_database_insight_details.py b/src/oci/opsi/models/update_em_managed_external_database_insight_details.py index 8e33cf8f56..61ac213286 100644 --- a/src/oci/opsi/models/update_em_managed_external_database_insight_details.py +++ b/src/oci/opsi/models/update_em_managed_external_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_database_insight_details import UpdateDatabaseInsightDetails diff --git a/src/oci/opsi/models/update_em_managed_external_exadata_insight_details.py b/src/oci/opsi/models/update_em_managed_external_exadata_insight_details.py index bf982a4a90..ede4bfc547 100644 --- a/src/oci/opsi/models/update_em_managed_external_exadata_insight_details.py +++ b/src/oci/opsi/models/update_em_managed_external_exadata_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_exadata_insight_details import UpdateExadataInsightDetails diff --git a/src/oci/opsi/models/update_em_managed_external_host_insight_details.py b/src/oci/opsi/models/update_em_managed_external_host_insight_details.py index c28b2d956c..3dd950c96f 100644 --- a/src/oci/opsi/models/update_em_managed_external_host_insight_details.py +++ b/src/oci/opsi/models/update_em_managed_external_host_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_host_insight_details import UpdateHostInsightDetails diff --git a/src/oci/opsi/models/update_enterprise_manager_bridge_details.py b/src/oci/opsi/models/update_enterprise_manager_bridge_details.py index ef7886ca64..219d1c797f 100644 --- a/src/oci/opsi/models/update_enterprise_manager_bridge_details.py +++ b/src/oci/opsi/models/update_enterprise_manager_bridge_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/update_exadata_insight_details.py b/src/oci/opsi/models/update_exadata_insight_details.py index 4d07d0451d..03781376a9 100644 --- a/src/oci/opsi/models/update_exadata_insight_details.py +++ b/src/oci/opsi/models/update_exadata_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/update_host_insight_details.py b/src/oci/opsi/models/update_host_insight_details.py index 59de5b2d64..cb5e0bd932 100644 --- a/src/oci/opsi/models/update_host_insight_details.py +++ b/src/oci/opsi/models/update_host_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/update_macs_managed_external_database_insight_details.py b/src/oci/opsi/models/update_macs_managed_external_database_insight_details.py index 4f1751eb07..fa91553ce4 100644 --- a/src/oci/opsi/models/update_macs_managed_external_database_insight_details.py +++ b/src/oci/opsi/models/update_macs_managed_external_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_database_insight_details import UpdateDatabaseInsightDetails diff --git a/src/oci/opsi/models/update_macs_managed_external_host_insight_details.py b/src/oci/opsi/models/update_macs_managed_external_host_insight_details.py index 27273a3c13..1a0a1b9a84 100644 --- a/src/oci/opsi/models/update_macs_managed_external_host_insight_details.py +++ b/src/oci/opsi/models/update_macs_managed_external_host_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_host_insight_details import UpdateHostInsightDetails diff --git a/src/oci/opsi/models/update_operations_insights_warehouse_details.py b/src/oci/opsi/models/update_operations_insights_warehouse_details.py index 4d75dbc3d4..4d0cab9f5a 100644 --- a/src/oci/opsi/models/update_operations_insights_warehouse_details.py +++ b/src/oci/opsi/models/update_operations_insights_warehouse_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/update_operations_insights_warehouse_user_details.py b/src/oci/opsi/models/update_operations_insights_warehouse_user_details.py index 2d765441c2..f031ea1a50 100644 --- a/src/oci/opsi/models/update_operations_insights_warehouse_user_details.py +++ b/src/oci/opsi/models/update_operations_insights_warehouse_user_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/work_request.py b/src/oci/opsi/models/work_request.py index 5e6be9e92d..fc0161bb4a 100644 --- a/src/oci/opsi/models/work_request.py +++ b/src/oci/opsi/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/work_request_collection.py b/src/oci/opsi/models/work_request_collection.py index b3c8a7ec63..633897567c 100644 --- a/src/oci/opsi/models/work_request_collection.py +++ b/src/oci/opsi/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/work_request_error.py b/src/oci/opsi/models/work_request_error.py index 04dde83e08..26ac6a8cc9 100644 --- a/src/oci/opsi/models/work_request_error.py +++ b/src/oci/opsi/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/work_request_error_collection.py b/src/oci/opsi/models/work_request_error_collection.py index 064456ff3b..11d13cad79 100644 --- a/src/oci/opsi/models/work_request_error_collection.py +++ b/src/oci/opsi/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/work_request_log_entry.py b/src/oci/opsi/models/work_request_log_entry.py index 8d02a6a994..7b37ab8d12 100644 --- a/src/oci/opsi/models/work_request_log_entry.py +++ b/src/oci/opsi/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/work_request_log_entry_collection.py b/src/oci/opsi/models/work_request_log_entry_collection.py index 131f8b4a00..09414c38c1 100644 --- a/src/oci/opsi/models/work_request_log_entry_collection.py +++ b/src/oci/opsi/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/work_request_resource.py b/src/oci/opsi/models/work_request_resource.py index dfa78b3bd2..20642957e9 100644 --- a/src/oci/opsi/models/work_request_resource.py +++ b/src/oci/opsi/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/models/work_requests.py b/src/oci/opsi/models/work_requests.py index 7844e04b34..45943d7a36 100644 --- a/src/oci/opsi/models/work_requests.py +++ b/src/oci/opsi/models/work_requests.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/opsi/operations_insights_client.py b/src/oci/opsi/operations_insights_client.py index ad80bfe56a..57ef1b4e29 100644 --- a/src/oci/opsi/operations_insights_client.py +++ b/src/oci/opsi/operations_insights_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -66,6 +66,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -96,6 +100,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("operations_insights", config, signer, opsi_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -136,6 +142,10 @@ def add_exadata_insight_members(self, add_exadata_insight_members_details, exada To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -147,6 +157,7 @@ def add_exadata_insight_members(self, add_exadata_insight_members_details, exada # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -237,6 +248,10 @@ def change_database_insight_compartment(self, database_insight_id, change_databa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -248,6 +263,7 @@ def change_database_insight_compartment(self, database_insight_id, change_databa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -330,6 +346,10 @@ def change_enterprise_manager_bridge_compartment(self, enterprise_manager_bridge To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -341,6 +361,7 @@ def change_enterprise_manager_bridge_compartment(self, enterprise_manager_bridge # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -428,6 +449,10 @@ def change_exadata_insight_compartment(self, exadata_insight_id, change_exadata_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -439,6 +464,7 @@ def change_exadata_insight_compartment(self, exadata_insight_id, change_exadata_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -529,6 +555,10 @@ def change_host_insight_compartment(self, host_insight_id, change_host_insight_c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -540,6 +570,7 @@ def change_host_insight_compartment(self, host_insight_id, change_host_insight_c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -623,6 +654,10 @@ def create_awr_hub(self, create_awr_hub_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.AwrHub` :rtype: :class:`~oci.response.Response` @@ -634,6 +669,7 @@ def create_awr_hub(self, create_awr_hub_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -704,6 +740,10 @@ def create_database_insight(self, create_database_insight_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.DatabaseInsight` :rtype: :class:`~oci.response.Response` @@ -715,6 +755,7 @@ def create_database_insight(self, create_database_insight_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -785,6 +826,10 @@ def create_enterprise_manager_bridge(self, create_enterprise_manager_bridge_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.EnterpriseManagerBridge` :rtype: :class:`~oci.response.Response` @@ -796,6 +841,7 @@ def create_enterprise_manager_bridge(self, create_enterprise_manager_bridge_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -866,6 +912,10 @@ def create_exadata_insight(self, create_exadata_insight_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.ExadataInsight` :rtype: :class:`~oci.response.Response` @@ -877,6 +927,7 @@ def create_exadata_insight(self, create_exadata_insight_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -947,6 +998,10 @@ def create_host_insight(self, create_host_insight_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.HostInsight` :rtype: :class:`~oci.response.Response` @@ -958,6 +1013,7 @@ def create_host_insight(self, create_host_insight_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1029,6 +1085,10 @@ def create_operations_insights_warehouse(self, create_operations_insights_wareho To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.OperationsInsightsWarehouse` :rtype: :class:`~oci.response.Response` @@ -1040,6 +1100,7 @@ def create_operations_insights_warehouse(self, create_operations_insights_wareho # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1111,6 +1172,10 @@ def create_operations_insights_warehouse_user(self, create_operations_insights_w To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.OperationsInsightsWarehouseUser` :rtype: :class:`~oci.response.Response` @@ -1122,6 +1187,7 @@ def create_operations_insights_warehouse_user(self, create_operations_insights_w # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1189,6 +1255,10 @@ def delete_awr_hub(self, awr_hub_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1200,6 +1270,7 @@ def delete_awr_hub(self, awr_hub_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1274,6 +1345,10 @@ def delete_database_insight(self, database_insight_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1285,6 +1360,7 @@ def delete_database_insight(self, database_insight_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1359,6 +1435,10 @@ def delete_enterprise_manager_bridge(self, enterprise_manager_bridge_id, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1370,6 +1450,7 @@ def delete_enterprise_manager_bridge(self, enterprise_manager_bridge_id, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1444,6 +1525,10 @@ def delete_exadata_insight(self, exadata_insight_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1455,6 +1540,7 @@ def delete_exadata_insight(self, exadata_insight_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1529,6 +1615,10 @@ def delete_host_insight(self, host_insight_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1540,6 +1630,7 @@ def delete_host_insight(self, host_insight_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1617,6 +1708,10 @@ def delete_operations_insights_warehouse(self, operations_insights_warehouse_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1628,6 +1723,7 @@ def delete_operations_insights_warehouse(self, operations_insights_warehouse_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1702,6 +1798,10 @@ def delete_operations_insights_warehouse_user(self, operations_insights_warehous To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1713,6 +1813,7 @@ def delete_operations_insights_warehouse_user(self, operations_insights_warehous # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1795,6 +1896,10 @@ def disable_database_insight(self, database_insight_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1806,6 +1911,7 @@ def disable_database_insight(self, database_insight_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1891,6 +1997,10 @@ def disable_exadata_insight(self, exadata_insight_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1902,6 +2012,7 @@ def disable_exadata_insight(self, exadata_insight_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1987,6 +2098,10 @@ def disable_host_insight(self, host_insight_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1998,6 +2113,7 @@ def disable_host_insight(self, host_insight_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2081,6 +2197,10 @@ def download_operations_insights_warehouse_wallet(self, operations_insights_ware To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -2092,6 +2212,7 @@ def download_operations_insights_warehouse_wallet(self, operations_insights_ware # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2182,6 +2303,10 @@ def enable_database_insight(self, enable_database_insight_details, database_insi To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2193,6 +2318,7 @@ def enable_database_insight(self, enable_database_insight_details, database_insi # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2283,6 +2409,10 @@ def enable_exadata_insight(self, enable_exadata_insight_details, exadata_insight To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2294,6 +2424,7 @@ def enable_exadata_insight(self, enable_exadata_insight_details, exadata_insight # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2384,6 +2515,10 @@ def enable_host_insight(self, enable_host_insight_details, host_insight_id, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2395,6 +2530,7 @@ def enable_host_insight(self, enable_host_insight_details, host_insight_id, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -2469,6 +2605,10 @@ def get_awr_hub(self, awr_hub_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.AwrHub` :rtype: :class:`~oci.response.Response` @@ -2480,6 +2620,7 @@ def get_awr_hub(self, awr_hub_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2573,6 +2714,10 @@ def get_awr_report(self, awr_hub_id, awr_source_database_identifier, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.AwrReport` :rtype: :class:`~oci.response.Response` @@ -2584,6 +2729,7 @@ def get_awr_report(self, awr_hub_id, awr_source_database_identifier, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "report_format", "instance_number", @@ -2679,6 +2825,10 @@ def get_database_insight(self, database_insight_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.DatabaseInsight` :rtype: :class:`~oci.response.Response` @@ -2690,6 +2840,7 @@ def get_database_insight(self, database_insight_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2759,6 +2910,10 @@ def get_enterprise_manager_bridge(self, enterprise_manager_bridge_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.EnterpriseManagerBridge` :rtype: :class:`~oci.response.Response` @@ -2770,6 +2925,7 @@ def get_enterprise_manager_bridge(self, enterprise_manager_bridge_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2839,6 +2995,10 @@ def get_exadata_insight(self, exadata_insight_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.ExadataInsight` :rtype: :class:`~oci.response.Response` @@ -2850,6 +3010,7 @@ def get_exadata_insight(self, exadata_insight_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2919,6 +3080,10 @@ def get_host_insight(self, host_insight_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.HostInsight` :rtype: :class:`~oci.response.Response` @@ -2930,6 +3095,7 @@ def get_host_insight(self, host_insight_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3000,6 +3166,10 @@ def get_operations_insights_warehouse(self, operations_insights_warehouse_id, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.OperationsInsightsWarehouse` :rtype: :class:`~oci.response.Response` @@ -3011,6 +3181,7 @@ def get_operations_insights_warehouse(self, operations_insights_warehouse_id, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3080,6 +3251,10 @@ def get_operations_insights_warehouse_user(self, operations_insights_warehouse_u To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.OperationsInsightsWarehouseUser` :rtype: :class:`~oci.response.Response` @@ -3091,6 +3266,7 @@ def get_operations_insights_warehouse_user(self, operations_insights_warehouse_u # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3160,6 +3336,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -3171,6 +3351,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3263,6 +3444,10 @@ def ingest_database_configuration(self, ingest_database_configuration_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.IngestDatabaseConfigurationResponseDetails` :rtype: :class:`~oci.response.Response` @@ -3274,6 +3459,7 @@ def ingest_database_configuration(self, ingest_database_configuration_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "database_id", "id", @@ -3366,6 +3552,10 @@ def ingest_host_configuration(self, id, ingest_host_configuration_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.IngestHostConfigurationResponseDetails` :rtype: :class:`~oci.response.Response` @@ -3377,6 +3567,7 @@ def ingest_host_configuration(self, id, ingest_host_configuration_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -3466,6 +3657,10 @@ def ingest_host_metrics(self, id, ingest_host_metrics_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.IngestHostMetricsResponseDetails` :rtype: :class:`~oci.response.Response` @@ -3477,6 +3672,7 @@ def ingest_host_metrics(self, id, ingest_host_metrics_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -3577,6 +3773,10 @@ def ingest_sql_bucket(self, ingest_sql_bucket_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.IngestSqlBucketResponseDetails` :rtype: :class:`~oci.response.Response` @@ -3588,6 +3788,7 @@ def ingest_sql_bucket(self, ingest_sql_bucket_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "database_id", @@ -3693,6 +3894,10 @@ def ingest_sql_plan_lines(self, ingest_sql_plan_lines_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.IngestSqlPlanLinesResponseDetails` :rtype: :class:`~oci.response.Response` @@ -3704,6 +3909,7 @@ def ingest_sql_plan_lines(self, ingest_sql_plan_lines_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "database_id", @@ -3804,6 +4010,10 @@ def ingest_sql_stats(self, ingest_sql_stats_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.IngestSqlStatsResponseDetails` :rtype: :class:`~oci.response.Response` @@ -3815,6 +4025,7 @@ def ingest_sql_stats(self, ingest_sql_stats_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "database_id", "id", @@ -3919,6 +4130,10 @@ def ingest_sql_text(self, ingest_sql_text_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.IngestSqlTextResponseDetails` :rtype: :class:`~oci.response.Response` @@ -3930,6 +4145,7 @@ def ingest_sql_text(self, ingest_sql_text_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "database_id", @@ -4048,6 +4264,10 @@ def list_awr_hubs(self, operations_insights_warehouse_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.AwrHubSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -4059,6 +4279,7 @@ def list_awr_hubs(self, operations_insights_warehouse_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "display_name", @@ -4197,6 +4418,10 @@ def list_awr_snapshots(self, awr_hub_id, awr_source_database_identifier, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.AwrSnapshotCollection` :rtype: :class:`~oci.response.Response` @@ -4208,6 +4433,7 @@ def list_awr_snapshots(self, awr_hub_id, awr_source_database_identifier, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "time_greater_than_or_equal_to", "time_less_than_or_equal_to", @@ -4397,6 +4623,10 @@ def list_database_configurations(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.DatabaseConfigurationCollection` :rtype: :class:`~oci.response.Response` @@ -4408,6 +4638,7 @@ def list_database_configurations(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "enterprise_manager_bridge_id", @@ -4598,6 +4829,10 @@ def list_database_insights(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.DatabaseInsightsCollection` :rtype: :class:`~oci.response.Response` @@ -4609,6 +4844,7 @@ def list_database_insights(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "enterprise_manager_bridge_id", @@ -4789,6 +5025,10 @@ def list_enterprise_manager_bridges(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.EnterpriseManagerBridgeCollection` :rtype: :class:`~oci.response.Response` @@ -4800,6 +5040,7 @@ def list_enterprise_manager_bridges(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "display_name", @@ -4965,6 +5206,10 @@ def list_exadata_configurations(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.ExadataConfigurationCollection` :rtype: :class:`~oci.response.Response` @@ -4976,6 +5221,7 @@ def list_exadata_configurations(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "exadata_insight_id", @@ -5129,6 +5375,10 @@ def list_exadata_insights(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.ExadataInsightSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -5140,6 +5390,7 @@ def list_exadata_insights(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "enterprise_manager_bridge_id", @@ -5261,9 +5512,10 @@ def list_host_configurations(self, **kwargs): :param list[str] platform_type: (optional) Filter by one or more platform types. - Possible value is LINUX. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. - Allowed values are: "LINUX" + Allowed values are: "LINUX", "SOLARIS", "SUNOS" :param int limit: (optional) For list pagination. The maximum number of results per page, or items to @@ -5331,6 +5583,10 @@ def list_host_configurations(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.HostConfigurationCollection` :rtype: :class:`~oci.response.Response` @@ -5342,6 +5598,7 @@ def list_host_configurations(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "enterprise_manager_bridge_id", @@ -5365,7 +5622,7 @@ def list_host_configurations(self, **kwargs): "list_host_configurations got unknown kwargs: {!r}".format(extra_kwargs)) if 'platform_type' in kwargs: - platform_type_allowed_values = ["LINUX"] + platform_type_allowed_values = ["LINUX", "SOLARIS", "SUNOS"] for platform_type_item in kwargs['platform_type']: if platform_type_item not in platform_type_allowed_values: raise ValueError( @@ -5467,9 +5724,10 @@ def list_host_insights(self, **kwargs): :param list[str] platform_type: (optional) Filter by one or more platform types. - Possible value is LINUX. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. - Allowed values are: "LINUX" + Allowed values are: "LINUX", "SOLARIS", "SUNOS" :param int limit: (optional) For list pagination. The maximum number of results per page, or items to @@ -5520,6 +5778,10 @@ def list_host_insights(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.HostInsightSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -5531,6 +5793,7 @@ def list_host_insights(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "id", @@ -5569,7 +5832,7 @@ def list_host_insights(self, **kwargs): ) if 'platform_type' in kwargs: - platform_type_allowed_values = ["LINUX"] + platform_type_allowed_values = ["LINUX", "SOLARIS", "SUNOS"] for platform_type_item in kwargs['platform_type']: if platform_type_item not in platform_type_allowed_values: raise ValueError( @@ -5674,9 +5937,10 @@ def list_hosted_entities(self, compartment_id, id, **kwargs): :param list[str] platform_type: (optional) Filter by one or more platform types. - Possible value is LINUX. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. - Allowed values are: "LINUX" + Allowed values are: "LINUX", "SOLARIS", "SUNOS" :param str exadata_insight_id: (optional) `OCID`__ of exadata insight resource. @@ -5721,6 +5985,10 @@ def list_hosted_entities(self, compartment_id, id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.HostedEntityCollection` :rtype: :class:`~oci.response.Response` @@ -5732,6 +6000,7 @@ def list_hosted_entities(self, compartment_id, id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -5750,7 +6019,7 @@ def list_hosted_entities(self, compartment_id, id, **kwargs): "list_hosted_entities got unknown kwargs: {!r}".format(extra_kwargs)) if 'platform_type' in kwargs: - platform_type_allowed_values = ["LINUX"] + platform_type_allowed_values = ["LINUX", "SOLARIS", "SUNOS"] for platform_type_item in kwargs['platform_type']: if platform_type_item not in platform_type_allowed_values: raise ValueError( @@ -5869,6 +6138,10 @@ def list_importable_agent_entities(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.ImportableAgentEntitySummaryCollection` :rtype: :class:`~oci.response.Response` @@ -5880,6 +6153,7 @@ def list_importable_agent_entities(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -5991,6 +6265,10 @@ def list_importable_enterprise_manager_entities(self, enterprise_manager_bridge_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.ImportableEnterpriseManagerEntityCollection` :rtype: :class:`~oci.response.Response` @@ -6002,6 +6280,7 @@ def list_importable_enterprise_manager_entities(self, enterprise_manager_bridge_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -6129,6 +6408,10 @@ def list_operations_insights_warehouse_users(self, operations_insights_warehouse To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.OperationsInsightsWarehouseUserSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -6140,6 +6423,7 @@ def list_operations_insights_warehouse_users(self, operations_insights_warehouse # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "display_name", @@ -6282,6 +6566,10 @@ def list_operations_insights_warehouses(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.OperationsInsightsWarehouseSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -6293,6 +6581,7 @@ def list_operations_insights_warehouses(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "display_name", @@ -6422,6 +6711,10 @@ def list_sql_plans(self, compartment_id, sql_identifier, plan_hash, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SqlPlanCollection` :rtype: :class:`~oci.response.Response` @@ -6433,6 +6726,7 @@ def list_sql_plans(self, compartment_id, sql_identifier, plan_hash, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "database_id", "id", @@ -6566,6 +6860,10 @@ def list_sql_searches(self, compartment_id, sql_identifier, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SqlSearchCollection` :rtype: :class:`~oci.response.Response` @@ -6577,6 +6875,7 @@ def list_sql_searches(self, compartment_id, sql_identifier, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -6711,6 +7010,10 @@ def list_sql_texts(self, compartment_id, sql_identifier, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SqlTextCollection` :rtype: :class:`~oci.response.Response` @@ -6722,6 +7025,7 @@ def list_sql_texts(self, compartment_id, sql_identifier, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "database_id", "id", @@ -6829,6 +7133,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -6840,6 +7148,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -6963,6 +7272,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -6974,6 +7287,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -7113,6 +7427,10 @@ def list_work_requests(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.WorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -7124,6 +7442,7 @@ def list_work_requests(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -7231,6 +7550,10 @@ def rotate_operations_insights_warehouse_wallet(self, operations_insights_wareho To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -7242,6 +7565,7 @@ def rotate_operations_insights_warehouse_wallet(self, operations_insights_wareho # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -7345,6 +7669,10 @@ def summarize_awr_sources_summaries(self, awr_hub_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeAwrSourcesSummariesCollection` :rtype: :class:`~oci.response.Response` @@ -7356,6 +7684,7 @@ def summarize_awr_sources_summaries(self, awr_hub_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "name", @@ -7573,6 +7902,10 @@ def summarize_database_insight_resource_capacity_trend(self, compartment_id, res To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeDatabaseInsightResourceCapacityTrendAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -7584,6 +7917,7 @@ def summarize_database_insight_resource_capacity_trend(self, compartment_id, res # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -7847,6 +8181,10 @@ def summarize_database_insight_resource_forecast_trend(self, compartment_id, res To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeDatabaseInsightResourceForecastTrendAggregation` :rtype: :class:`~oci.response.Response` @@ -7858,6 +8196,7 @@ def summarize_database_insight_resource_forecast_trend(self, compartment_id, res # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -8119,6 +8458,10 @@ def summarize_database_insight_resource_statistics(self, compartment_id, resourc To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeDatabaseInsightResourceStatisticsAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -8130,6 +8473,7 @@ def summarize_database_insight_resource_statistics(self, compartment_id, resourc # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -8356,6 +8700,10 @@ def summarize_database_insight_resource_usage(self, compartment_id, resource_met To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeDatabaseInsightResourceUsageAggregation` :rtype: :class:`~oci.response.Response` @@ -8367,6 +8715,7 @@ def summarize_database_insight_resource_usage(self, compartment_id, resource_met # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -8573,6 +8922,10 @@ def summarize_database_insight_resource_usage_trend(self, compartment_id, resour To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeDatabaseInsightResourceUsageTrendAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -8584,6 +8937,7 @@ def summarize_database_insight_resource_usage_trend(self, compartment_id, resour # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -8798,6 +9152,10 @@ def summarize_database_insight_resource_utilization_insight(self, compartment_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeDatabaseInsightResourceUtilizationInsightAggregation` :rtype: :class:`~oci.response.Response` @@ -8809,6 +9167,7 @@ def summarize_database_insight_resource_utilization_insight(self, compartment_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -8963,6 +9322,10 @@ def summarize_database_insight_tablespace_usage_trend(self, compartment_id, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeDatabaseInsightTablespaceUsageTrendAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -8974,6 +9337,7 @@ def summarize_database_insight_tablespace_usage_trend(self, compartment_id, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -9142,6 +9506,10 @@ def summarize_exadata_insight_resource_capacity_trend(self, resource_type, resou To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeExadataInsightResourceCapacityTrendCollection` :rtype: :class:`~oci.response.Response` @@ -9153,6 +9521,7 @@ def summarize_exadata_insight_resource_capacity_trend(self, resource_type, resou # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "analysis_time_interval", @@ -9351,6 +9720,10 @@ def summarize_exadata_insight_resource_capacity_trend_aggregated(self, resource_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeExadataInsightResourceCapacityTrendAggregation` :rtype: :class:`~oci.response.Response` @@ -9362,6 +9735,7 @@ def summarize_exadata_insight_resource_capacity_trend_aggregated(self, resource_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "analysis_time_interval", @@ -9583,6 +9957,10 @@ def summarize_exadata_insight_resource_forecast_trend(self, resource_type, resou To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeExadataInsightResourceForecastTrendCollection` :rtype: :class:`~oci.response.Response` @@ -9594,6 +9972,7 @@ def summarize_exadata_insight_resource_forecast_trend(self, resource_type, resou # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -9830,6 +10209,10 @@ def summarize_exadata_insight_resource_forecast_trend_aggregated(self, resource_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeExadataInsightResourceForecastTrendAggregation` :rtype: :class:`~oci.response.Response` @@ -9841,6 +10224,7 @@ def summarize_exadata_insight_resource_forecast_trend_aggregated(self, resource_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "analysis_time_interval", @@ -10028,6 +10412,10 @@ def summarize_exadata_insight_resource_statistics(self, exadata_insight_id, reso To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeExadataInsightResourceStatisticsAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -10039,6 +10427,7 @@ def summarize_exadata_insight_resource_statistics(self, exadata_insight_id, reso # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -10244,6 +10633,10 @@ def summarize_exadata_insight_resource_usage(self, compartment_id, resource_type To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeExadataInsightResourceUsageCollection` :rtype: :class:`~oci.response.Response` @@ -10255,6 +10648,7 @@ def summarize_exadata_insight_resource_usage(self, compartment_id, resource_type # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -10451,6 +10845,10 @@ def summarize_exadata_insight_resource_usage_aggregated(self, compartment_id, re To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeExadataInsightResourceUsageAggregation` :rtype: :class:`~oci.response.Response` @@ -10462,6 +10860,7 @@ def summarize_exadata_insight_resource_usage_aggregated(self, compartment_id, re # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -10645,6 +11044,10 @@ def summarize_exadata_insight_resource_utilization_insight(self, compartment_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeExadataInsightResourceUtilizationInsightAggregation` :rtype: :class:`~oci.response.Response` @@ -10656,6 +11059,7 @@ def summarize_exadata_insight_resource_utilization_insight(self, compartment_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -10784,6 +11188,10 @@ def summarize_exadata_members(self, exadata_insight_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.ExadataMemberCollection` :rtype: :class:`~oci.response.Response` @@ -10795,6 +11203,7 @@ def summarize_exadata_members(self, exadata_insight_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "exadata_type", "sort_order", @@ -10900,9 +11309,10 @@ def summarize_host_insight_resource_capacity_trend(self, compartment_id, resourc :param list[str] platform_type: (optional) Filter by one or more platform types. - Possible value is LINUX. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. - Allowed values are: "LINUX" + Allowed values are: "LINUX", "SOLARIS", "SUNOS" :param list[str] id: (optional) Optional list of host insight resource `OCIDs`__. @@ -10980,6 +11390,10 @@ def summarize_host_insight_resource_capacity_trend(self, compartment_id, resourc To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeHostInsightResourceCapacityTrendAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -10991,6 +11405,7 @@ def summarize_host_insight_resource_capacity_trend(self, compartment_id, resourc # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -11015,7 +11430,7 @@ def summarize_host_insight_resource_capacity_trend(self, compartment_id, resourc "summarize_host_insight_resource_capacity_trend got unknown kwargs: {!r}".format(extra_kwargs)) if 'platform_type' in kwargs: - platform_type_allowed_values = ["LINUX"] + platform_type_allowed_values = ["LINUX", "SOLARIS", "SUNOS"] for platform_type_item in kwargs['platform_type']: if platform_type_item not in platform_type_allowed_values: raise ValueError( @@ -11131,9 +11546,10 @@ def summarize_host_insight_resource_forecast_trend(self, compartment_id, resourc :param list[str] platform_type: (optional) Filter by one or more platform types. - Possible value is LINUX. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. - Allowed values are: "LINUX" + Allowed values are: "LINUX", "SOLARIS", "SUNOS" :param list[str] id: (optional) Optional list of host insight resource `OCIDs`__. @@ -11225,6 +11641,10 @@ def summarize_host_insight_resource_forecast_trend(self, compartment_id, resourc To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeHostInsightResourceForecastTrendAggregation` :rtype: :class:`~oci.response.Response` @@ -11236,6 +11656,7 @@ def summarize_host_insight_resource_forecast_trend(self, compartment_id, resourc # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -11262,7 +11683,7 @@ def summarize_host_insight_resource_forecast_trend(self, compartment_id, resourc "summarize_host_insight_resource_forecast_trend got unknown kwargs: {!r}".format(extra_kwargs)) if 'platform_type' in kwargs: - platform_type_allowed_values = ["LINUX"] + platform_type_allowed_values = ["LINUX", "SOLARIS", "SUNOS"] for platform_type_item in kwargs['platform_type']: if platform_type_item not in platform_type_allowed_values: raise ValueError( @@ -11380,9 +11801,10 @@ def summarize_host_insight_resource_statistics(self, compartment_id, resource_me :param list[str] platform_type: (optional) Filter by one or more platform types. - Possible value is LINUX. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. - Allowed values are: "LINUX" + Allowed values are: "LINUX", "SOLARIS", "SUNOS" :param list[str] id: (optional) Optional list of host insight resource `OCIDs`__. @@ -11471,6 +11893,10 @@ def summarize_host_insight_resource_statistics(self, compartment_id, resource_me To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeHostInsightResourceStatisticsAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -11482,6 +11908,7 @@ def summarize_host_insight_resource_statistics(self, compartment_id, resource_me # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -11509,7 +11936,7 @@ def summarize_host_insight_resource_statistics(self, compartment_id, resource_me "summarize_host_insight_resource_statistics got unknown kwargs: {!r}".format(extra_kwargs)) if 'platform_type' in kwargs: - platform_type_allowed_values = ["LINUX"] + platform_type_allowed_values = ["LINUX", "SOLARIS", "SUNOS"] for platform_type_item in kwargs['platform_type']: if platform_type_item not in platform_type_allowed_values: raise ValueError( @@ -11623,9 +12050,10 @@ def summarize_host_insight_resource_usage(self, compartment_id, resource_metric, :param list[str] platform_type: (optional) Filter by one or more platform types. - Possible value is LINUX. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. - Allowed values are: "LINUX" + Allowed values are: "LINUX", "SOLARIS", "SUNOS" :param list[str] id: (optional) Optional list of host insight resource `OCIDs`__. @@ -11687,6 +12115,10 @@ def summarize_host_insight_resource_usage(self, compartment_id, resource_metric, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeHostInsightResourceUsageAggregation` :rtype: :class:`~oci.response.Response` @@ -11698,6 +12130,7 @@ def summarize_host_insight_resource_usage(self, compartment_id, resource_metric, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -11720,7 +12153,7 @@ def summarize_host_insight_resource_usage(self, compartment_id, resource_metric, "summarize_host_insight_resource_usage got unknown kwargs: {!r}".format(extra_kwargs)) if 'platform_type' in kwargs: - platform_type_allowed_values = ["LINUX"] + platform_type_allowed_values = ["LINUX", "SOLARIS", "SUNOS"] for platform_type_item in kwargs['platform_type']: if platform_type_item not in platform_type_allowed_values: raise ValueError( @@ -11814,9 +12247,10 @@ def summarize_host_insight_resource_usage_trend(self, compartment_id, resource_m :param list[str] platform_type: (optional) Filter by one or more platform types. - Possible value is LINUX. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. - Allowed values are: "LINUX" + Allowed values are: "LINUX", "SOLARIS", "SUNOS" :param list[str] id: (optional) Optional list of host insight resource `OCIDs`__. @@ -11885,6 +12319,10 @@ def summarize_host_insight_resource_usage_trend(self, compartment_id, resource_m To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeHostInsightResourceUsageTrendAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -11896,6 +12334,7 @@ def summarize_host_insight_resource_usage_trend(self, compartment_id, resource_m # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -11919,7 +12358,7 @@ def summarize_host_insight_resource_usage_trend(self, compartment_id, resource_m "summarize_host_insight_resource_usage_trend got unknown kwargs: {!r}".format(extra_kwargs)) if 'platform_type' in kwargs: - platform_type_allowed_values = ["LINUX"] + platform_type_allowed_values = ["LINUX", "SOLARIS", "SUNOS"] for platform_type_item in kwargs['platform_type']: if platform_type_item not in platform_type_allowed_values: raise ValueError( @@ -12027,9 +12466,10 @@ def summarize_host_insight_resource_utilization_insight(self, compartment_id, re :param list[str] platform_type: (optional) Filter by one or more platform types. - Possible value is LINUX. + Supported platformType(s) for MACS-managed external host insight: [LINUX]. + Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS]. - Allowed values are: "LINUX" + Allowed values are: "LINUX", "SOLARIS", "SUNOS" :param list[str] id: (optional) Optional list of host insight resource `OCIDs`__. @@ -12091,6 +12531,10 @@ def summarize_host_insight_resource_utilization_insight(self, compartment_id, re To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeHostInsightResourceUtilizationInsightAggregation` :rtype: :class:`~oci.response.Response` @@ -12102,6 +12546,7 @@ def summarize_host_insight_resource_utilization_insight(self, compartment_id, re # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "analysis_time_interval", "time_interval_start", @@ -12124,7 +12569,7 @@ def summarize_host_insight_resource_utilization_insight(self, compartment_id, re "summarize_host_insight_resource_utilization_insight got unknown kwargs: {!r}".format(extra_kwargs)) if 'platform_type' in kwargs: - platform_type_allowed_values = ["LINUX"] + platform_type_allowed_values = ["LINUX", "SOLARIS", "SUNOS"] for platform_type_item in kwargs['platform_type']: if platform_type_item not in platform_type_allowed_values: raise ValueError( @@ -12202,6 +12647,10 @@ def summarize_operations_insights_warehouse_resource_usage(self, operations_insi To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SummarizeOperationsInsightsWarehouseResourceUsageAggregation` :rtype: :class:`~oci.response.Response` @@ -12213,6 +12662,7 @@ def summarize_operations_insights_warehouse_resource_usage(self, operations_insi # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -12369,6 +12819,10 @@ def summarize_sql_insights(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SqlInsightAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -12380,6 +12834,7 @@ def summarize_sql_insights(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "database_type", "database_id", @@ -12527,6 +12982,10 @@ def summarize_sql_plan_insights(self, compartment_id, sql_identifier, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SqlPlanInsightAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -12538,6 +12997,7 @@ def summarize_sql_plan_insights(self, compartment_id, sql_identifier, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "database_id", "id", @@ -12658,6 +13118,10 @@ def summarize_sql_response_time_distributions(self, compartment_id, sql_identifi To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SqlResponseTimeDistributionAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -12669,6 +13133,7 @@ def summarize_sql_response_time_distributions(self, compartment_id, sql_identifi # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "database_id", "id", @@ -12862,6 +13327,10 @@ def summarize_sql_statistics(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SqlStatisticAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -12873,6 +13342,7 @@ def summarize_sql_statistics(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "database_type", "database_id", @@ -13091,6 +13561,10 @@ def summarize_sql_statistics_time_series(self, compartment_id, sql_identifier, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SqlStatisticsTimeSeriesAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -13102,6 +13576,7 @@ def summarize_sql_statistics_time_series(self, compartment_id, sql_identifier, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "database_id", "id", @@ -13238,6 +13713,10 @@ def summarize_sql_statistics_time_series_by_plan(self, compartment_id, sql_ident To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.opsi.models.SqlStatisticsTimeSeriesByPlanAggregationCollection` :rtype: :class:`~oci.response.Response` @@ -13249,6 +13728,7 @@ def summarize_sql_statistics_time_series_by_plan(self, compartment_id, sql_ident # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "database_id", "id", @@ -13334,6 +13814,10 @@ def update_awr_hub(self, awr_hub_id, update_awr_hub_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -13345,6 +13829,7 @@ def update_awr_hub(self, awr_hub_id, update_awr_hub_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -13424,6 +13909,10 @@ def update_database_insight(self, database_insight_id, update_database_insight_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -13435,6 +13924,7 @@ def update_database_insight(self, database_insight_id, update_database_insight_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -13514,6 +14004,10 @@ def update_enterprise_manager_bridge(self, enterprise_manager_bridge_id, update_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -13525,6 +14019,7 @@ def update_enterprise_manager_bridge(self, enterprise_manager_bridge_id, update_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -13604,6 +14099,10 @@ def update_exadata_insight(self, exadata_insight_id, update_exadata_insight_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -13615,6 +14114,7 @@ def update_exadata_insight(self, exadata_insight_id, update_exadata_insight_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -13694,6 +14194,10 @@ def update_host_insight(self, host_insight_id, update_host_insight_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -13705,6 +14209,7 @@ def update_host_insight(self, host_insight_id, update_host_insight_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -13785,6 +14290,10 @@ def update_operations_insights_warehouse(self, operations_insights_warehouse_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -13796,6 +14305,7 @@ def update_operations_insights_warehouse(self, operations_insights_warehouse_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -13875,6 +14385,10 @@ def update_operations_insights_warehouse_user(self, operations_insights_warehous To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -13886,6 +14400,7 @@ def update_operations_insights_warehouse_user(self, operations_insights_warehous # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/opsi/operations_insights_client_composite_operations.py b/src/oci/opsi/operations_insights_client_composite_operations.py index 70f0efc1c3..2abdf1ab57 100644 --- a/src/oci/opsi/operations_insights_client_composite_operations.py +++ b/src/oci/opsi/operations_insights_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/optimizer/__init__.py b/src/oci/optimizer/__init__.py index 5556f5e1d8..9185458ae4 100644 --- a/src/oci/optimizer/__init__.py +++ b/src/oci/optimizer/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/optimizer/models/__init__.py b/src/oci/optimizer/models/__init__.py index 0e9ee8da09..6efd1d2789 100644 --- a/src/oci/optimizer/models/__init__.py +++ b/src/oci/optimizer/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/optimizer/models/action.py b/src/oci/optimizer/models/action.py index 8e740945ff..8014423970 100644 --- a/src/oci/optimizer/models/action.py +++ b/src/oci/optimizer/models/action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/bulk_apply_recommendations_details.py b/src/oci/optimizer/models/bulk_apply_recommendations_details.py index e9084f9247..2fd09784cf 100644 --- a/src/oci/optimizer/models/bulk_apply_recommendations_details.py +++ b/src/oci/optimizer/models/bulk_apply_recommendations_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/bulk_apply_resource_action.py b/src/oci/optimizer/models/bulk_apply_resource_action.py index ef2ff89d89..6ebffbb693 100644 --- a/src/oci/optimizer/models/bulk_apply_resource_action.py +++ b/src/oci/optimizer/models/bulk_apply_resource_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/category.py b/src/oci/optimizer/models/category.py index fc85b447ad..1947403208 100644 --- a/src/oci/optimizer/models/category.py +++ b/src/oci/optimizer/models/category.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/category_collection.py b/src/oci/optimizer/models/category_collection.py index 6465c11057..8ab88d9d71 100644 --- a/src/oci/optimizer/models/category_collection.py +++ b/src/oci/optimizer/models/category_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/category_summary.py b/src/oci/optimizer/models/category_summary.py index 11d5867e01..932e29b302 100644 --- a/src/oci/optimizer/models/category_summary.py +++ b/src/oci/optimizer/models/category_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/create_profile_details.py b/src/oci/optimizer/models/create_profile_details.py index 539aa9cf51..2d45a5176a 100644 --- a/src/oci/optimizer/models/create_profile_details.py +++ b/src/oci/optimizer/models/create_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/enrollment_status.py b/src/oci/optimizer/models/enrollment_status.py index 2d1cca75d3..c74bb662ff 100644 --- a/src/oci/optimizer/models/enrollment_status.py +++ b/src/oci/optimizer/models/enrollment_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/enrollment_status_collection.py b/src/oci/optimizer/models/enrollment_status_collection.py index e08980d71c..a7d8e16d04 100644 --- a/src/oci/optimizer/models/enrollment_status_collection.py +++ b/src/oci/optimizer/models/enrollment_status_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/enrollment_status_summary.py b/src/oci/optimizer/models/enrollment_status_summary.py index 0228289ddb..305489ac70 100644 --- a/src/oci/optimizer/models/enrollment_status_summary.py +++ b/src/oci/optimizer/models/enrollment_status_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/evaluated_metric.py b/src/oci/optimizer/models/evaluated_metric.py index 3ee8862ba7..cee8aaa0ee 100644 --- a/src/oci/optimizer/models/evaluated_metric.py +++ b/src/oci/optimizer/models/evaluated_metric.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/history_collection.py b/src/oci/optimizer/models/history_collection.py index 1fe9a9d720..38445686cc 100644 --- a/src/oci/optimizer/models/history_collection.py +++ b/src/oci/optimizer/models/history_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/history_summary.py b/src/oci/optimizer/models/history_summary.py index 6081a051b5..5c546aac65 100644 --- a/src/oci/optimizer/models/history_summary.py +++ b/src/oci/optimizer/models/history_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/level_configuration.py b/src/oci/optimizer/models/level_configuration.py index 52f5abe30d..29888f5c69 100644 --- a/src/oci/optimizer/models/level_configuration.py +++ b/src/oci/optimizer/models/level_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/levels_configuration.py b/src/oci/optimizer/models/levels_configuration.py index 489423ea16..aa40bd0740 100644 --- a/src/oci/optimizer/models/levels_configuration.py +++ b/src/oci/optimizer/models/levels_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/profile.py b/src/oci/optimizer/models/profile.py index aa7151dea4..37caf3c418 100644 --- a/src/oci/optimizer/models/profile.py +++ b/src/oci/optimizer/models/profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/profile_collection.py b/src/oci/optimizer/models/profile_collection.py index d8aeedeaaa..cdd9839731 100644 --- a/src/oci/optimizer/models/profile_collection.py +++ b/src/oci/optimizer/models/profile_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/profile_level_collection.py b/src/oci/optimizer/models/profile_level_collection.py index 2b9cb200b1..fef2c15a83 100644 --- a/src/oci/optimizer/models/profile_level_collection.py +++ b/src/oci/optimizer/models/profile_level_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/profile_level_summary.py b/src/oci/optimizer/models/profile_level_summary.py index de6c69d041..cd88d3aa27 100644 --- a/src/oci/optimizer/models/profile_level_summary.py +++ b/src/oci/optimizer/models/profile_level_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/profile_summary.py b/src/oci/optimizer/models/profile_summary.py index 1c3ce94bb6..543cd4b696 100644 --- a/src/oci/optimizer/models/profile_summary.py +++ b/src/oci/optimizer/models/profile_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/query_details.py b/src/oci/optimizer/models/query_details.py index 72cf1bf657..cf8c5743ee 100644 --- a/src/oci/optimizer/models/query_details.py +++ b/src/oci/optimizer/models/query_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/queryable_field_collection.py b/src/oci/optimizer/models/queryable_field_collection.py index 89cf47458e..8ac07f0dc7 100644 --- a/src/oci/optimizer/models/queryable_field_collection.py +++ b/src/oci/optimizer/models/queryable_field_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/queryable_field_summary.py b/src/oci/optimizer/models/queryable_field_summary.py index abee27508e..6d2e664910 100644 --- a/src/oci/optimizer/models/queryable_field_summary.py +++ b/src/oci/optimizer/models/queryable_field_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/recommendation.py b/src/oci/optimizer/models/recommendation.py index 1d05d609d1..2d44e6e1b5 100644 --- a/src/oci/optimizer/models/recommendation.py +++ b/src/oci/optimizer/models/recommendation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/recommendation_collection.py b/src/oci/optimizer/models/recommendation_collection.py index 18718cad60..98f7bfb2cd 100644 --- a/src/oci/optimizer/models/recommendation_collection.py +++ b/src/oci/optimizer/models/recommendation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/recommendation_count.py b/src/oci/optimizer/models/recommendation_count.py index f423e4a698..b59999d119 100644 --- a/src/oci/optimizer/models/recommendation_count.py +++ b/src/oci/optimizer/models/recommendation_count.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/recommendation_strategy_collection.py b/src/oci/optimizer/models/recommendation_strategy_collection.py index c57af90337..8a4e597972 100644 --- a/src/oci/optimizer/models/recommendation_strategy_collection.py +++ b/src/oci/optimizer/models/recommendation_strategy_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/recommendation_strategy_summary.py b/src/oci/optimizer/models/recommendation_strategy_summary.py index 4191dc6051..728004b588 100644 --- a/src/oci/optimizer/models/recommendation_strategy_summary.py +++ b/src/oci/optimizer/models/recommendation_strategy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/recommendation_summary.py b/src/oci/optimizer/models/recommendation_summary.py index 40971b8747..4fc71497e6 100644 --- a/src/oci/optimizer/models/recommendation_summary.py +++ b/src/oci/optimizer/models/recommendation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/resource_action.py b/src/oci/optimizer/models/resource_action.py index 05ab1ac65a..b1713c17c1 100644 --- a/src/oci/optimizer/models/resource_action.py +++ b/src/oci/optimizer/models/resource_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/resource_action_collection.py b/src/oci/optimizer/models/resource_action_collection.py index 19bc50bf37..7f74338922 100644 --- a/src/oci/optimizer/models/resource_action_collection.py +++ b/src/oci/optimizer/models/resource_action_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/resource_action_summary.py b/src/oci/optimizer/models/resource_action_summary.py index d879a6a715..e87728c8ab 100644 --- a/src/oci/optimizer/models/resource_action_summary.py +++ b/src/oci/optimizer/models/resource_action_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/resource_count.py b/src/oci/optimizer/models/resource_count.py index 68bfe0b448..e4c9dd3d24 100644 --- a/src/oci/optimizer/models/resource_count.py +++ b/src/oci/optimizer/models/resource_count.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/strategy.py b/src/oci/optimizer/models/strategy.py index 9c01e72356..c4f6e193af 100644 --- a/src/oci/optimizer/models/strategy.py +++ b/src/oci/optimizer/models/strategy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/strategy_parameter.py b/src/oci/optimizer/models/strategy_parameter.py index 8de01e5589..e829bde3ee 100644 --- a/src/oci/optimizer/models/strategy_parameter.py +++ b/src/oci/optimizer/models/strategy_parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/supported_level.py b/src/oci/optimizer/models/supported_level.py index deefb030fc..8b6a941344 100644 --- a/src/oci/optimizer/models/supported_level.py +++ b/src/oci/optimizer/models/supported_level.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/supported_levels.py b/src/oci/optimizer/models/supported_levels.py index 73bed69efb..a31af014df 100644 --- a/src/oci/optimizer/models/supported_levels.py +++ b/src/oci/optimizer/models/supported_levels.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/target_compartments.py b/src/oci/optimizer/models/target_compartments.py index 9442036bba..4c26475769 100644 --- a/src/oci/optimizer/models/target_compartments.py +++ b/src/oci/optimizer/models/target_compartments.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/target_tag.py b/src/oci/optimizer/models/target_tag.py index 9eba1c4661..b1df335a6c 100644 --- a/src/oci/optimizer/models/target_tag.py +++ b/src/oci/optimizer/models/target_tag.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/target_tags.py b/src/oci/optimizer/models/target_tags.py index 3f5b12c955..adb12cb0d0 100644 --- a/src/oci/optimizer/models/target_tags.py +++ b/src/oci/optimizer/models/target_tags.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/update_enrollment_status_details.py b/src/oci/optimizer/models/update_enrollment_status_details.py index 7da8bb571b..8e352d4ddb 100644 --- a/src/oci/optimizer/models/update_enrollment_status_details.py +++ b/src/oci/optimizer/models/update_enrollment_status_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/update_profile_details.py b/src/oci/optimizer/models/update_profile_details.py index 9fdae4d33e..389c01afa1 100644 --- a/src/oci/optimizer/models/update_profile_details.py +++ b/src/oci/optimizer/models/update_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/update_recommendation_details.py b/src/oci/optimizer/models/update_recommendation_details.py index 0cf434d140..930a5bd411 100644 --- a/src/oci/optimizer/models/update_recommendation_details.py +++ b/src/oci/optimizer/models/update_recommendation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/update_resource_action_details.py b/src/oci/optimizer/models/update_resource_action_details.py index 87be882168..9a1b9e046b 100644 --- a/src/oci/optimizer/models/update_resource_action_details.py +++ b/src/oci/optimizer/models/update_resource_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/work_request.py b/src/oci/optimizer/models/work_request.py index 631d28a6c2..bb544f9ad4 100644 --- a/src/oci/optimizer/models/work_request.py +++ b/src/oci/optimizer/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/work_request_collection.py b/src/oci/optimizer/models/work_request_collection.py index b916122b06..681babd220 100644 --- a/src/oci/optimizer/models/work_request_collection.py +++ b/src/oci/optimizer/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/work_request_error.py b/src/oci/optimizer/models/work_request_error.py index f0fecd1fc3..66b57c260a 100644 --- a/src/oci/optimizer/models/work_request_error.py +++ b/src/oci/optimizer/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/work_request_error_collection.py b/src/oci/optimizer/models/work_request_error_collection.py index eb419ec8e7..0be28daa60 100644 --- a/src/oci/optimizer/models/work_request_error_collection.py +++ b/src/oci/optimizer/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/work_request_log_entry.py b/src/oci/optimizer/models/work_request_log_entry.py index 9b41745594..9658847251 100644 --- a/src/oci/optimizer/models/work_request_log_entry.py +++ b/src/oci/optimizer/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/work_request_log_entry_collection.py b/src/oci/optimizer/models/work_request_log_entry_collection.py index 976bbc5f7e..96fad63d55 100644 --- a/src/oci/optimizer/models/work_request_log_entry_collection.py +++ b/src/oci/optimizer/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/models/work_request_resource.py b/src/oci/optimizer/models/work_request_resource.py index a8540afe2c..0e333bc196 100644 --- a/src/oci/optimizer/models/work_request_resource.py +++ b/src/oci/optimizer/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/optimizer/optimizer_client.py b/src/oci/optimizer/optimizer_client.py index 4aaf887057..0452e2d968 100644 --- a/src/oci/optimizer/optimizer_client.py +++ b/src/oci/optimizer/optimizer_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -66,6 +66,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -96,6 +100,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("optimizer", config, signer, optimizer_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -130,6 +136,10 @@ def bulk_apply_recommendations(self, recommendation_id, bulk_apply_recommendatio To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -141,6 +151,7 @@ def bulk_apply_recommendations(self, recommendation_id, bulk_apply_recommendatio # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -220,6 +231,10 @@ def create_profile(self, create_profile_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.Profile` :rtype: :class:`~oci.response.Response` @@ -231,6 +246,7 @@ def create_profile(self, create_profile_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -300,6 +316,10 @@ def delete_profile(self, profile_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -311,6 +331,7 @@ def delete_profile(self, profile_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -397,6 +418,10 @@ def filter_resource_actions(self, compartment_id, compartment_id_in_subtree, rec To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.ResourceActionCollection` :rtype: :class:`~oci.response.Response` @@ -408,6 +433,7 @@ def filter_resource_actions(self, compartment_id, compartment_id_in_subtree, rec # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -480,6 +506,10 @@ def get_category(self, category_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.Category` :rtype: :class:`~oci.response.Response` @@ -491,6 +521,7 @@ def get_category(self, category_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -560,6 +591,10 @@ def get_enrollment_status(self, enrollment_status_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.EnrollmentStatus` :rtype: :class:`~oci.response.Response` @@ -571,6 +606,7 @@ def get_enrollment_status(self, enrollment_status_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -640,6 +676,10 @@ def get_profile(self, profile_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.Profile` :rtype: :class:`~oci.response.Response` @@ -651,6 +691,7 @@ def get_profile(self, profile_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -720,6 +761,10 @@ def get_recommendation(self, recommendation_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.Recommendation` :rtype: :class:`~oci.response.Response` @@ -731,6 +776,7 @@ def get_recommendation(self, recommendation_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -800,6 +846,10 @@ def get_resource_action(self, resource_action_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.ResourceAction` :rtype: :class:`~oci.response.Response` @@ -811,6 +861,7 @@ def get_resource_action(self, resource_action_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -880,6 +931,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -891,6 +946,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -989,6 +1045,10 @@ def list_categories(self, compartment_id, compartment_id_in_subtree, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.CategoryCollection` :rtype: :class:`~oci.response.Response` @@ -1000,6 +1060,7 @@ def list_categories(self, compartment_id, compartment_id_in_subtree, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "limit", @@ -1124,6 +1185,10 @@ def list_enrollment_statuses(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.EnrollmentStatusCollection` :rtype: :class:`~oci.response.Response` @@ -1135,6 +1200,7 @@ def list_enrollment_statuses(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -1283,6 +1349,10 @@ def list_histories(self, compartment_id, compartment_id_in_subtree, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.HistoryCollection` :rtype: :class:`~oci.response.Response` @@ -1294,6 +1364,7 @@ def list_histories(self, compartment_id, compartment_id_in_subtree, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "recommendation_name", @@ -1434,6 +1505,10 @@ def list_profile_levels(self, compartment_id, compartment_id_in_subtree, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.ProfileLevelCollection` :rtype: :class:`~oci.response.Response` @@ -1445,6 +1520,7 @@ def list_profile_levels(self, compartment_id, compartment_id_in_subtree, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "recommendation_name", @@ -1560,6 +1636,10 @@ def list_profiles(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.ProfileCollection` :rtype: :class:`~oci.response.Response` @@ -1571,6 +1651,7 @@ def list_profiles(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "limit", @@ -1695,6 +1776,10 @@ def list_recommendation_strategies(self, compartment_id, compartment_id_in_subtr To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.RecommendationStrategyCollection` :rtype: :class:`~oci.response.Response` @@ -1706,6 +1791,7 @@ def list_recommendation_strategies(self, compartment_id, compartment_id_in_subtr # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "recommendation_name", @@ -1834,6 +1920,10 @@ def list_recommendations(self, compartment_id, compartment_id_in_subtree, catego To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.RecommendationCollection` :rtype: :class:`~oci.response.Response` @@ -1845,6 +1935,7 @@ def list_recommendations(self, compartment_id, compartment_id_in_subtree, catego # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "limit", @@ -1964,6 +2055,10 @@ def list_resource_action_queryable_fields(self, compartment_id, compartment_id_i To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.QueryableFieldCollection` :rtype: :class:`~oci.response.Response` @@ -1975,6 +2070,7 @@ def list_resource_action_queryable_fields(self, compartment_id, compartment_id_i # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -2084,6 +2180,10 @@ def list_resource_actions(self, compartment_id, compartment_id_in_subtree, recom To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.ResourceActionCollection` :rtype: :class:`~oci.response.Response` @@ -2095,6 +2195,7 @@ def list_resource_actions(self, compartment_id, compartment_id_in_subtree, recom # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "resource_type", @@ -2211,6 +2312,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -2222,6 +2327,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -2307,6 +2413,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -2318,6 +2428,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -2403,6 +2514,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.WorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -2414,6 +2529,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "page", "limit", @@ -2492,6 +2608,10 @@ def update_enrollment_status(self, enrollment_status_id, update_enrollment_statu To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.EnrollmentStatus` :rtype: :class:`~oci.response.Response` @@ -2503,6 +2623,7 @@ def update_enrollment_status(self, enrollment_status_id, update_enrollment_statu # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -2586,6 +2707,10 @@ def update_profile(self, profile_id, update_profile_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.Profile` :rtype: :class:`~oci.response.Response` @@ -2597,6 +2722,7 @@ def update_profile(self, profile_id, update_profile_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2685,6 +2811,10 @@ def update_recommendation(self, recommendation_id, update_recommendation_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.Recommendation` :rtype: :class:`~oci.response.Response` @@ -2696,6 +2826,7 @@ def update_recommendation(self, recommendation_id, update_recommendation_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -2784,6 +2915,10 @@ def update_resource_action(self, resource_action_id, update_resource_action_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.optimizer.models.ResourceAction` :rtype: :class:`~oci.response.Response` @@ -2795,6 +2930,7 @@ def update_resource_action(self, resource_action_id, update_resource_action_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" diff --git a/src/oci/optimizer/optimizer_client_composite_operations.py b/src/oci/optimizer/optimizer_client_composite_operations.py index e21344d796..78fa1e686c 100644 --- a/src/oci/optimizer/optimizer_client_composite_operations.py +++ b/src/oci/optimizer/optimizer_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/os_management/__init__.py b/src/oci/os_management/__init__.py index 8b5f565acf..a4ea5b56b9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/os_management/event_client.py b/src/oci/os_management/event_client.py index 427fc06e55..707c6c7943 100644 --- a/src/oci/os_management/event_client.py +++ b/src/oci/os_management/event_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("event", config, signer, os_management_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -138,6 +144,10 @@ def delete_event_content(self, managed_instance_id, event_id, compartment_id, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -149,6 +159,7 @@ def delete_event_content(self, managed_instance_id, event_id, compartment_id, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -234,6 +245,10 @@ def get_event(self, managed_instance_id, event_id, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.Event` :rtype: :class:`~oci.response.Response` @@ -245,6 +260,7 @@ def get_event(self, managed_instance_id, event_id, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -327,6 +343,10 @@ def get_event_content(self, managed_instance_id, event_id, compartment_id, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -338,6 +358,7 @@ def get_event_content(self, managed_instance_id, event_id, compartment_id, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -425,6 +446,10 @@ def get_event_report(self, managed_instance_id, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.EventReport` :rtype: :class:`~oci.response.Response` @@ -436,6 +461,7 @@ def get_event_report(self, managed_instance_id, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "latest_timestamp_less_than", "latest_timestamp_greater_than_or_equal_to", @@ -550,6 +576,10 @@ def list_events(self, managed_instance_id, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.EventCollection` :rtype: :class:`~oci.response.Response` @@ -561,6 +591,7 @@ def list_events(self, managed_instance_id, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "event_id", "limit", @@ -700,6 +731,10 @@ def list_related_events(self, event_fingerprint, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.RelatedEventCollection` :rtype: :class:`~oci.response.Response` @@ -711,6 +746,7 @@ def list_related_events(self, event_fingerprint, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -817,6 +853,10 @@ def update_event(self, managed_instance_id, event_id, compartment_id, update_eve To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.Event` :rtype: :class:`~oci.response.Response` @@ -828,6 +868,7 @@ def update_event(self, managed_instance_id, event_id, compartment_id, update_eve # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -928,6 +969,10 @@ def upload_event_content(self, managed_instance_id, event_id, compartment_id, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -939,6 +984,7 @@ def upload_event_content(self, managed_instance_id, event_id, compartment_id, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", diff --git a/src/oci/os_management/event_client_composite_operations.py b/src/oci/os_management/event_client_composite_operations.py index 55a9817f2a..44739ad5f1 100644 --- a/src/oci/os_management/event_client_composite_operations.py +++ b/src/oci/os_management/event_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/os_management/models/__init__.py b/src/oci/os_management/models/__init__.py index edd6786e80..4c3955049a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 58ab9fb418..90f466efd7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/api_error.py b/src/oci/os_management/models/api_error.py index 07a057324a..a67e08583a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 4195924b43..0bafa18512 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 eb526c6034..393e60ed8a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/autonomous_settings.py b/src/oci/os_management/models/autonomous_settings.py index 6d90625903..4baa6b7d04 100644 --- a/src/oci/os_management/models/autonomous_settings.py +++ b/src/oci/os_management/models/autonomous_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 a2eacc0c9c..1f3b38011e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/available_update_summary.py b/src/oci/os_management/models/available_update_summary.py index 12e3f07c29..d9e9a72b4c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/available_windows_update_summary.py b/src/oci/os_management/models/available_windows_update_summary.py index dfd90ea7d5..bceb85b4ad 100644 --- a/src/oci/os_management/models/available_windows_update_summary.py +++ b/src/oci/os_management/models/available_windows_update_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 9f237ac046..59590ee1fc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 8e4b8b9de5..8d4b883cfe 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 896f79d6f2..94b230a8ab 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/crash_event_system_information.py b/src/oci/os_management/models/crash_event_system_information.py index c3a9dd635d..e93b8908b6 100644 --- a/src/oci/os_management/models/crash_event_system_information.py +++ b/src/oci/os_management/models/crash_event_system_information.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 e25ac02de0..c4baf7185d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 431ea9a9f1..787e074455 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 0a68c3ffad..1bc59d0e0c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 a59763d938..4a9cccbad1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 37b99adde7..7acd129d3f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/errata_id.py b/src/oci/os_management/models/errata_id.py index ca8385f602..84714a2b15 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/erratum.py b/src/oci/os_management/models/erratum.py index 2e800c2d55..26d0623acf 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/erratum_summary.py b/src/oci/os_management/models/erratum_summary.py index cbbfb8a661..d2ee7457d6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/event.py b/src/oci/os_management/models/event.py index 92fb5619f1..7861069e6f 100644 --- a/src/oci/os_management/models/event.py +++ b/src/oci/os_management/models/event.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/event_collection.py b/src/oci/os_management/models/event_collection.py index 21eebb3b69..725579b287 100644 --- a/src/oci/os_management/models/event_collection.py +++ b/src/oci/os_management/models/event_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/event_content.py b/src/oci/os_management/models/event_content.py index 7c7351ea14..071f001ba3 100644 --- a/src/oci/os_management/models/event_content.py +++ b/src/oci/os_management/models/event_content.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/event_report.py b/src/oci/os_management/models/event_report.py index fa9a976f7d..91a88cda43 100644 --- a/src/oci/os_management/models/event_report.py +++ b/src/oci/os_management/models/event_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/event_summary.py b/src/oci/os_management/models/event_summary.py index 66e1a5a610..7fa6744339 100644 --- a/src/oci/os_management/models/event_summary.py +++ b/src/oci/os_management/models/event_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/id.py b/src/oci/os_management/models/id.py index 715e447805..3dc8c439d3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/installable_package_summary.py b/src/oci/os_management/models/installable_package_summary.py index 2cb96ac59a..3538d80cb9 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/installed_package_summary.py b/src/oci/os_management/models/installed_package_summary.py index dd16adf6e1..ba1224287b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/installed_windows_update_summary.py b/src/oci/os_management/models/installed_windows_update_summary.py index fa10f96ee3..bad916e9dc 100644 --- a/src/oci/os_management/models/installed_windows_update_summary.py +++ b/src/oci/os_management/models/installed_windows_update_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/kernel_crash_event.py b/src/oci/os_management/models/kernel_crash_event.py index 9fe597bc5e..d3008e4c11 100644 --- a/src/oci/os_management/models/kernel_crash_event.py +++ b/src/oci/os_management/models/kernel_crash_event.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .event import Event diff --git a/src/oci/os_management/models/kernel_oops_event.py b/src/oci/os_management/models/kernel_oops_event.py index 9c17a4b487..f4e65b84e9 100644 --- a/src/oci/os_management/models/kernel_oops_event.py +++ b/src/oci/os_management/models/kernel_oops_event.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .event import Event diff --git a/src/oci/os_management/models/kernel_vm_core_information.py b/src/oci/os_management/models/kernel_vm_core_information.py index d5eee72173..60b738409d 100644 --- a/src/oci/os_management/models/kernel_vm_core_information.py +++ b/src/oci/os_management/models/kernel_vm_core_information.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/managed_instance.py b/src/oci/os_management/models/managed_instance.py index e859ffed97..57366d26d2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/managed_instance_group.py b/src/oci/os_management/models/managed_instance_group.py index 3ac3ce67dd..1d5713f975 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 89d6407638..04ec86a5a2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/managed_instance_summary.py b/src/oci/os_management/models/managed_instance_summary.py index c4f0eb2e56..1bdb0fba9a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 f0aefaa510..e66aabcfae 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/package_name.py b/src/oci/os_management/models/package_name.py index 54ba316c90..0106a5137d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/recurrence.py b/src/oci/os_management/models/recurrence.py index 4580cdbec5..9e4fe425af 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/related_event_collection.py b/src/oci/os_management/models/related_event_collection.py index 4d8e279c53..baa050bc6d 100644 --- a/src/oci/os_management/models/related_event_collection.py +++ b/src/oci/os_management/models/related_event_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/related_event_summary.py b/src/oci/os_management/models/related_event_summary.py index 3002d618b2..6dedadb994 100644 --- a/src/oci/os_management/models/related_event_summary.py +++ b/src/oci/os_management/models/related_event_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 18b3eb53a9..8f53a5cf79 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/scheduled_job.py b/src/oci/os_management/models/scheduled_job.py index 7ff4e968f0..0aef2a7875 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/scheduled_job_summary.py b/src/oci/os_management/models/scheduled_job_summary.py index 56f6cb687f..e5856b534b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/software_package.py b/src/oci/os_management/models/software_package.py index b220431784..bc1164062b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/software_package_dependency.py b/src/oci/os_management/models/software_package_dependency.py index 13ab128873..e92afa9178 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/software_package_file.py b/src/oci/os_management/models/software_package_file.py index d7cfd73d7b..b2593f8860 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 b369c87685..9a263e5233 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/software_package_summary.py b/src/oci/os_management/models/software_package_summary.py index 6391b0ebea..64542387cb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/software_source.py b/src/oci/os_management/models/software_source.py index d1bdcea15d..1d309998b4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/software_source_id.py b/src/oci/os_management/models/software_source_id.py index 49f50f1f8d..0e9d32fc19 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/software_source_summary.py b/src/oci/os_management/models/software_source_summary.py index 5d21c0047c..e2f6b3843d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/updatable_package_summary.py b/src/oci/os_management/models/updatable_package_summary.py index 9af15ec482..1743fb6f51 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/update_event_details.py b/src/oci/os_management/models/update_event_details.py index 10a1594eb5..a465d51488 100644 --- a/src/oci/os_management/models/update_event_details.py +++ b/src/oci/os_management/models/update_event_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/update_managed_instance_details.py b/src/oci/os_management/models/update_managed_instance_details.py index 1399a885da..c30abc8946 100644 --- a/src/oci/os_management/models/update_managed_instance_details.py +++ b/src/oci/os_management/models/update_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 a80ebcadcc..3510ee48d1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 5946168d80..d515d6127c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 bcf82bcd8e..5c279fb8c2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/windows_update.py b/src/oci/os_management/models/windows_update.py index 946d5ce4bb..f47c20edbe 100644 --- a/src/oci/os_management/models/windows_update.py +++ b/src/oci/os_management/models/windows_update.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/windows_update_summary.py b/src/oci/os_management/models/windows_update_summary.py index b3974bdc50..6f899f0a24 100644 --- a/src/oci/os_management/models/windows_update_summary.py +++ b/src/oci/os_management/models/windows_update_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/work_request.py b/src/oci/os_management/models/work_request.py index fb986b9234..192ab72c23 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/work_request_error.py b/src/oci/os_management/models/work_request_error.py index 6387f3af06..6ef135c18a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 6d51cc2d68..a7469bb849 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/work_request_resource.py b/src/oci/os_management/models/work_request_resource.py index f26c4c2d21..a1aaada56c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/models/work_request_summary.py b/src/oci/os_management/models/work_request_summary.py index c8f34a8c6c..f87443129a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/os_management/os_management_client.py b/src/oci/os_management/os_management_client.py index 1c32cb7103..16909eb783 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("os_management", config, signer, os_management_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -121,6 +127,10 @@ def add_packages_to_software_source(self, software_source_id, add_packages_to_so To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -132,6 +142,7 @@ def add_packages_to_software_source(self, software_source_id, add_packages_to_so # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -212,6 +223,10 @@ def attach_child_software_source_to_managed_instance(self, managed_instance_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -223,6 +238,7 @@ def attach_child_software_source_to_managed_instance(self, managed_instance_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -307,6 +323,10 @@ def attach_managed_instance_to_managed_instance_group(self, managed_instance_gro To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -318,6 +338,7 @@ def attach_managed_instance_to_managed_instance_group(self, managed_instance_gro # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -407,6 +428,10 @@ def attach_parent_software_source_to_managed_instance(self, managed_instance_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -418,6 +443,7 @@ def attach_parent_software_source_to_managed_instance(self, managed_instance_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -507,6 +533,10 @@ def change_managed_instance_group_compartment(self, managed_instance_group_id, c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -518,6 +548,7 @@ def change_managed_instance_group_compartment(self, managed_instance_group_id, c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -609,6 +640,10 @@ def change_scheduled_job_compartment(self, scheduled_job_id, change_scheduled_jo To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -620,6 +655,7 @@ def change_scheduled_job_compartment(self, scheduled_job_id, change_scheduled_jo # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -711,6 +747,10 @@ def change_software_source_compartment(self, software_source_id, change_software To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -722,6 +762,7 @@ def change_software_source_compartment(self, software_source_id, change_software # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -804,6 +845,10 @@ def create_managed_instance_group(self, create_managed_instance_group_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.ManagedInstanceGroup` :rtype: :class:`~oci.response.Response` @@ -815,6 +860,7 @@ def create_managed_instance_group(self, create_managed_instance_group_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -886,6 +932,10 @@ def create_scheduled_job(self, create_scheduled_job_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.ScheduledJob` :rtype: :class:`~oci.response.Response` @@ -897,6 +947,7 @@ def create_scheduled_job(self, create_scheduled_job_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -967,6 +1018,10 @@ def create_software_source(self, create_software_source_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.SoftwareSource` :rtype: :class:`~oci.response.Response` @@ -978,6 +1033,7 @@ def create_software_source(self, create_software_source_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1046,6 +1102,10 @@ def delete_managed_instance_group(self, managed_instance_group_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1057,6 +1117,7 @@ def delete_managed_instance_group(self, managed_instance_group_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1132,6 +1193,10 @@ def delete_scheduled_job(self, scheduled_job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1143,6 +1208,7 @@ def delete_scheduled_job(self, scheduled_job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1218,6 +1284,10 @@ def delete_software_source(self, software_source_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1229,6 +1299,7 @@ def delete_software_source(self, software_source_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1308,6 +1379,10 @@ def detach_child_software_source_from_managed_instance(self, managed_instance_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1319,6 +1394,7 @@ def detach_child_software_source_from_managed_instance(self, managed_instance_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1400,6 +1476,10 @@ def detach_managed_instance_from_managed_instance_group(self, managed_instance_g To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1411,6 +1491,7 @@ def detach_managed_instance_from_managed_instance_group(self, managed_instance_g # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1498,6 +1579,10 @@ def detach_parent_software_source_from_managed_instance(self, managed_instance_i To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1509,6 +1594,7 @@ def detach_parent_software_source_from_managed_instance(self, managed_instance_i # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1580,6 +1666,10 @@ def get_erratum(self, erratum_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.Erratum` :rtype: :class:`~oci.response.Response` @@ -1591,6 +1681,7 @@ def get_erratum(self, erratum_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1659,6 +1750,10 @@ def get_managed_instance(self, managed_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.ManagedInstance` :rtype: :class:`~oci.response.Response` @@ -1670,6 +1765,7 @@ def get_managed_instance(self, managed_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1738,6 +1834,10 @@ def get_managed_instance_group(self, managed_instance_group_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.ManagedInstanceGroup` :rtype: :class:`~oci.response.Response` @@ -1749,6 +1849,7 @@ def get_managed_instance_group(self, managed_instance_group_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1817,6 +1918,10 @@ def get_scheduled_job(self, scheduled_job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.ScheduledJob` :rtype: :class:`~oci.response.Response` @@ -1828,6 +1933,7 @@ def get_scheduled_job(self, scheduled_job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1899,6 +2005,10 @@ def get_software_package(self, software_source_id, software_package_name, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.SoftwarePackage` :rtype: :class:`~oci.response.Response` @@ -1910,6 +2020,7 @@ def get_software_package(self, software_source_id, software_package_name, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1979,6 +2090,10 @@ def get_software_source(self, software_source_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.SoftwareSource` :rtype: :class:`~oci.response.Response` @@ -1990,6 +2105,7 @@ def get_software_source(self, software_source_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2058,6 +2174,10 @@ def get_windows_update(self, windows_update, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.WindowsUpdate` :rtype: :class:`~oci.response.Response` @@ -2069,6 +2189,7 @@ def get_windows_update(self, windows_update, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2137,6 +2258,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -2148,6 +2273,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2228,6 +2354,10 @@ def install_all_package_updates_on_managed_instance(self, managed_instance_id, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2239,6 +2369,7 @@ def install_all_package_updates_on_managed_instance(self, managed_instance_id, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "update_type", "opc_request_id", @@ -2335,6 +2466,10 @@ def install_all_updates_on_managed_instance_group(self, managed_instance_group_i To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2346,6 +2481,7 @@ def install_all_updates_on_managed_instance_group(self, managed_instance_group_i # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "update_type", "opc_request_id", @@ -2442,6 +2578,10 @@ def install_all_windows_updates_on_managed_instance(self, managed_instance_id, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2453,6 +2593,7 @@ def install_all_windows_updates_on_managed_instance(self, managed_instance_id, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "update_type", "opc_request_id", @@ -2547,6 +2688,10 @@ def install_package_on_managed_instance(self, managed_instance_id, software_pack To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2558,6 +2703,7 @@ def install_package_on_managed_instance(self, managed_instance_id, software_pack # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2644,6 +2790,10 @@ def install_package_update_on_managed_instance(self, managed_instance_id, softwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2655,6 +2805,7 @@ def install_package_update_on_managed_instance(self, managed_instance_id, softwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2743,6 +2894,10 @@ def install_windows_update_on_managed_instance(self, managed_instance_id, window To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2754,6 +2909,7 @@ def install_windows_update_on_managed_instance(self, managed_instance_id, window # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -2854,6 +3010,10 @@ def list_available_packages_for_managed_instance(self, managed_instance_id, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.InstallablePackageSummary` :rtype: :class:`~oci.response.Response` @@ -2865,6 +3025,7 @@ def list_available_packages_for_managed_instance(self, managed_instance_id, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "compartment_id", @@ -2989,6 +3150,10 @@ def list_available_software_sources_for_managed_instance(self, managed_instance_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.AvailableSoftwareSourceSummary` :rtype: :class:`~oci.response.Response` @@ -3000,6 +3165,7 @@ def list_available_software_sources_for_managed_instance(self, managed_instance_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "compartment_id", @@ -3124,6 +3290,10 @@ def list_available_updates_for_managed_instance(self, managed_instance_id, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.AvailableUpdateSummary` :rtype: :class:`~oci.response.Response` @@ -3135,6 +3305,7 @@ def list_available_updates_for_managed_instance(self, managed_instance_id, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "compartment_id", @@ -3264,6 +3435,10 @@ def list_available_windows_updates_for_managed_instance(self, managed_instance_i To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.AvailableWindowsUpdateSummary` :rtype: :class:`~oci.response.Response` @@ -3275,6 +3450,7 @@ def list_available_windows_updates_for_managed_instance(self, managed_instance_i # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "compartment_id", @@ -3418,6 +3594,10 @@ def list_errata(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.ErratumSummary` :rtype: :class:`~oci.response.Response` @@ -3429,6 +3609,7 @@ def list_errata(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "erratum_id", @@ -3547,6 +3728,10 @@ def list_managed_instance_errata(self, managed_instance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.ErratumSummary` :rtype: :class:`~oci.response.Response` @@ -3558,6 +3743,7 @@ def list_managed_instance_errata(self, managed_instance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "compartment_id", @@ -3689,6 +3875,10 @@ def list_managed_instance_groups(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.ManagedInstanceGroupSummary` :rtype: :class:`~oci.response.Response` @@ -3700,6 +3890,7 @@ def list_managed_instance_groups(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -3831,6 +4022,10 @@ def list_managed_instances(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.ManagedInstanceSummary` :rtype: :class:`~oci.response.Response` @@ -3842,6 +4037,7 @@ def list_managed_instances(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -3962,6 +4158,10 @@ def list_packages_installed_on_managed_instance(self, managed_instance_id, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.InstalledPackageSummary` :rtype: :class:`~oci.response.Response` @@ -3973,6 +4173,7 @@ def list_packages_installed_on_managed_instance(self, managed_instance_id, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "compartment_id", @@ -4118,6 +4319,10 @@ def list_scheduled_jobs(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.ScheduledJobSummary` :rtype: :class:`~oci.response.Response` @@ -4129,6 +4334,7 @@ def list_scheduled_jobs(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "managed_instance_id", @@ -4273,6 +4479,10 @@ def list_software_source_packages(self, software_source_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.SoftwarePackageSummary` :rtype: :class:`~oci.response.Response` @@ -4284,6 +4494,7 @@ def list_software_source_packages(self, software_source_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "display_name", @@ -4410,6 +4621,10 @@ def list_software_sources(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.SoftwareSourceSummary` :rtype: :class:`~oci.response.Response` @@ -4421,6 +4636,7 @@ def list_software_sources(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -4559,6 +4775,10 @@ def list_upcoming_scheduled_jobs(self, compartment_id, time_end, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.ScheduledJobSummary` :rtype: :class:`~oci.response.Response` @@ -4570,6 +4790,7 @@ def list_upcoming_scheduled_jobs(self, compartment_id, time_end, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -4701,6 +4922,10 @@ def list_windows_updates(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.WindowsUpdateSummary` :rtype: :class:`~oci.response.Response` @@ -4712,6 +4937,7 @@ def list_windows_updates(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "display_name", @@ -4824,6 +5050,10 @@ def list_windows_updates_installed_on_managed_instance(self, managed_instance_id To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.InstalledWindowsUpdateSummary` :rtype: :class:`~oci.response.Response` @@ -4835,6 +5065,7 @@ def list_windows_updates_installed_on_managed_instance(self, managed_instance_id # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "compartment_id", @@ -4951,6 +5182,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -4962,6 +5197,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -5074,6 +5310,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.WorkRequestLogEntry` :rtype: :class:`~oci.response.Response` @@ -5085,6 +5325,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -5210,6 +5451,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.WorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -5221,6 +5466,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "managed_instance_id", @@ -5329,6 +5575,10 @@ def remove_package_from_managed_instance(self, managed_instance_id, software_pac To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5340,6 +5590,7 @@ def remove_package_from_managed_instance(self, managed_instance_id, software_pac # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -5419,6 +5670,10 @@ def remove_packages_from_software_source(self, software_source_id, remove_packag To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5430,6 +5685,7 @@ def remove_packages_from_software_source(self, software_source_id, remove_packag # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -5513,6 +5769,10 @@ def run_scheduled_job_now(self, scheduled_job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5524,6 +5784,7 @@ def run_scheduled_job_now(self, scheduled_job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -5621,6 +5882,10 @@ def search_software_packages(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.os_management.models.SoftwarePackageSearchSummary` :rtype: :class:`~oci.response.Response` @@ -5632,6 +5897,7 @@ def search_software_packages(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "software_package_name", "display_name", @@ -5737,6 +6003,10 @@ def skip_next_scheduled_job_execution(self, scheduled_job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5748,6 +6018,7 @@ def skip_next_scheduled_job_execution(self, scheduled_job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -5829,6 +6100,10 @@ def update_managed_instance(self, managed_instance_id, update_managed_instance_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.ManagedInstance` :rtype: :class:`~oci.response.Response` @@ -5840,6 +6115,7 @@ def update_managed_instance(self, managed_instance_id, update_managed_instance_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -5922,6 +6198,10 @@ def update_managed_instance_group(self, managed_instance_group_id, update_manage To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.ManagedInstanceGroup` :rtype: :class:`~oci.response.Response` @@ -5933,6 +6213,7 @@ def update_managed_instance_group(self, managed_instance_group_id, update_manage # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -6015,6 +6296,10 @@ def update_scheduled_job(self, scheduled_job_id, update_scheduled_job_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.ScheduledJob` :rtype: :class:`~oci.response.Response` @@ -6026,6 +6311,7 @@ def update_scheduled_job(self, scheduled_job_id, update_scheduled_job_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -6108,6 +6394,10 @@ def update_software_source(self, software_source_id, update_software_source_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.os_management.models.SoftwareSource` :rtype: :class:`~oci.response.Response` @@ -6119,6 +6409,7 @@ def update_software_source(self, software_source_id, update_software_source_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" 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 a1185777c5..80bb495956 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/osp_gateway/__init__.py b/src/oci/osp_gateway/__init__.py index bf22fbfd3a..ad14904d19 100644 --- a/src/oci/osp_gateway/__init__.py +++ b/src/oci/osp_gateway/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/osp_gateway/invoice_service_client.py b/src/oci/osp_gateway/invoice_service_client.py index 89cfd43b1d..311106ab18 100644 --- a/src/oci/osp_gateway/invoice_service_client.py +++ b/src/oci/osp_gateway/invoice_service_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("invoice_service", config, signer, osp_gateway_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -126,6 +132,10 @@ def download_pdf_content(self, osp_home_region, compartment_id, internal_invoice To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -137,6 +147,7 @@ def download_pdf_content(self, osp_home_region, compartment_id, internal_invoice # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -222,6 +233,10 @@ def get_invoice(self, osp_home_region, compartment_id, internal_invoice_id, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.osp_gateway.models.Invoice` :rtype: :class:`~oci.response.Response` @@ -233,6 +248,7 @@ def get_invoice(self, osp_home_region, compartment_id, internal_invoice_id, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -324,6 +340,10 @@ def list_invoice_lines(self, osp_home_region, compartment_id, internal_invoice_i To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.osp_gateway.models.InvoiceLineCollection` :rtype: :class:`~oci.response.Response` @@ -335,6 +355,7 @@ def list_invoice_lines(self, osp_home_region, compartment_id, internal_invoice_i # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -468,6 +489,10 @@ def list_invoices(self, osp_home_region, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.osp_gateway.models.InvoiceCollection` :rtype: :class:`~oci.response.Response` @@ -479,6 +504,7 @@ def list_invoices(self, osp_home_region, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "invoice_id", @@ -620,6 +646,10 @@ def pay_invoice(self, osp_home_region, internal_invoice_id, compartment_id, pay_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.osp_gateway.models.PayInvoiceReceipt` :rtype: :class:`~oci.response.Response` @@ -631,6 +661,7 @@ def pay_invoice(self, osp_home_region, internal_invoice_id, compartment_id, pay_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", diff --git a/src/oci/osp_gateway/invoice_service_client_composite_operations.py b/src/oci/osp_gateway/invoice_service_client_composite_operations.py index 54ed07497c..0e492316f4 100644 --- a/src/oci/osp_gateway/invoice_service_client_composite_operations.py +++ b/src/oci/osp_gateway/invoice_service_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/osp_gateway/models/__init__.py b/src/oci/osp_gateway/models/__init__.py index 7370d06ef8..fdf694b6c4 100644 --- a/src/oci/osp_gateway/models/__init__.py +++ b/src/oci/osp_gateway/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/osp_gateway/models/address.py b/src/oci/osp_gateway/models/address.py index a97c1c84f8..bc68244fb9 100644 --- a/src/oci/osp_gateway/models/address.py +++ b/src/oci/osp_gateway/models/address.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/osp_gateway/models/country.py b/src/oci/osp_gateway/models/country.py index 113b42f120..8efa986983 100644 --- a/src/oci/osp_gateway/models/country.py +++ b/src/oci/osp_gateway/models/country.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/osp_gateway/models/credit_card_payment_detail.py b/src/oci/osp_gateway/models/credit_card_payment_detail.py index a77ea5c687..3ecda00dc8 100644 --- a/src/oci/osp_gateway/models/credit_card_payment_detail.py +++ b/src/oci/osp_gateway/models/credit_card_payment_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .payment_detail import PaymentDetail diff --git a/src/oci/osp_gateway/models/currency.py b/src/oci/osp_gateway/models/currency.py index e48d399cb2..6f3d5cf2ce 100644 --- a/src/oci/osp_gateway/models/currency.py +++ b/src/oci/osp_gateway/models/currency.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/osp_gateway/models/invoice.py b/src/oci/osp_gateway/models/invoice.py index c48083a8f1..e82327e714 100644 --- a/src/oci/osp_gateway/models/invoice.py +++ b/src/oci/osp_gateway/models/invoice.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/osp_gateway/models/invoice_collection.py b/src/oci/osp_gateway/models/invoice_collection.py index 9a256ea0f4..e3b7b42e2a 100644 --- a/src/oci/osp_gateway/models/invoice_collection.py +++ b/src/oci/osp_gateway/models/invoice_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/osp_gateway/models/invoice_line_collection.py b/src/oci/osp_gateway/models/invoice_line_collection.py index a37ef2f67c..f5f0869082 100644 --- a/src/oci/osp_gateway/models/invoice_line_collection.py +++ b/src/oci/osp_gateway/models/invoice_line_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/osp_gateway/models/invoice_line_summary.py b/src/oci/osp_gateway/models/invoice_line_summary.py index aca59c07a5..b2390fc927 100644 --- a/src/oci/osp_gateway/models/invoice_line_summary.py +++ b/src/oci/osp_gateway/models/invoice_line_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/osp_gateway/models/invoice_summary.py b/src/oci/osp_gateway/models/invoice_summary.py index e1adf34b3f..9eeb878450 100644 --- a/src/oci/osp_gateway/models/invoice_summary.py +++ b/src/oci/osp_gateway/models/invoice_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/osp_gateway/models/other_payment_detail.py b/src/oci/osp_gateway/models/other_payment_detail.py index e96b95cabf..d00dfd2ce5 100644 --- a/src/oci/osp_gateway/models/other_payment_detail.py +++ b/src/oci/osp_gateway/models/other_payment_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .payment_detail import PaymentDetail diff --git a/src/oci/osp_gateway/models/pay_invoice_details.py b/src/oci/osp_gateway/models/pay_invoice_details.py index 41061d96a7..2b9850d916 100644 --- a/src/oci/osp_gateway/models/pay_invoice_details.py +++ b/src/oci/osp_gateway/models/pay_invoice_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/osp_gateway/models/pay_invoice_receipt.py b/src/oci/osp_gateway/models/pay_invoice_receipt.py index 7ef6d12e30..97480ac60b 100644 --- a/src/oci/osp_gateway/models/pay_invoice_receipt.py +++ b/src/oci/osp_gateway/models/pay_invoice_receipt.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/osp_gateway/models/payment_detail.py b/src/oci/osp_gateway/models/payment_detail.py index 4b2c07e2a4..0dc5f214a7 100644 --- a/src/oci/osp_gateway/models/payment_detail.py +++ b/src/oci/osp_gateway/models/payment_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/osp_gateway/models/paypal_payment_detail.py b/src/oci/osp_gateway/models/paypal_payment_detail.py index 7bfa4f26c3..edfe5a6cac 100644 --- a/src/oci/osp_gateway/models/paypal_payment_detail.py +++ b/src/oci/osp_gateway/models/paypal_payment_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .payment_detail import PaymentDetail diff --git a/src/oci/pagination/__init__.py b/src/oci/pagination/__init__.py index 0c4b21faa7..5a9ef3b6d6 100644 --- a/src/oci/pagination/__init__.py +++ b/src/oci/pagination/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 6a735be4a6..83779a4275 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .. import dns, object_storage diff --git a/src/oci/regions.py b/src/oci/regions.py index f14f38211f..ef97ef2233 100644 --- a/src/oci/regions.py +++ b/src/oci/regions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/regions_definitions.py b/src/oci/regions_definitions.py index efa0850633..d84b782eab 100644 --- a/src/oci/regions_definitions.py +++ b/src/oci/regions_definitions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. REGIONS_SHORT_NAMES = { @@ -32,6 +32,7 @@ 'auh': 'me-abudhabi-1', 'lin': 'eu-milan-1', 'arn': 'eu-stockholm-1', + 'jnb': 'af-johannesburg-1', 'lfi': 'us-langley-1', 'luf': 'us-luke-1', 'ric': 'us-gov-ashburn-1', @@ -72,6 +73,7 @@ 'me-abudhabi-1': 'oc1', 'eu-milan-1': 'oc1', 'eu-stockholm-1': 'oc1', + 'af-johannesburg-1': 'oc1', 'us-langley-1': 'oc2', 'us-luke-1': 'oc2', @@ -123,6 +125,7 @@ 'me-abudhabi-1', 'eu-milan-1', 'eu-stockholm-1', + 'af-johannesburg-1', 'us-langley-1', 'us-luke-1', 'us-gov-ashburn-1', diff --git a/src/oci/request.py b/src/oci/request.py index 33e431dea8..b543199f6d 100644 --- a/src/oci/request.py +++ b/src/oci/request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/__init__.py b/src/oci/resource_manager/__init__.py index b2b0487eaf..b67ef66a11 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/resource_manager/models/__init__.py b/src/oci/resource_manager/models/__init__.py index a6b59a14f8..d5b137a576 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 3d00495518..fbdee7a89f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .job_operation_details import JobOperationDetails 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 041df294b9..02c0849912 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .job_operation_details_summary import JobOperationDetailsSummary 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 98bb803476..ee176b9fee 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/cancellation_details.py b/src/oci/resource_manager/models/cancellation_details.py index e5f3e755ff..999ee2a4dd 100644 --- a/src/oci/resource_manager/models/cancellation_details.py +++ b/src/oci/resource_manager/models/cancellation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/change_configuration_source_provider_compartment_details.py b/src/oci/resource_manager/models/change_configuration_source_provider_compartment_details.py index e387986e32..efbce9b22c 100644 --- a/src/oci/resource_manager/models/change_configuration_source_provider_compartment_details.py +++ b/src/oci/resource_manager/models/change_configuration_source_provider_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 2e8bbb8f32..367aec344b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/change_template_compartment_details.py b/src/oci/resource_manager/models/change_template_compartment_details.py index 27c94f1edc..c4753ff858 100644 --- a/src/oci/resource_manager/models/change_template_compartment_details.py +++ b/src/oci/resource_manager/models/change_template_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/compartment_config_source.py b/src/oci/resource_manager/models/compartment_config_source.py index 9f6f617dda..87b33e3a0a 100644 --- a/src/oci/resource_manager/models/compartment_config_source.py +++ b/src/oci/resource_manager/models/compartment_config_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .config_source import ConfigSource diff --git a/src/oci/resource_manager/models/config_source.py b/src/oci/resource_manager/models/config_source.py index 4e1d17f509..bb6239074c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/config_source_record.py b/src/oci/resource_manager/models/config_source_record.py index ed42a23cd1..b2365b9efd 100644 --- a/src/oci/resource_manager/models/config_source_record.py +++ b/src/oci/resource_manager/models/config_source_record.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/configuration_source_provider.py b/src/oci/resource_manager/models/configuration_source_provider.py index 67b05ce4d5..d110807202 100644 --- a/src/oci/resource_manager/models/configuration_source_provider.py +++ b/src/oci/resource_manager/models/configuration_source_provider.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/configuration_source_provider_collection.py b/src/oci/resource_manager/models/configuration_source_provider_collection.py index 218a6d5d4a..e20c02bfd6 100644 --- a/src/oci/resource_manager/models/configuration_source_provider_collection.py +++ b/src/oci/resource_manager/models/configuration_source_provider_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/configuration_source_provider_summary.py b/src/oci/resource_manager/models/configuration_source_provider_summary.py index 3ca4fc7fd5..5a8bd49f86 100644 --- a/src/oci/resource_manager/models/configuration_source_provider_summary.py +++ b/src/oci/resource_manager/models/configuration_source_provider_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 8f94e01352..48bae7db20 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_job_operation_details import CreateJobOperationDetails diff --git a/src/oci/resource_manager/models/create_compartment_config_source_details.py b/src/oci/resource_manager/models/create_compartment_config_source_details.py index bb7f4806e7..0b812355a4 100644 --- a/src/oci/resource_manager/models/create_compartment_config_source_details.py +++ b/src/oci/resource_manager/models/create_compartment_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_config_source_details import CreateConfigSourceDetails 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 00fcc73691..88dc416c4d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/create_configuration_source_provider_details.py b/src/oci/resource_manager/models/create_configuration_source_provider_details.py index d4de22c96e..3d2d42b6e9 100644 --- a/src/oci/resource_manager/models/create_configuration_source_provider_details.py +++ b/src/oci/resource_manager/models/create_configuration_source_provider_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 be926cbe30..1110f5a07d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_job_operation_details import CreateJobOperationDetails diff --git a/src/oci/resource_manager/models/create_git_config_source_details.py b/src/oci/resource_manager/models/create_git_config_source_details.py index c21db30e7c..e8594b8819 100644 --- a/src/oci/resource_manager/models/create_git_config_source_details.py +++ b/src/oci/resource_manager/models/create_git_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_config_source_details import CreateConfigSourceDetails diff --git a/src/oci/resource_manager/models/create_github_access_token_configuration_source_provider_details.py b/src/oci/resource_manager/models/create_github_access_token_configuration_source_provider_details.py index 69130f2fb1..f8d68b0ccc 100644 --- a/src/oci/resource_manager/models/create_github_access_token_configuration_source_provider_details.py +++ b/src/oci/resource_manager/models/create_github_access_token_configuration_source_provider_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_configuration_source_provider_details import CreateConfigurationSourceProviderDetails diff --git a/src/oci/resource_manager/models/create_gitlab_access_token_configuration_source_provider_details.py b/src/oci/resource_manager/models/create_gitlab_access_token_configuration_source_provider_details.py index 2a3c35ee39..3a35da2a6a 100644 --- a/src/oci/resource_manager/models/create_gitlab_access_token_configuration_source_provider_details.py +++ b/src/oci/resource_manager/models/create_gitlab_access_token_configuration_source_provider_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_configuration_source_provider_details import CreateConfigurationSourceProviderDetails 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 8c83dec49b..fbfad3f59b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_job_operation_details import CreateJobOperationDetails diff --git a/src/oci/resource_manager/models/create_job_details.py b/src/oci/resource_manager/models/create_job_details.py index a221a60735..cb30d20d45 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 a9dc4deefa..65a9469b2c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/create_object_storage_config_source_details.py b/src/oci/resource_manager/models/create_object_storage_config_source_details.py index 77ef1d8725..308ed5a312 100644 --- a/src/oci/resource_manager/models/create_object_storage_config_source_details.py +++ b/src/oci/resource_manager/models/create_object_storage_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_config_source_details import CreateConfigSourceDetails 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 02e3347433..2280815f81 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_job_operation_details import CreateJobOperationDetails diff --git a/src/oci/resource_manager/models/create_stack_details.py b/src/oci/resource_manager/models/create_stack_details.py index 06e68ef8c0..8a55c7fbda 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/create_stack_template_config_source_details.py b/src/oci/resource_manager/models/create_stack_template_config_source_details.py index 369c92928b..8e421ac173 100644 --- a/src/oci/resource_manager/models/create_stack_template_config_source_details.py +++ b/src/oci/resource_manager/models/create_stack_template_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_config_source_details import CreateConfigSourceDetails diff --git a/src/oci/resource_manager/models/create_template_config_source_details.py b/src/oci/resource_manager/models/create_template_config_source_details.py index cc6726e291..7997a398b8 100644 --- a/src/oci/resource_manager/models/create_template_config_source_details.py +++ b/src/oci/resource_manager/models/create_template_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/create_template_details.py b/src/oci/resource_manager/models/create_template_details.py index 89f6c36cb1..1e89bcd81e 100644 --- a/src/oci/resource_manager/models/create_template_details.py +++ b/src/oci/resource_manager/models/create_template_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/create_template_zip_upload_config_source_details.py b/src/oci/resource_manager/models/create_template_zip_upload_config_source_details.py index ef4ba4370a..1176fc6e48 100644 --- a/src/oci/resource_manager/models/create_template_zip_upload_config_source_details.py +++ b/src/oci/resource_manager/models/create_template_zip_upload_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_template_config_source_details import CreateTemplateConfigSourceDetails 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 6c6219ea45..52a7669891 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_config_source_details import CreateConfigSourceDetails 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 6b03d84df6..8165759fab 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .job_operation_details import JobOperationDetails 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 2ab5a6ce11..315e5d73f5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .job_operation_details_summary import JobOperationDetailsSummary diff --git a/src/oci/resource_manager/models/detect_stack_drift_details.py b/src/oci/resource_manager/models/detect_stack_drift_details.py index 32ae9115e2..bcbb2932a8 100644 --- a/src/oci/resource_manager/models/detect_stack_drift_details.py +++ b/src/oci/resource_manager/models/detect_stack_drift_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/failure_details.py b/src/oci/resource_manager/models/failure_details.py index e46eaf30a7..82d4cf9100 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/git_config_source.py b/src/oci/resource_manager/models/git_config_source.py index a0bf8dbe08..36bf09d8cf 100644 --- a/src/oci/resource_manager/models/git_config_source.py +++ b/src/oci/resource_manager/models/git_config_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .config_source import ConfigSource diff --git a/src/oci/resource_manager/models/git_config_source_record.py b/src/oci/resource_manager/models/git_config_source_record.py index 768fd4468b..a6748b09de 100644 --- a/src/oci/resource_manager/models/git_config_source_record.py +++ b/src/oci/resource_manager/models/git_config_source_record.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .config_source_record import ConfigSourceRecord diff --git a/src/oci/resource_manager/models/github_access_token_configuration_source_provider.py b/src/oci/resource_manager/models/github_access_token_configuration_source_provider.py index 517a1ded9d..0724b88465 100644 --- a/src/oci/resource_manager/models/github_access_token_configuration_source_provider.py +++ b/src/oci/resource_manager/models/github_access_token_configuration_source_provider.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .configuration_source_provider import ConfigurationSourceProvider diff --git a/src/oci/resource_manager/models/github_access_token_configuration_source_provider_summary.py b/src/oci/resource_manager/models/github_access_token_configuration_source_provider_summary.py index 697cfd7973..07e17e6dfa 100644 --- a/src/oci/resource_manager/models/github_access_token_configuration_source_provider_summary.py +++ b/src/oci/resource_manager/models/github_access_token_configuration_source_provider_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .configuration_source_provider_summary import ConfigurationSourceProviderSummary diff --git a/src/oci/resource_manager/models/gitlab_access_token_configuration_source_provider.py b/src/oci/resource_manager/models/gitlab_access_token_configuration_source_provider.py index 7b500802a7..0c9826a2f3 100644 --- a/src/oci/resource_manager/models/gitlab_access_token_configuration_source_provider.py +++ b/src/oci/resource_manager/models/gitlab_access_token_configuration_source_provider.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .configuration_source_provider import ConfigurationSourceProvider diff --git a/src/oci/resource_manager/models/gitlab_access_token_configuration_source_provider_summary.py b/src/oci/resource_manager/models/gitlab_access_token_configuration_source_provider_summary.py index 4ce2091768..7dc9ad5557 100644 --- a/src/oci/resource_manager/models/gitlab_access_token_configuration_source_provider_summary.py +++ b/src/oci/resource_manager/models/gitlab_access_token_configuration_source_provider_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .configuration_source_provider_summary import ConfigurationSourceProviderSummary 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 aee5004606..4f516bc0b8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .job_operation_details import JobOperationDetails 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 02543308ad..d611d81349 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .job_operation_details_summary import JobOperationDetailsSummary diff --git a/src/oci/resource_manager/models/job.py b/src/oci/resource_manager/models/job.py index e80815a027..fc571985bb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/job_operation_details.py b/src/oci/resource_manager/models/job_operation_details.py index 0f6b5286dd..27bd30d8e3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 7dc56a9ac5..dbf7a6e854 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/job_summary.py b/src/oci/resource_manager/models/job_summary.py index 55bd1e59b2..f0a485f79b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/log_entry.py b/src/oci/resource_manager/models/log_entry.py index f0ce90677e..ae214d7789 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/object_storage_config_source.py b/src/oci/resource_manager/models/object_storage_config_source.py index 5ffab6a28c..dc099d97f9 100644 --- a/src/oci/resource_manager/models/object_storage_config_source.py +++ b/src/oci/resource_manager/models/object_storage_config_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .config_source import ConfigSource diff --git a/src/oci/resource_manager/models/object_storage_config_source_record.py b/src/oci/resource_manager/models/object_storage_config_source_record.py index ed19d4a968..22bd1cf0a4 100644 --- a/src/oci/resource_manager/models/object_storage_config_source_record.py +++ b/src/oci/resource_manager/models/object_storage_config_source_record.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .config_source_record import ConfigSourceRecord 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 fb51a334b8..96382cd84d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .job_operation_details import JobOperationDetails 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 416f3844d7..55bea69400 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .job_operation_details_summary import JobOperationDetailsSummary diff --git a/src/oci/resource_manager/models/resource_discovery_service_collection.py b/src/oci/resource_manager/models/resource_discovery_service_collection.py index e646a06c91..c49c8ed7ed 100644 --- a/src/oci/resource_manager/models/resource_discovery_service_collection.py +++ b/src/oci/resource_manager/models/resource_discovery_service_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/resource_discovery_service_summary.py b/src/oci/resource_manager/models/resource_discovery_service_summary.py index f2856e0114..96f86bfe40 100644 --- a/src/oci/resource_manager/models/resource_discovery_service_summary.py +++ b/src/oci/resource_manager/models/resource_discovery_service_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/stack.py b/src/oci/resource_manager/models/stack.py index d0ceb61be8..9ff640f6ef 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/stack_resource_drift_collection.py b/src/oci/resource_manager/models/stack_resource_drift_collection.py index 66578c6db5..8c0f1d879f 100644 --- a/src/oci/resource_manager/models/stack_resource_drift_collection.py +++ b/src/oci/resource_manager/models/stack_resource_drift_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/stack_resource_drift_summary.py b/src/oci/resource_manager/models/stack_resource_drift_summary.py index 85211eaf04..ca0cc211c8 100644 --- a/src/oci/resource_manager/models/stack_resource_drift_summary.py +++ b/src/oci/resource_manager/models/stack_resource_drift_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/stack_summary.py b/src/oci/resource_manager/models/stack_summary.py index 2cea502773..f3615a0c9f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/template.py b/src/oci/resource_manager/models/template.py index 7ea6f7e476..2eccc7ea1f 100644 --- a/src/oci/resource_manager/models/template.py +++ b/src/oci/resource_manager/models/template.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/template_category_summary.py b/src/oci/resource_manager/models/template_category_summary.py index 98d422f7d0..c71dbb1599 100644 --- a/src/oci/resource_manager/models/template_category_summary.py +++ b/src/oci/resource_manager/models/template_category_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/template_category_summary_collection.py b/src/oci/resource_manager/models/template_category_summary_collection.py index bf898311e9..2d65c54697 100644 --- a/src/oci/resource_manager/models/template_category_summary_collection.py +++ b/src/oci/resource_manager/models/template_category_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/template_config_source.py b/src/oci/resource_manager/models/template_config_source.py index 4fb1b159f4..3290c7a4a0 100644 --- a/src/oci/resource_manager/models/template_config_source.py +++ b/src/oci/resource_manager/models/template_config_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/template_summary.py b/src/oci/resource_manager/models/template_summary.py index ee2c039ad0..bdfefffab1 100644 --- a/src/oci/resource_manager/models/template_summary.py +++ b/src/oci/resource_manager/models/template_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/template_summary_collection.py b/src/oci/resource_manager/models/template_summary_collection.py index 9b19e7bd09..1c1d270b94 100644 --- a/src/oci/resource_manager/models/template_summary_collection.py +++ b/src/oci/resource_manager/models/template_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/template_zip_upload_config_source.py b/src/oci/resource_manager/models/template_zip_upload_config_source.py index 1e99b319f8..81b2fd383d 100644 --- a/src/oci/resource_manager/models/template_zip_upload_config_source.py +++ b/src/oci/resource_manager/models/template_zip_upload_config_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .template_config_source import TemplateConfigSource diff --git a/src/oci/resource_manager/models/terraform_advanced_options.py b/src/oci/resource_manager/models/terraform_advanced_options.py index 6ab6a3c03b..19c0bf2c90 100644 --- a/src/oci/resource_manager/models/terraform_advanced_options.py +++ b/src/oci/resource_manager/models/terraform_advanced_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/terraform_version_collection.py b/src/oci/resource_manager/models/terraform_version_collection.py index 17c74522ce..f544de1d33 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/terraform_version_summary.py b/src/oci/resource_manager/models/terraform_version_summary.py index 6fe19f5c7e..38a9ea0bf3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 6723af980b..4e9d65c375 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/update_configuration_source_provider_details.py b/src/oci/resource_manager/models/update_configuration_source_provider_details.py index b667f5da88..370ef1c318 100644 --- a/src/oci/resource_manager/models/update_configuration_source_provider_details.py +++ b/src/oci/resource_manager/models/update_configuration_source_provider_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/update_git_config_source_details.py b/src/oci/resource_manager/models/update_git_config_source_details.py index 7e8e6f999d..72c570d9da 100644 --- a/src/oci/resource_manager/models/update_git_config_source_details.py +++ b/src/oci/resource_manager/models/update_git_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_config_source_details import UpdateConfigSourceDetails diff --git a/src/oci/resource_manager/models/update_github_access_token_configuration_source_provider_details.py b/src/oci/resource_manager/models/update_github_access_token_configuration_source_provider_details.py index f62295d6bd..61a8319940 100644 --- a/src/oci/resource_manager/models/update_github_access_token_configuration_source_provider_details.py +++ b/src/oci/resource_manager/models/update_github_access_token_configuration_source_provider_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_configuration_source_provider_details import UpdateConfigurationSourceProviderDetails diff --git a/src/oci/resource_manager/models/update_gitlab_access_token_configuration_source_provider_details.py b/src/oci/resource_manager/models/update_gitlab_access_token_configuration_source_provider_details.py index fcf567db1a..82e568b761 100644 --- a/src/oci/resource_manager/models/update_gitlab_access_token_configuration_source_provider_details.py +++ b/src/oci/resource_manager/models/update_gitlab_access_token_configuration_source_provider_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_configuration_source_provider_details import UpdateConfigurationSourceProviderDetails diff --git a/src/oci/resource_manager/models/update_job_details.py b/src/oci/resource_manager/models/update_job_details.py index b511f04069..f53c33de2a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/update_object_storage_config_source_details.py b/src/oci/resource_manager/models/update_object_storage_config_source_details.py index a95e651516..46cfdfc571 100644 --- a/src/oci/resource_manager/models/update_object_storage_config_source_details.py +++ b/src/oci/resource_manager/models/update_object_storage_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_config_source_details import UpdateConfigSourceDetails diff --git a/src/oci/resource_manager/models/update_stack_details.py b/src/oci/resource_manager/models/update_stack_details.py index b5687e7004..266b607fca 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/update_template_config_source_details.py b/src/oci/resource_manager/models/update_template_config_source_details.py index a71e8bb701..16d5c934f2 100644 --- a/src/oci/resource_manager/models/update_template_config_source_details.py +++ b/src/oci/resource_manager/models/update_template_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/update_template_details.py b/src/oci/resource_manager/models/update_template_details.py index fd189d5af7..5841729d3e 100644 --- a/src/oci/resource_manager/models/update_template_details.py +++ b/src/oci/resource_manager/models/update_template_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/update_template_zip_upload_config_source_details.py b/src/oci/resource_manager/models/update_template_zip_upload_config_source_details.py index ac5580eac2..d7f9de2870 100644 --- a/src/oci/resource_manager/models/update_template_zip_upload_config_source_details.py +++ b/src/oci/resource_manager/models/update_template_zip_upload_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_template_config_source_details import UpdateTemplateConfigSourceDetails 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 0bba123324..c2a6b823c2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_config_source_details import UpdateConfigSourceDetails diff --git a/src/oci/resource_manager/models/work_request.py b/src/oci/resource_manager/models/work_request.py index 043053b691..613094bbe4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/work_request_error.py b/src/oci/resource_manager/models/work_request_error.py index f2caaec442..c26d3a0664 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 3cd7f5935a..4fd431c31a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/work_request_resource.py b/src/oci/resource_manager/models/work_request_resource.py index ed097a4246..0c5951f6bb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_manager/models/work_request_summary.py b/src/oci/resource_manager/models/work_request_summary.py index 41236a234b..e734d23dba 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 d3c568a542..47d17ab18d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .config_source import ConfigSource diff --git a/src/oci/resource_manager/models/zip_upload_config_source_record.py b/src/oci/resource_manager/models/zip_upload_config_source_record.py index 87df0ef8a1..9bc717ee2e 100644 --- a/src/oci/resource_manager/models/zip_upload_config_source_record.py +++ b/src/oci/resource_manager/models/zip_upload_config_source_record.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .config_source_record import ConfigSourceRecord diff --git a/src/oci/resource_manager/resource_manager_client.py b/src/oci/resource_manager/resource_manager_client.py index 5ebd5891e1..0c64757e17 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -67,6 +67,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -97,6 +101,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("resource_manager", config, signer, resource_manager_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -138,6 +144,10 @@ def cancel_job(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -149,6 +159,7 @@ def cancel_job(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -247,6 +258,10 @@ def change_configuration_source_provider_compartment(self, configuration_source_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -258,6 +273,7 @@ def change_configuration_source_provider_compartment(self, configuration_source_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -349,6 +365,10 @@ def change_stack_compartment(self, stack_id, change_stack_compartment_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -360,6 +380,7 @@ def change_stack_compartment(self, stack_id, change_stack_compartment_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -455,6 +476,10 @@ def change_template_compartment(self, template_id, change_template_compartment_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -466,6 +491,7 @@ def change_template_compartment(self, template_id, change_template_compartment_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -551,6 +577,10 @@ def create_configuration_source_provider(self, create_configuration_source_provi To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.ConfigurationSourceProvider` :rtype: :class:`~oci.response.Response` @@ -562,6 +592,7 @@ def create_configuration_source_provider(self, create_configuration_source_provi # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -631,6 +662,10 @@ def create_job(self, create_job_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.Job` :rtype: :class:`~oci.response.Response` @@ -642,6 +677,7 @@ def create_job(self, create_job_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -719,6 +755,10 @@ def create_stack(self, create_stack_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.Stack` :rtype: :class:`~oci.response.Response` @@ -730,6 +770,7 @@ def create_stack(self, create_stack_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -799,6 +840,10 @@ def create_template(self, create_template_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.Template` :rtype: :class:`~oci.response.Response` @@ -810,6 +855,7 @@ def create_template(self, create_template_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -879,6 +925,10 @@ def delete_configuration_source_provider(self, configuration_source_provider_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -890,6 +940,7 @@ def delete_configuration_source_provider(self, configuration_source_provider_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -966,6 +1017,10 @@ def delete_stack(self, stack_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -977,6 +1032,7 @@ def delete_stack(self, stack_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1053,6 +1109,10 @@ def delete_template(self, template_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1064,6 +1124,7 @@ def delete_template(self, template_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1150,6 +1211,10 @@ def detect_stack_drift(self, stack_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1161,6 +1226,7 @@ def detect_stack_drift(self, stack_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1238,6 +1304,10 @@ def get_configuration_source_provider(self, configuration_source_provider_id, ** To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.ConfigurationSourceProvider` :rtype: :class:`~oci.response.Response` @@ -1249,6 +1319,7 @@ def get_configuration_source_provider(self, configuration_source_provider_id, ** # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1320,6 +1391,10 @@ def get_job(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.Job` :rtype: :class:`~oci.response.Response` @@ -1331,6 +1406,7 @@ def get_job(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1404,6 +1480,10 @@ def get_job_detailed_log_content(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type str :rtype: :class:`~oci.response.Response` @@ -1415,6 +1495,7 @@ def get_job_detailed_log_content(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1521,6 +1602,10 @@ def get_job_logs(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.resource_manager.models.LogEntry` :rtype: :class:`~oci.response.Response` @@ -1532,6 +1617,7 @@ def get_job_logs(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "type", @@ -1637,6 +1723,10 @@ def get_job_logs_content(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type str :rtype: :class:`~oci.response.Response` @@ -1648,6 +1738,7 @@ def get_job_logs_content(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1720,6 +1811,10 @@ def get_job_tf_config(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -1731,6 +1826,7 @@ def get_job_tf_config(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1802,6 +1898,10 @@ def get_job_tf_state(self, job_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -1813,6 +1913,7 @@ def get_job_tf_state(self, job_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1884,6 +1985,10 @@ def get_stack(self, stack_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.Stack` :rtype: :class:`~oci.response.Response` @@ -1895,6 +2000,7 @@ def get_stack(self, stack_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1967,6 +2073,10 @@ def get_stack_tf_config(self, stack_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -1978,6 +2088,7 @@ def get_stack_tf_config(self, stack_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2049,6 +2160,10 @@ def get_stack_tf_state(self, stack_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -2060,6 +2175,7 @@ def get_stack_tf_state(self, stack_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2131,6 +2247,10 @@ def get_template(self, template_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.Template` :rtype: :class:`~oci.response.Response` @@ -2142,6 +2262,7 @@ def get_template(self, template_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2214,6 +2335,10 @@ def get_template_logo(self, template_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -2225,6 +2350,7 @@ def get_template_logo(self, template_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2297,6 +2423,10 @@ def get_template_tf_config(self, template_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -2308,6 +2438,7 @@ def get_template_tf_config(self, template_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2379,6 +2510,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -2390,6 +2525,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2501,6 +2637,10 @@ def list_configuration_source_providers(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.ConfigurationSourceProviderCollection` :rtype: :class:`~oci.response.Response` @@ -2512,6 +2652,7 @@ def list_configuration_source_providers(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "compartment_id", @@ -2669,6 +2810,10 @@ def list_jobs(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.resource_manager.models.JobSummary` :rtype: :class:`~oci.response.Response` @@ -2680,6 +2825,7 @@ def list_jobs(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "compartment_id", @@ -2786,6 +2932,10 @@ def list_resource_discovery_services(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.ResourceDiscoveryServiceCollection` :rtype: :class:`~oci.response.Response` @@ -2797,6 +2947,7 @@ def list_resource_discovery_services(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "compartment_id" @@ -2893,6 +3044,10 @@ def list_stack_resource_drift_details(self, stack_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.StackResourceDriftCollection` :rtype: :class:`~oci.response.Response` @@ -2904,6 +3059,7 @@ def list_stack_resource_drift_details(self, stack_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "work_request_id", @@ -3043,6 +3199,10 @@ def list_stacks(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.resource_manager.models.StackSummary` :rtype: :class:`~oci.response.Response` @@ -3054,6 +3214,7 @@ def list_stacks(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "compartment_id", @@ -3151,6 +3312,10 @@ def list_template_categories(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.TemplateCategorySummaryCollection` :rtype: :class:`~oci.response.Response` @@ -3162,6 +3327,7 @@ def list_template_categories(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3261,6 +3427,10 @@ def list_templates(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.TemplateSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -3272,6 +3442,7 @@ def list_templates(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "compartment_id", @@ -3367,6 +3538,10 @@ def list_terraform_versions(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.TerraformVersionCollection` :rtype: :class:`~oci.response.Response` @@ -3378,6 +3553,7 @@ def list_terraform_versions(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "compartment_id" @@ -3467,6 +3643,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.resource_manager.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -3478,6 +3658,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "limit", @@ -3592,6 +3773,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.resource_manager.models.WorkRequestLogEntry` :rtype: :class:`~oci.response.Response` @@ -3603,6 +3788,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "limit", @@ -3712,6 +3898,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.resource_manager.models.WorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -3723,6 +3913,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "resource_id", "limit", @@ -3807,6 +3998,10 @@ def update_configuration_source_provider(self, configuration_source_provider_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.ConfigurationSourceProvider` :rtype: :class:`~oci.response.Response` @@ -3818,6 +4013,7 @@ def update_configuration_source_provider(self, configuration_source_provider_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -3901,6 +4097,10 @@ def update_job(self, job_id, update_job_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.Job` :rtype: :class:`~oci.response.Response` @@ -3912,6 +4112,7 @@ def update_job(self, job_id, update_job_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -4003,6 +4204,10 @@ def update_stack(self, stack_id, update_stack_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.Stack` :rtype: :class:`~oci.response.Response` @@ -4014,6 +4219,7 @@ def update_stack(self, stack_id, update_stack_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -4097,6 +4303,10 @@ def update_template(self, template_id, update_template_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_manager.models.Template` :rtype: :class:`~oci.response.Response` @@ -4108,6 +4318,7 @@ def update_template(self, template_id, update_template_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" 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 33a969517e..ccf047a155 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/resource_search/__init__.py b/src/oci/resource_search/__init__.py index 143dc4d9c7..ba18815ef6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/resource_search/models/__init__.py b/src/oci/resource_search/models/__init__.py index 5f2a640ccd..d8eb78d98c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 b7a9f49cce..da99175672 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .search_details import SearchDetails diff --git a/src/oci/resource_search/models/queryable_field_description.py b/src/oci/resource_search/models/queryable_field_description.py index 5bc482a8db..27c6b9da8b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_search/models/resource_summary.py b/src/oci/resource_search/models/resource_summary.py index 7781213698..41fc9c8f4d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_search/models/resource_summary_collection.py b/src/oci/resource_search/models/resource_summary_collection.py index 46a3315f14..eee2527485 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_search/models/resource_type.py b/src/oci/resource_search/models/resource_type.py index f2514d9a9f..bfbcee005d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_search/models/search_context.py b/src/oci/resource_search/models/search_context.py index dc4fdc83f5..daa7c51ed1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_search/models/search_details.py b/src/oci/resource_search/models/search_details.py index 27941bd170..f5c6603be3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/resource_search/models/structured_search_details.py b/src/oci/resource_search/models/structured_search_details.py index 05dea9d97d..39b11d3add 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .search_details import SearchDetails diff --git a/src/oci/resource_search/resource_search_client.py b/src/oci/resource_search/resource_search_client.py index 0297e8e544..8cadca6fb7 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("resource_search", config, signer, resource_search_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -118,6 +124,10 @@ def get_resource_type(self, name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_search.models.ResourceType` :rtype: :class:`~oci.response.Response` @@ -129,6 +139,7 @@ def get_resource_type(self, name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -201,6 +212,10 @@ def list_resource_types(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.resource_search.models.ResourceType` :rtype: :class:`~oci.response.Response` @@ -212,6 +227,7 @@ def list_resource_types(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -290,6 +306,10 @@ def search_resources(self, search_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.resource_search.models.ResourceSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -301,6 +321,7 @@ def search_resources(self, search_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", 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 bff33b7870..f16e870591 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/response.py b/src/oci/response.py index 225a558662..7cd7906e10 100644 --- a/src/oci/response.py +++ b/src/oci/response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .constants import HEADER_NEXT_PAGE, HEADER_REQUEST_ID diff --git a/src/oci/retry/__init__.py b/src/oci/retry/__init__.py index 6240e7a085..990ac80199 100644 --- a/src/oci/retry/__init__.py +++ b/src/oci/retry/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .retry import BACKOFF_FULL_JITTER_VALUE, BACKOFF_EQUAL_JITTER_VALUE, BACKOFF_FULL_JITTER_EQUAL_ON_THROTTLE_VALUE, \ diff --git a/src/oci/retry/retry.py b/src/oci/retry/retry.py index e103a78745..9ed8e1ee3e 100644 --- a/src/oci/retry/retry.py +++ b/src/oci/retry/retry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 84fb860983..7b40f0d13b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Contains helper classes that can say whether a retry should occur based on various criteria, such as a maximum number of retries being diff --git a/src/oci/retry/retry_sleep_utils.py b/src/oci/retry/retry_sleep_utils.py index cf1f685319..00f756eaf1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import random diff --git a/src/oci/rover/__init__.py b/src/oci/rover/__init__.py index b44a963f0b..294bb26920 100644 --- a/src/oci/rover/__init__.py +++ b/src/oci/rover/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/rover/models/__init__.py b/src/oci/rover/models/__init__.py index 86a439e6ed..fb0314a7e1 100644 --- a/src/oci/rover/models/__init__.py +++ b/src/oci/rover/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/rover/models/change_rover_cluster_compartment_details.py b/src/oci/rover/models/change_rover_cluster_compartment_details.py index d54ca4fbf3..7c92592d1a 100644 --- a/src/oci/rover/models/change_rover_cluster_compartment_details.py +++ b/src/oci/rover/models/change_rover_cluster_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/change_rover_entitlement_compartment_details.py b/src/oci/rover/models/change_rover_entitlement_compartment_details.py index 29bbd3a233..969b7e1786 100644 --- a/src/oci/rover/models/change_rover_entitlement_compartment_details.py +++ b/src/oci/rover/models/change_rover_entitlement_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/change_rover_node_compartment_details.py b/src/oci/rover/models/change_rover_node_compartment_details.py index e6e7694541..22002d0370 100644 --- a/src/oci/rover/models/change_rover_node_compartment_details.py +++ b/src/oci/rover/models/change_rover_node_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/create_rover_cluster_details.py b/src/oci/rover/models/create_rover_cluster_details.py index 1568e6256c..99cad5e748 100644 --- a/src/oci/rover/models/create_rover_cluster_details.py +++ b/src/oci/rover/models/create_rover_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/create_rover_entitlement_details.py b/src/oci/rover/models/create_rover_entitlement_details.py index 0403d30c8c..b640b8fc56 100644 --- a/src/oci/rover/models/create_rover_entitlement_details.py +++ b/src/oci/rover/models/create_rover_entitlement_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/create_rover_node_details.py b/src/oci/rover/models/create_rover_node_details.py index c77d37b2de..084bf6429f 100644 --- a/src/oci/rover/models/create_rover_node_details.py +++ b/src/oci/rover/models/create_rover_node_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/rover_cluster.py b/src/oci/rover/models/rover_cluster.py index 64e0f8615a..e7e97e49d8 100644 --- a/src/oci/rover/models/rover_cluster.py +++ b/src/oci/rover/models/rover_cluster.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/rover_cluster_certificate.py b/src/oci/rover/models/rover_cluster_certificate.py index 75712196aa..f3e088c8fa 100644 --- a/src/oci/rover/models/rover_cluster_certificate.py +++ b/src/oci/rover/models/rover_cluster_certificate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/rover_cluster_collection.py b/src/oci/rover/models/rover_cluster_collection.py index b226ae547a..9dd8ea556a 100644 --- a/src/oci/rover/models/rover_cluster_collection.py +++ b/src/oci/rover/models/rover_cluster_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/rover_cluster_summary.py b/src/oci/rover/models/rover_cluster_summary.py index 53cd89adb7..c4b2bec169 100644 --- a/src/oci/rover/models/rover_cluster_summary.py +++ b/src/oci/rover/models/rover_cluster_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/rover_entitlement.py b/src/oci/rover/models/rover_entitlement.py index 597ae62f6f..15bc1bbfb8 100644 --- a/src/oci/rover/models/rover_entitlement.py +++ b/src/oci/rover/models/rover_entitlement.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/rover_entitlement_collection.py b/src/oci/rover/models/rover_entitlement_collection.py index 350c185069..b2ac94ff7e 100644 --- a/src/oci/rover/models/rover_entitlement_collection.py +++ b/src/oci/rover/models/rover_entitlement_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/rover_entitlement_summary.py b/src/oci/rover/models/rover_entitlement_summary.py index c58707af10..4097c978ec 100644 --- a/src/oci/rover/models/rover_entitlement_summary.py +++ b/src/oci/rover/models/rover_entitlement_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/rover_node.py b/src/oci/rover/models/rover_node.py index 37fdf6c012..4e497f41ac 100644 --- a/src/oci/rover/models/rover_node.py +++ b/src/oci/rover/models/rover_node.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/rover_node_action_set_key_details.py b/src/oci/rover/models/rover_node_action_set_key_details.py index 95cfbe628e..cc0e545a4e 100644 --- a/src/oci/rover/models/rover_node_action_set_key_details.py +++ b/src/oci/rover/models/rover_node_action_set_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/rover_node_certificate.py b/src/oci/rover/models/rover_node_certificate.py index 17694c97bd..0557927904 100644 --- a/src/oci/rover/models/rover_node_certificate.py +++ b/src/oci/rover/models/rover_node_certificate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/rover_node_collection.py b/src/oci/rover/models/rover_node_collection.py index bd4fe0135e..361f1225bf 100644 --- a/src/oci/rover/models/rover_node_collection.py +++ b/src/oci/rover/models/rover_node_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/rover_node_encryption_key.py b/src/oci/rover/models/rover_node_encryption_key.py index 371ce79faf..4d90408185 100644 --- a/src/oci/rover/models/rover_node_encryption_key.py +++ b/src/oci/rover/models/rover_node_encryption_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/rover_node_get_rpt.py b/src/oci/rover/models/rover_node_get_rpt.py index 204ad54b88..d95e74a834 100644 --- a/src/oci/rover/models/rover_node_get_rpt.py +++ b/src/oci/rover/models/rover_node_get_rpt.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/rover_node_set_key.py b/src/oci/rover/models/rover_node_set_key.py index c059da4d99..3eeec0775f 100644 --- a/src/oci/rover/models/rover_node_set_key.py +++ b/src/oci/rover/models/rover_node_set_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/rover_node_summary.py b/src/oci/rover/models/rover_node_summary.py index 03db489faf..9e2969531f 100644 --- a/src/oci/rover/models/rover_node_summary.py +++ b/src/oci/rover/models/rover_node_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/rover_workload.py b/src/oci/rover/models/rover_workload.py index 0170e6ba46..403898dc92 100644 --- a/src/oci/rover/models/rover_workload.py +++ b/src/oci/rover/models/rover_workload.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/shipping_address.py b/src/oci/rover/models/shipping_address.py index d6051687e3..a3afea9fc3 100644 --- a/src/oci/rover/models/shipping_address.py +++ b/src/oci/rover/models/shipping_address.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/update_rover_cluster_details.py b/src/oci/rover/models/update_rover_cluster_details.py index d165bdaff3..c2e5e100ab 100644 --- a/src/oci/rover/models/update_rover_cluster_details.py +++ b/src/oci/rover/models/update_rover_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/update_rover_entitlement_details.py b/src/oci/rover/models/update_rover_entitlement_details.py index a98453ab75..8992819d0d 100644 --- a/src/oci/rover/models/update_rover_entitlement_details.py +++ b/src/oci/rover/models/update_rover_entitlement_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/models/update_rover_node_details.py b/src/oci/rover/models/update_rover_node_details.py index 187ca886ee..89dbab0d8a 100644 --- a/src/oci/rover/models/update_rover_node_details.py +++ b/src/oci/rover/models/update_rover_node_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/rover/rover_cluster_client.py b/src/oci/rover/rover_cluster_client.py index 42b237a7b0..ddf8671942 100644 --- a/src/oci/rover/rover_cluster_client.py +++ b/src/oci/rover/rover_cluster_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("rover_cluster", config, signer, rover_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -134,6 +140,10 @@ def change_rover_cluster_compartment(self, rover_cluster_id, change_rover_cluste To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -145,6 +155,7 @@ def change_rover_cluster_compartment(self, rover_cluster_id, change_rover_cluste # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -227,6 +238,10 @@ def create_rover_cluster(self, create_rover_cluster_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.rover.models.RoverCluster` :rtype: :class:`~oci.response.Response` @@ -238,6 +253,7 @@ def create_rover_cluster(self, create_rover_cluster_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -315,6 +331,10 @@ def delete_rover_cluster(self, rover_cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -326,6 +346,7 @@ def delete_rover_cluster(self, rover_cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -399,6 +420,10 @@ def get_rover_cluster(self, rover_cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.rover.models.RoverCluster` :rtype: :class:`~oci.response.Response` @@ -410,6 +435,7 @@ def get_rover_cluster(self, rover_cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -480,6 +506,10 @@ def get_rover_cluster_certificate(self, rover_cluster_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.rover.models.RoverClusterCertificate` :rtype: :class:`~oci.response.Response` @@ -491,6 +521,7 @@ def get_rover_cluster_certificate(self, rover_cluster_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -585,6 +616,10 @@ def list_rover_clusters(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.rover.models.RoverClusterCollection` :rtype: :class:`~oci.response.Response` @@ -596,6 +631,7 @@ def list_rover_clusters(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -704,6 +740,10 @@ def update_rover_cluster(self, rover_cluster_id, update_rover_cluster_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.rover.models.RoverCluster` :rtype: :class:`~oci.response.Response` @@ -715,6 +755,7 @@ def update_rover_cluster(self, rover_cluster_id, update_rover_cluster_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/rover/rover_cluster_client_composite_operations.py b/src/oci/rover/rover_cluster_client_composite_operations.py index 6ad5f7cf40..a457a27584 100644 --- a/src/oci/rover/rover_cluster_client_composite_operations.py +++ b/src/oci/rover/rover_cluster_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/rover/rover_entitlement_client.py b/src/oci/rover/rover_entitlement_client.py index ed4e5fa7ac..50b0049cdb 100644 --- a/src/oci/rover/rover_entitlement_client.py +++ b/src/oci/rover/rover_entitlement_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("rover_entitlement", config, signer, rover_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -134,6 +140,10 @@ def change_rover_entitlement_compartment(self, rover_entitlement_id, change_rove To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -145,6 +155,7 @@ def change_rover_entitlement_compartment(self, rover_entitlement_id, change_rove # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -227,6 +238,10 @@ def create_rover_entitlement(self, create_rover_entitlement_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.rover.models.RoverEntitlement` :rtype: :class:`~oci.response.Response` @@ -238,6 +253,7 @@ def create_rover_entitlement(self, create_rover_entitlement_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -315,6 +331,10 @@ def delete_rover_entitlement(self, rover_entitlement_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -326,6 +346,7 @@ def delete_rover_entitlement(self, rover_entitlement_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id", @@ -409,6 +430,10 @@ def get_rover_entitlement(self, rover_entitlement_id, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.rover.models.RoverEntitlement` :rtype: :class:`~oci.response.Response` @@ -420,6 +445,7 @@ def get_rover_entitlement(self, rover_entitlement_id, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -527,6 +553,10 @@ def list_rover_entitlements(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.rover.models.RoverEntitlementCollection` :rtype: :class:`~oci.response.Response` @@ -538,6 +568,7 @@ def list_rover_entitlements(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "display_name", @@ -648,6 +679,10 @@ def update_rover_entitlement(self, rover_entitlement_id, update_rover_entitlemen To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.rover.models.RoverEntitlement` :rtype: :class:`~oci.response.Response` @@ -659,6 +694,7 @@ def update_rover_entitlement(self, rover_entitlement_id, update_rover_entitlemen # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/rover/rover_entitlement_client_composite_operations.py b/src/oci/rover/rover_entitlement_client_composite_operations.py index 75e17c7851..a4e01b3d03 100644 --- a/src/oci/rover/rover_entitlement_client_composite_operations.py +++ b/src/oci/rover/rover_entitlement_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/rover/rover_node_client.py b/src/oci/rover/rover_node_client.py index 666497bf35..01943cbfb9 100644 --- a/src/oci/rover/rover_node_client.py +++ b/src/oci/rover/rover_node_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("rover_node", config, signer, rover_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -134,6 +140,10 @@ def change_rover_node_compartment(self, rover_node_id, change_rover_node_compart To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -145,6 +155,7 @@ def change_rover_node_compartment(self, rover_node_id, change_rover_node_compart # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -227,6 +238,10 @@ def create_rover_node(self, create_rover_node_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.rover.models.RoverNode` :rtype: :class:`~oci.response.Response` @@ -238,6 +253,7 @@ def create_rover_node(self, create_rover_node_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -315,6 +331,10 @@ def delete_rover_node(self, rover_node_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -326,6 +346,7 @@ def delete_rover_node(self, rover_node_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -399,6 +420,10 @@ def get_rover_node(self, rover_node_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.rover.models.RoverNode` :rtype: :class:`~oci.response.Response` @@ -410,6 +435,7 @@ def get_rover_node(self, rover_node_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -480,6 +506,10 @@ def get_rover_node_certificate(self, rover_node_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.rover.models.RoverNodeCertificate` :rtype: :class:`~oci.response.Response` @@ -491,6 +521,7 @@ def get_rover_node_certificate(self, rover_node_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -561,6 +592,10 @@ def get_rover_node_encryption_key(self, rover_node_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.rover.models.RoverNodeEncryptionKey` :rtype: :class:`~oci.response.Response` @@ -572,6 +607,7 @@ def get_rover_node_encryption_key(self, rover_node_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -646,6 +682,10 @@ def get_rover_node_get_rpt(self, rover_node_id, jwt, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.rover.models.RoverNodeGetRpt` :rtype: :class:`~oci.response.Response` @@ -657,6 +697,7 @@ def get_rover_node_get_rpt(self, rover_node_id, jwt, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -752,6 +793,10 @@ def list_rover_nodes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.rover.models.RoverNodeCollection` :rtype: :class:`~oci.response.Response` @@ -763,6 +808,7 @@ def list_rover_nodes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "display_name", "limit", @@ -882,6 +928,10 @@ def rover_node_action_set_key(self, rover_node_id, jwt, rover_node_action_set_ke To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.rover.models.RoverNodeSetKey` :rtype: :class:`~oci.response.Response` @@ -893,6 +943,7 @@ def rover_node_action_set_key(self, rover_node_id, jwt, rover_node_action_set_ke # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -981,6 +1032,10 @@ def update_rover_node(self, rover_node_id, update_rover_node_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.rover.models.RoverNode` :rtype: :class:`~oci.response.Response` @@ -992,6 +1047,7 @@ def update_rover_node(self, rover_node_id, update_rover_node_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/rover/rover_node_client_composite_operations.py b/src/oci/rover/rover_node_client_composite_operations.py index 2e63b6ae2e..11696ab6fb 100644 --- a/src/oci/rover/rover_node_client_composite_operations.py +++ b/src/oci/rover/rover_node_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/sch/__init__.py b/src/oci/sch/__init__.py index 1c979fea91..8cafbbecd4 100644 --- a/src/oci/sch/__init__.py +++ b/src/oci/sch/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/sch/models/__init__.py b/src/oci/sch/models/__init__.py index 317ab9ca6d..7ad9b838d4 100644 --- a/src/oci/sch/models/__init__.py +++ b/src/oci/sch/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/sch/models/change_service_connector_compartment_details.py b/src/oci/sch/models/change_service_connector_compartment_details.py index 728a194d9e..6d780a62c3 100644 --- a/src/oci/sch/models/change_service_connector_compartment_details.py +++ b/src/oci/sch/models/change_service_connector_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/create_service_connector_details.py b/src/oci/sch/models/create_service_connector_details.py index 6a3cee96f8..1b0b3676bc 100644 --- a/src/oci/sch/models/create_service_connector_details.py +++ b/src/oci/sch/models/create_service_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/dimension_details.py b/src/oci/sch/models/dimension_details.py index 0e8edbca46..ab398f3004 100644 --- a/src/oci/sch/models/dimension_details.py +++ b/src/oci/sch/models/dimension_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/dimension_value_details.py b/src/oci/sch/models/dimension_value_details.py index d67239ced3..b30f2daa4b 100644 --- a/src/oci/sch/models/dimension_value_details.py +++ b/src/oci/sch/models/dimension_value_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/function_task_details.py b/src/oci/sch/models/function_task_details.py index 8982116417..9f18e5ff0f 100644 --- a/src/oci/sch/models/function_task_details.py +++ b/src/oci/sch/models/function_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .task_details import TaskDetails diff --git a/src/oci/sch/models/functions_target_details.py b/src/oci/sch/models/functions_target_details.py index ba71fd2fb3..5e43755682 100644 --- a/src/oci/sch/models/functions_target_details.py +++ b/src/oci/sch/models/functions_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .target_details import TargetDetails diff --git a/src/oci/sch/models/jmes_path_dimension_value.py b/src/oci/sch/models/jmes_path_dimension_value.py index 0a5b46f9e1..05630209db 100644 --- a/src/oci/sch/models/jmes_path_dimension_value.py +++ b/src/oci/sch/models/jmes_path_dimension_value.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .dimension_value_details import DimensionValueDetails diff --git a/src/oci/sch/models/latest_streaming_cursor.py b/src/oci/sch/models/latest_streaming_cursor.py index f9e0b2e762..a1ccfa1842 100644 --- a/src/oci/sch/models/latest_streaming_cursor.py +++ b/src/oci/sch/models/latest_streaming_cursor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .streaming_cursor_details import StreamingCursorDetails diff --git a/src/oci/sch/models/log_rule_task_details.py b/src/oci/sch/models/log_rule_task_details.py index a5e589319d..aaa421769f 100644 --- a/src/oci/sch/models/log_rule_task_details.py +++ b/src/oci/sch/models/log_rule_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .task_details import TaskDetails diff --git a/src/oci/sch/models/log_source.py b/src/oci/sch/models/log_source.py index 00b84344c8..e4db0ce429 100644 --- a/src/oci/sch/models/log_source.py +++ b/src/oci/sch/models/log_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/logging_analytics_target_details.py b/src/oci/sch/models/logging_analytics_target_details.py index d1c383d56d..f4a276f15c 100644 --- a/src/oci/sch/models/logging_analytics_target_details.py +++ b/src/oci/sch/models/logging_analytics_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .target_details import TargetDetails diff --git a/src/oci/sch/models/logging_source_details.py b/src/oci/sch/models/logging_source_details.py index bdf530434d..b9d725c40d 100644 --- a/src/oci/sch/models/logging_source_details.py +++ b/src/oci/sch/models/logging_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .source_details import SourceDetails diff --git a/src/oci/sch/models/monitoring_target_details.py b/src/oci/sch/models/monitoring_target_details.py index 739a97c484..7d19ede331 100644 --- a/src/oci/sch/models/monitoring_target_details.py +++ b/src/oci/sch/models/monitoring_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .target_details import TargetDetails diff --git a/src/oci/sch/models/notifications_target_details.py b/src/oci/sch/models/notifications_target_details.py index 49042f2413..5570f3a28e 100644 --- a/src/oci/sch/models/notifications_target_details.py +++ b/src/oci/sch/models/notifications_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .target_details import TargetDetails diff --git a/src/oci/sch/models/object_storage_target_details.py b/src/oci/sch/models/object_storage_target_details.py index 81c98333e7..4563c0c228 100644 --- a/src/oci/sch/models/object_storage_target_details.py +++ b/src/oci/sch/models/object_storage_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .target_details import TargetDetails diff --git a/src/oci/sch/models/service_connector.py b/src/oci/sch/models/service_connector.py index 1d94f9f081..e883bfa0ad 100644 --- a/src/oci/sch/models/service_connector.py +++ b/src/oci/sch/models/service_connector.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/service_connector_collection.py b/src/oci/sch/models/service_connector_collection.py index 34a0390d8d..f9c940bab1 100644 --- a/src/oci/sch/models/service_connector_collection.py +++ b/src/oci/sch/models/service_connector_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/service_connector_summary.py b/src/oci/sch/models/service_connector_summary.py index 6e77aa7dd6..0468e68db4 100644 --- a/src/oci/sch/models/service_connector_summary.py +++ b/src/oci/sch/models/service_connector_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/source_details.py b/src/oci/sch/models/source_details.py index b15c7c37ea..4bb8766b25 100644 --- a/src/oci/sch/models/source_details.py +++ b/src/oci/sch/models/source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/static_dimension_value.py b/src/oci/sch/models/static_dimension_value.py index 52b210532e..c3fa4dab05 100644 --- a/src/oci/sch/models/static_dimension_value.py +++ b/src/oci/sch/models/static_dimension_value.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .dimension_value_details import DimensionValueDetails diff --git a/src/oci/sch/models/streaming_cursor_details.py b/src/oci/sch/models/streaming_cursor_details.py index 29fe1897ea..78f0584dfc 100644 --- a/src/oci/sch/models/streaming_cursor_details.py +++ b/src/oci/sch/models/streaming_cursor_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/streaming_source_details.py b/src/oci/sch/models/streaming_source_details.py index 6a1a4ecc11..615eae5eb8 100644 --- a/src/oci/sch/models/streaming_source_details.py +++ b/src/oci/sch/models/streaming_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .source_details import SourceDetails diff --git a/src/oci/sch/models/streaming_target_details.py b/src/oci/sch/models/streaming_target_details.py index cd88758441..bad8aa8c92 100644 --- a/src/oci/sch/models/streaming_target_details.py +++ b/src/oci/sch/models/streaming_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .target_details import TargetDetails diff --git a/src/oci/sch/models/target_details.py b/src/oci/sch/models/target_details.py index 1e56fabd39..f6b17f6cfc 100644 --- a/src/oci/sch/models/target_details.py +++ b/src/oci/sch/models/target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/task_details.py b/src/oci/sch/models/task_details.py index 6650e0d669..908c23b867 100644 --- a/src/oci/sch/models/task_details.py +++ b/src/oci/sch/models/task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/trim_horizon_streaming_cursor.py b/src/oci/sch/models/trim_horizon_streaming_cursor.py index 24bce39813..95e2250e65 100644 --- a/src/oci/sch/models/trim_horizon_streaming_cursor.py +++ b/src/oci/sch/models/trim_horizon_streaming_cursor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .streaming_cursor_details import StreamingCursorDetails diff --git a/src/oci/sch/models/update_service_connector_details.py b/src/oci/sch/models/update_service_connector_details.py index eda1e2fc8c..8b8eb04446 100644 --- a/src/oci/sch/models/update_service_connector_details.py +++ b/src/oci/sch/models/update_service_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/work_request.py b/src/oci/sch/models/work_request.py index c98ef11a7e..c31c4601cb 100644 --- a/src/oci/sch/models/work_request.py +++ b/src/oci/sch/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/work_request_collection.py b/src/oci/sch/models/work_request_collection.py index c582125482..216b7e912e 100644 --- a/src/oci/sch/models/work_request_collection.py +++ b/src/oci/sch/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/work_request_error.py b/src/oci/sch/models/work_request_error.py index c03709e478..b9c6d7cd74 100644 --- a/src/oci/sch/models/work_request_error.py +++ b/src/oci/sch/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/work_request_error_collection.py b/src/oci/sch/models/work_request_error_collection.py index fd84a6e641..27d4284b3c 100644 --- a/src/oci/sch/models/work_request_error_collection.py +++ b/src/oci/sch/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/work_request_log_entry.py b/src/oci/sch/models/work_request_log_entry.py index 5fa91e4331..43da4732c9 100644 --- a/src/oci/sch/models/work_request_log_entry.py +++ b/src/oci/sch/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/work_request_log_entry_collection.py b/src/oci/sch/models/work_request_log_entry_collection.py index 381fce40ff..63841ecc45 100644 --- a/src/oci/sch/models/work_request_log_entry_collection.py +++ b/src/oci/sch/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/models/work_request_resource.py b/src/oci/sch/models/work_request_resource.py index fbfe9ae12d..bc8369fcff 100644 --- a/src/oci/sch/models/work_request_resource.py +++ b/src/oci/sch/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/sch/service_connector_client.py b/src/oci/sch/service_connector_client.py index 0397874f11..8f3b5309be 100644 --- a/src/oci/sch/service_connector_client.py +++ b/src/oci/sch/service_connector_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -66,6 +66,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -96,6 +100,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("service_connector", config, signer, sch_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -144,6 +150,10 @@ def activate_service_connector(self, service_connector_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -155,6 +165,7 @@ def activate_service_connector(self, service_connector_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -245,6 +256,10 @@ def change_service_connector_compartment(self, service_connector_id, change_serv To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -256,6 +271,7 @@ def change_service_connector_compartment(self, service_connector_id, change_serv # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -359,6 +375,10 @@ def create_service_connector(self, create_service_connector_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -370,6 +390,7 @@ def create_service_connector(self, create_service_connector_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -453,6 +474,10 @@ def deactivate_service_connector(self, service_connector_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -464,6 +489,7 @@ def deactivate_service_connector(self, service_connector_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "if_match", @@ -548,6 +574,10 @@ def delete_service_connector(self, service_connector_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -559,6 +589,7 @@ def delete_service_connector(self, service_connector_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -630,6 +661,10 @@ def get_service_connector(self, service_connector_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.sch.models.ServiceConnector` :rtype: :class:`~oci.response.Response` @@ -641,6 +676,7 @@ def get_service_connector(self, service_connector_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -712,6 +748,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.sch.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -723,6 +763,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -831,6 +872,10 @@ def list_service_connectors(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.sch.models.ServiceConnectorCollection` :rtype: :class:`~oci.response.Response` @@ -842,6 +887,7 @@ def list_service_connectors(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "display_name", @@ -955,6 +1001,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.sch.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -966,6 +1016,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1061,6 +1112,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.sch.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -1072,6 +1127,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1167,6 +1223,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.sch.models.WorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -1178,6 +1238,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1262,6 +1323,10 @@ def update_service_connector(self, service_connector_id, update_service_connecto To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1273,6 +1338,7 @@ def update_service_connector(self, service_connector_id, update_service_connecto # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/sch/service_connector_client_composite_operations.py b/src/oci/sch/service_connector_client_composite_operations.py index 0d85598e88..495cf70873 100644 --- a/src/oci/sch/service_connector_client_composite_operations.py +++ b/src/oci/sch/service_connector_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/secrets/__init__.py b/src/oci/secrets/__init__.py index d0fcc96f18..9e07b1b74d 100644 --- a/src/oci/secrets/__init__.py +++ b/src/oci/secrets/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/secrets/models/__init__.py b/src/oci/secrets/models/__init__.py index 27db7205b5..e1c2337c5a 100644 --- a/src/oci/secrets/models/__init__.py +++ b/src/oci/secrets/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/secrets/models/base64_secret_bundle_content_details.py b/src/oci/secrets/models/base64_secret_bundle_content_details.py index 76befbce1c..1c3eb762b2 100644 --- a/src/oci/secrets/models/base64_secret_bundle_content_details.py +++ b/src/oci/secrets/models/base64_secret_bundle_content_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .secret_bundle_content_details import SecretBundleContentDetails diff --git a/src/oci/secrets/models/secret_bundle.py b/src/oci/secrets/models/secret_bundle.py index 806e7d3121..3d9322cf91 100644 --- a/src/oci/secrets/models/secret_bundle.py +++ b/src/oci/secrets/models/secret_bundle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/secrets/models/secret_bundle_content_details.py b/src/oci/secrets/models/secret_bundle_content_details.py index 35abad9eab..8c618ecc1b 100644 --- a/src/oci/secrets/models/secret_bundle_content_details.py +++ b/src/oci/secrets/models/secret_bundle_content_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/secrets/models/secret_bundle_version_summary.py b/src/oci/secrets/models/secret_bundle_version_summary.py index 233fac73a2..36a56db0c1 100644 --- a/src/oci/secrets/models/secret_bundle_version_summary.py +++ b/src/oci/secrets/models/secret_bundle_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/secrets/secrets_client.py b/src/oci/secrets/secrets_client.py index 30af6b3a94..5b62cdfe1b 100644 --- a/src/oci/secrets/secrets_client.py +++ b/src/oci/secrets/secrets_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("secrets", config, signer, secrets_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -129,6 +135,10 @@ def get_secret_bundle(self, secret_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.secrets.models.SecretBundle` :rtype: :class:`~oci.response.Response` @@ -140,6 +150,7 @@ def get_secret_bundle(self, secret_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "version_number", @@ -242,6 +253,10 @@ def get_secret_bundle_by_name(self, secret_name, vault_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.secrets.models.SecretBundle` :rtype: :class:`~oci.response.Response` @@ -253,6 +268,7 @@ def get_secret_bundle_by_name(self, secret_name, vault_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "version_number", @@ -353,6 +369,10 @@ def list_secret_bundle_versions(self, secret_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.secrets.models.SecretBundleVersionSummary` :rtype: :class:`~oci.response.Response` @@ -364,6 +384,7 @@ def list_secret_bundle_versions(self, secret_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", diff --git a/src/oci/secrets/secrets_client_composite_operations.py b/src/oci/secrets/secrets_client_composite_operations.py index 566eec89e4..073a1d4e0f 100644 --- a/src/oci/secrets/secrets_client_composite_operations.py +++ b/src/oci/secrets/secrets_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/service_catalog/__init__.py b/src/oci/service_catalog/__init__.py index 1e3e4e9b1f..97baa5001d 100644 --- a/src/oci/service_catalog/__init__.py +++ b/src/oci/service_catalog/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/service_catalog/models/__init__.py b/src/oci/service_catalog/models/__init__.py index 6072d9f12a..4e92700b51 100644 --- a/src/oci/service_catalog/models/__init__.py +++ b/src/oci/service_catalog/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/service_catalog/models/application_collection.py b/src/oci/service_catalog/models/application_collection.py index 65f3185ab7..4f85e5fad8 100644 --- a/src/oci/service_catalog/models/application_collection.py +++ b/src/oci/service_catalog/models/application_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/application_summary.py b/src/oci/service_catalog/models/application_summary.py index 5ba1f4371b..67622cce83 100644 --- a/src/oci/service_catalog/models/application_summary.py +++ b/src/oci/service_catalog/models/application_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/bulk_replace_service_catalog_associations_details.py b/src/oci/service_catalog/models/bulk_replace_service_catalog_associations_details.py index f17a9f8dc2..f2bd9a8e05 100644 --- a/src/oci/service_catalog/models/bulk_replace_service_catalog_associations_details.py +++ b/src/oci/service_catalog/models/bulk_replace_service_catalog_associations_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/change_private_application_compartment_details.py b/src/oci/service_catalog/models/change_private_application_compartment_details.py index 207c49cb3a..e0599ac95a 100644 --- a/src/oci/service_catalog/models/change_private_application_compartment_details.py +++ b/src/oci/service_catalog/models/change_private_application_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/change_service_catalog_compartment_details.py b/src/oci/service_catalog/models/change_service_catalog_compartment_details.py index e72fcbdd3e..2591a69280 100644 --- a/src/oci/service_catalog/models/change_service_catalog_compartment_details.py +++ b/src/oci/service_catalog/models/change_service_catalog_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/create_private_application_details.py b/src/oci/service_catalog/models/create_private_application_details.py index c6b2859f5f..aab9b2759e 100644 --- a/src/oci/service_catalog/models/create_private_application_details.py +++ b/src/oci/service_catalog/models/create_private_application_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/create_private_application_package.py b/src/oci/service_catalog/models/create_private_application_package.py index 66571507fd..e0e8a92cb1 100644 --- a/src/oci/service_catalog/models/create_private_application_package.py +++ b/src/oci/service_catalog/models/create_private_application_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/create_private_application_stack_package.py b/src/oci/service_catalog/models/create_private_application_stack_package.py index d003fe1a1a..ddee46e41b 100644 --- a/src/oci/service_catalog/models/create_private_application_stack_package.py +++ b/src/oci/service_catalog/models/create_private_application_stack_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_private_application_package import CreatePrivateApplicationPackage diff --git a/src/oci/service_catalog/models/create_service_catalog_association_details.py b/src/oci/service_catalog/models/create_service_catalog_association_details.py index c09900d65a..f2bfd7c3a8 100644 --- a/src/oci/service_catalog/models/create_service_catalog_association_details.py +++ b/src/oci/service_catalog/models/create_service_catalog_association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/create_service_catalog_details.py b/src/oci/service_catalog/models/create_service_catalog_details.py index 678268bed7..f8c1fff78c 100644 --- a/src/oci/service_catalog/models/create_service_catalog_details.py +++ b/src/oci/service_catalog/models/create_service_catalog_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/error_entity.py b/src/oci/service_catalog/models/error_entity.py index 317cc9ea14..938b83ab78 100644 --- a/src/oci/service_catalog/models/error_entity.py +++ b/src/oci/service_catalog/models/error_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/private_application.py b/src/oci/service_catalog/models/private_application.py index ae001b09ff..84b2b7f123 100644 --- a/src/oci/service_catalog/models/private_application.py +++ b/src/oci/service_catalog/models/private_application.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/private_application_collection.py b/src/oci/service_catalog/models/private_application_collection.py index e4659a0435..ec9de3aa8a 100644 --- a/src/oci/service_catalog/models/private_application_collection.py +++ b/src/oci/service_catalog/models/private_application_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/private_application_package.py b/src/oci/service_catalog/models/private_application_package.py index e69d9c054b..26408e9bbc 100644 --- a/src/oci/service_catalog/models/private_application_package.py +++ b/src/oci/service_catalog/models/private_application_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/private_application_package_collection.py b/src/oci/service_catalog/models/private_application_package_collection.py index c92ba3bcb6..ffe2d56d2b 100644 --- a/src/oci/service_catalog/models/private_application_package_collection.py +++ b/src/oci/service_catalog/models/private_application_package_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/private_application_package_summary.py b/src/oci/service_catalog/models/private_application_package_summary.py index 7ad08d8f44..4b0501f1f2 100644 --- a/src/oci/service_catalog/models/private_application_package_summary.py +++ b/src/oci/service_catalog/models/private_application_package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/private_application_stack_package.py b/src/oci/service_catalog/models/private_application_stack_package.py index 4ff41323db..6fd20acd6a 100644 --- a/src/oci/service_catalog/models/private_application_stack_package.py +++ b/src/oci/service_catalog/models/private_application_stack_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .private_application_package import PrivateApplicationPackage diff --git a/src/oci/service_catalog/models/private_application_summary.py b/src/oci/service_catalog/models/private_application_summary.py index 047fbe3eb2..4dbe431616 100644 --- a/src/oci/service_catalog/models/private_application_summary.py +++ b/src/oci/service_catalog/models/private_application_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/publisher_summary.py b/src/oci/service_catalog/models/publisher_summary.py index f4e8c27cb8..82aaa8072f 100644 --- a/src/oci/service_catalog/models/publisher_summary.py +++ b/src/oci/service_catalog/models/publisher_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/service_catalog.py b/src/oci/service_catalog/models/service_catalog.py index 3edf4a6da4..0da06609d8 100644 --- a/src/oci/service_catalog/models/service_catalog.py +++ b/src/oci/service_catalog/models/service_catalog.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/service_catalog_association.py b/src/oci/service_catalog/models/service_catalog_association.py index 7d07daf3c4..ddaede5df4 100644 --- a/src/oci/service_catalog/models/service_catalog_association.py +++ b/src/oci/service_catalog/models/service_catalog_association.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/service_catalog_association_collection.py b/src/oci/service_catalog/models/service_catalog_association_collection.py index d0327b6943..63679eb014 100644 --- a/src/oci/service_catalog/models/service_catalog_association_collection.py +++ b/src/oci/service_catalog/models/service_catalog_association_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/service_catalog_association_summary.py b/src/oci/service_catalog/models/service_catalog_association_summary.py index 9b53a3d165..a916d9f8fe 100644 --- a/src/oci/service_catalog/models/service_catalog_association_summary.py +++ b/src/oci/service_catalog/models/service_catalog_association_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/service_catalog_collection.py b/src/oci/service_catalog/models/service_catalog_collection.py index be764620d7..47b4be16d8 100644 --- a/src/oci/service_catalog/models/service_catalog_collection.py +++ b/src/oci/service_catalog/models/service_catalog_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/service_catalog_summary.py b/src/oci/service_catalog/models/service_catalog_summary.py index b668fd1f71..02e4851c0c 100644 --- a/src/oci/service_catalog/models/service_catalog_summary.py +++ b/src/oci/service_catalog/models/service_catalog_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/update_private_application_details.py b/src/oci/service_catalog/models/update_private_application_details.py index 8828bb2d43..2a6e70f2a9 100644 --- a/src/oci/service_catalog/models/update_private_application_details.py +++ b/src/oci/service_catalog/models/update_private_application_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/update_service_catalog_details.py b/src/oci/service_catalog/models/update_service_catalog_details.py index 637b28c550..9dfdbaa3d1 100644 --- a/src/oci/service_catalog/models/update_service_catalog_details.py +++ b/src/oci/service_catalog/models/update_service_catalog_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/upload_data.py b/src/oci/service_catalog/models/upload_data.py index 4b4d74e22e..42433af573 100644 --- a/src/oci/service_catalog/models/upload_data.py +++ b/src/oci/service_catalog/models/upload_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/work_request.py b/src/oci/service_catalog/models/work_request.py index 27a22946f7..7fbd639d02 100644 --- a/src/oci/service_catalog/models/work_request.py +++ b/src/oci/service_catalog/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/work_request_error.py b/src/oci/service_catalog/models/work_request_error.py index 04dde83e08..26ac6a8cc9 100644 --- a/src/oci/service_catalog/models/work_request_error.py +++ b/src/oci/service_catalog/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/work_request_error_collection.py b/src/oci/service_catalog/models/work_request_error_collection.py index 473ae8f095..e9b06048f3 100644 --- a/src/oci/service_catalog/models/work_request_error_collection.py +++ b/src/oci/service_catalog/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/work_request_log_entry.py b/src/oci/service_catalog/models/work_request_log_entry.py index 8d02a6a994..7b37ab8d12 100644 --- a/src/oci/service_catalog/models/work_request_log_entry.py +++ b/src/oci/service_catalog/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/work_request_log_entry_collection.py b/src/oci/service_catalog/models/work_request_log_entry_collection.py index 75bae86591..1a4fe923b6 100644 --- a/src/oci/service_catalog/models/work_request_log_entry_collection.py +++ b/src/oci/service_catalog/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/work_request_resource.py b/src/oci/service_catalog/models/work_request_resource.py index 2a725d38a3..fbc4517dff 100644 --- a/src/oci/service_catalog/models/work_request_resource.py +++ b/src/oci/service_catalog/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/work_request_summary.py b/src/oci/service_catalog/models/work_request_summary.py index 93d033285e..cbfcc18cc8 100644 --- a/src/oci/service_catalog/models/work_request_summary.py +++ b/src/oci/service_catalog/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/models/work_request_summary_collection.py b/src/oci/service_catalog/models/work_request_summary_collection.py index 391835473f..809cc09cbf 100644 --- a/src/oci/service_catalog/models/work_request_summary_collection.py +++ b/src/oci/service_catalog/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_catalog/service_catalog_client.py b/src/oci/service_catalog/service_catalog_client.py index 3d9a5d7ae8..7ac60af08b 100644 --- a/src/oci/service_catalog/service_catalog_client.py +++ b/src/oci/service_catalog/service_catalog_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("service_catalog", config, signer, service_catalog_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -126,6 +132,10 @@ def bulk_replace_service_catalog_associations(self, service_catalog_id, bulk_rep To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -137,6 +147,7 @@ def bulk_replace_service_catalog_associations(self, service_catalog_id, bulk_rep # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -216,6 +227,10 @@ def change_private_application_compartment(self, private_application_id, change_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -227,6 +242,7 @@ def change_private_application_compartment(self, private_application_id, change_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -306,6 +322,10 @@ def change_service_catalog_compartment(self, service_catalog_id, change_service_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -317,6 +337,7 @@ def change_service_catalog_compartment(self, service_catalog_id, change_service_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -394,6 +415,10 @@ def create_private_application(self, create_private_application_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_catalog.models.PrivateApplication` :rtype: :class:`~oci.response.Response` @@ -405,6 +430,7 @@ def create_private_application(self, create_private_application_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -473,6 +499,10 @@ def create_service_catalog(self, create_service_catalog_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_catalog.models.ServiceCatalog` :rtype: :class:`~oci.response.Response` @@ -484,6 +514,7 @@ def create_service_catalog(self, create_service_catalog_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -552,6 +583,10 @@ def create_service_catalog_association(self, create_service_catalog_association_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_catalog.models.ServiceCatalogAssociation` :rtype: :class:`~oci.response.Response` @@ -563,6 +598,7 @@ def create_service_catalog_association(self, create_service_catalog_association_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -630,6 +666,10 @@ def delete_private_application(self, private_application_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -641,6 +681,7 @@ def delete_private_application(self, private_application_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -715,6 +756,10 @@ def delete_service_catalog(self, service_catalog_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -726,6 +771,7 @@ def delete_service_catalog(self, service_catalog_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -800,6 +846,10 @@ def delete_service_catalog_association(self, service_catalog_association_id, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -811,6 +861,7 @@ def delete_service_catalog_association(self, service_catalog_association_id, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -880,6 +931,10 @@ def get_private_application(self, private_application_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_catalog.models.PrivateApplication` :rtype: :class:`~oci.response.Response` @@ -891,6 +946,7 @@ def get_private_application(self, private_application_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -960,6 +1016,10 @@ def get_private_application_action_download_logo(self, private_application_id, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -971,6 +1031,7 @@ def get_private_application_action_download_logo(self, private_application_id, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1040,6 +1101,10 @@ def get_private_application_package(self, private_application_package_id, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_catalog.models.PrivateApplicationPackage` :rtype: :class:`~oci.response.Response` @@ -1051,6 +1116,7 @@ def get_private_application_package(self, private_application_package_id, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1120,6 +1186,10 @@ def get_private_application_package_action_download_config(self, private_applica To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -1131,6 +1201,7 @@ def get_private_application_package_action_download_config(self, private_applica # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1200,6 +1271,10 @@ def get_service_catalog(self, service_catalog_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_catalog.models.ServiceCatalog` :rtype: :class:`~oci.response.Response` @@ -1211,6 +1286,7 @@ def get_service_catalog(self, service_catalog_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1280,6 +1356,10 @@ def get_service_catalog_association(self, service_catalog_association_id, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_catalog.models.ServiceCatalogAssociation` :rtype: :class:`~oci.response.Response` @@ -1291,6 +1371,7 @@ def get_service_catalog_association(self, service_catalog_association_id, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1360,6 +1441,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_catalog.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -1371,6 +1456,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1483,6 +1569,10 @@ def list_applications(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_catalog.models.ApplicationCollection` :rtype: :class:`~oci.response.Response` @@ -1494,6 +1584,7 @@ def list_applications(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "service_catalog_id", @@ -1634,6 +1725,10 @@ def list_private_application_packages(self, private_application_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_catalog.models.PrivateApplicationPackageCollection` :rtype: :class:`~oci.response.Response` @@ -1645,6 +1740,7 @@ def list_private_application_packages(self, private_application_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "private_application_package_id", "package_type", @@ -1768,6 +1864,10 @@ def list_private_applications(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_catalog.models.PrivateApplicationCollection` :rtype: :class:`~oci.response.Response` @@ -1779,6 +1879,7 @@ def list_private_applications(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "private_application_id", "opc_request_id", @@ -1894,6 +1995,10 @@ def list_service_catalog_associations(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_catalog.models.ServiceCatalogAssociationCollection` :rtype: :class:`~oci.response.Response` @@ -1905,6 +2010,7 @@ def list_service_catalog_associations(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "service_catalog_association_id", "service_catalog_id", @@ -2020,6 +2126,10 @@ def list_service_catalogs(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_catalog.models.ServiceCatalogCollection` :rtype: :class:`~oci.response.Response` @@ -2031,6 +2141,7 @@ def list_service_catalogs(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "service_catalog_id", "opc_request_id", @@ -2137,6 +2248,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_catalog.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -2148,6 +2263,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -2261,6 +2377,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_catalog.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -2272,6 +2392,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -2396,6 +2517,10 @@ def list_work_requests(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_catalog.models.WorkRequestSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -2407,6 +2532,7 @@ def list_work_requests(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "work_request_id", @@ -2515,6 +2641,10 @@ def update_private_application(self, private_application_id, update_private_appl To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_catalog.models.PrivateApplication` :rtype: :class:`~oci.response.Response` @@ -2526,6 +2656,7 @@ def update_private_application(self, private_application_id, update_private_appl # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -2607,6 +2738,10 @@ def update_service_catalog(self, service_catalog_id, update_service_catalog_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_catalog.models.ServiceCatalog` :rtype: :class:`~oci.response.Response` @@ -2618,6 +2753,7 @@ def update_service_catalog(self, service_catalog_id, update_service_catalog_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" diff --git a/src/oci/service_catalog/service_catalog_client_composite_operations.py b/src/oci/service_catalog/service_catalog_client_composite_operations.py index df5d98379f..609c675a64 100644 --- a/src/oci/service_catalog/service_catalog_client_composite_operations.py +++ b/src/oci/service_catalog/service_catalog_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/service_endpoints.py b/src/oci/service_endpoints.py index 8dab3b02cd..d0ee889b7f 100644 --- a/src/oci/service_endpoints.py +++ b/src/oci/service_endpoints.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. SERVICE_ENDPOINTS = { diff --git a/src/oci/service_manager_proxy/__init__.py b/src/oci/service_manager_proxy/__init__.py index 1bf0793a4d..e3e81bc176 100644 --- a/src/oci/service_manager_proxy/__init__.py +++ b/src/oci/service_manager_proxy/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/service_manager_proxy/models/__init__.py b/src/oci/service_manager_proxy/models/__init__.py index 95687280d5..d2f044a7f5 100644 --- a/src/oci/service_manager_proxy/models/__init__.py +++ b/src/oci/service_manager_proxy/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/service_manager_proxy/models/error_entity.py b/src/oci/service_manager_proxy/models/error_entity.py index 317cc9ea14..938b83ab78 100644 --- a/src/oci/service_manager_proxy/models/error_entity.py +++ b/src/oci/service_manager_proxy/models/error_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_manager_proxy/models/service_definition.py b/src/oci/service_manager_proxy/models/service_definition.py index 067964106e..03f16e57ae 100644 --- a/src/oci/service_manager_proxy/models/service_definition.py +++ b/src/oci/service_manager_proxy/models/service_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_manager_proxy/models/service_environment.py b/src/oci/service_manager_proxy/models/service_environment.py index 10b4d5859f..718edc2f88 100644 --- a/src/oci/service_manager_proxy/models/service_environment.py +++ b/src/oci/service_manager_proxy/models/service_environment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_manager_proxy/models/service_environment_collection.py b/src/oci/service_manager_proxy/models/service_environment_collection.py index aa43b149af..2c855192c9 100644 --- a/src/oci/service_manager_proxy/models/service_environment_collection.py +++ b/src/oci/service_manager_proxy/models/service_environment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_manager_proxy/models/service_environment_end_point_overview.py b/src/oci/service_manager_proxy/models/service_environment_end_point_overview.py index eda7356175..5f5e2f330b 100644 --- a/src/oci/service_manager_proxy/models/service_environment_end_point_overview.py +++ b/src/oci/service_manager_proxy/models/service_environment_end_point_overview.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_manager_proxy/models/service_environment_summary.py b/src/oci/service_manager_proxy/models/service_environment_summary.py index cc230cd2b5..660f36a046 100644 --- a/src/oci/service_manager_proxy/models/service_environment_summary.py +++ b/src/oci/service_manager_proxy/models/service_environment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/service_manager_proxy/service_manager_proxy_client.py b/src/oci/service_manager_proxy/service_manager_proxy_client.py index be25b639d1..f9c725099c 100644 --- a/src/oci/service_manager_proxy/service_manager_proxy_client.py +++ b/src/oci/service_manager_proxy/service_manager_proxy_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("service_manager_proxy", config, signer, service_manager_proxy_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -128,6 +134,10 @@ def get_service_environment(self, service_environment_id, compartment_id, **kwar To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_manager_proxy.models.ServiceEnvironment` :rtype: :class:`~oci.response.Response` @@ -139,6 +149,7 @@ def get_service_environment(self, service_environment_id, compartment_id, **kwar # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -248,6 +259,10 @@ def list_service_environments(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.service_manager_proxy.models.ServiceEnvironmentCollection` :rtype: :class:`~oci.response.Response` @@ -259,6 +274,7 @@ def list_service_environments(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "service_environment_id", "service_environment_type", diff --git a/src/oci/service_manager_proxy/service_manager_proxy_client_composite_operations.py b/src/oci/service_manager_proxy/service_manager_proxy_client_composite_operations.py index b355f00fc1..8bbd796880 100644 --- a/src/oci/service_manager_proxy/service_manager_proxy_client_composite_operations.py +++ b/src/oci/service_manager_proxy/service_manager_proxy_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/signer.py b/src/oci/signer.py index f712d63ef5..abcd0e3823 100644 --- a/src/oci/signer.py +++ b/src/oci/signer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/streaming/__init__.py b/src/oci/streaming/__init__.py index 4692988faa..68154642e1 100644 --- a/src/oci/streaming/__init__.py +++ b/src/oci/streaming/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/streaming/models/__init__.py b/src/oci/streaming/models/__init__.py index a5055e8bc1..a878d9a1fe 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import 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 307e4acc33..107ebe0176 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/change_stream_compartment_details.py b/src/oci/streaming/models/change_stream_compartment_details.py index 191ec0902c..d514d43c9b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 8dc1b24161..8dc6cdbf64 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/connect_harness.py b/src/oci/streaming/models/connect_harness.py index 1ef5e0b3f1..6a1c781324 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/connect_harness_summary.py b/src/oci/streaming/models/connect_harness_summary.py index 7e9b776c6b..dacbd020aa 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/create_connect_harness_details.py b/src/oci/streaming/models/create_connect_harness_details.py index dcfb588068..248dfa3abe 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/create_cursor_details.py b/src/oci/streaming/models/create_cursor_details.py index dd3ebb9525..a8b2dce3eb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/create_group_cursor_details.py b/src/oci/streaming/models/create_group_cursor_details.py index 764542a7cf..ebb963d502 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/create_stream_details.py b/src/oci/streaming/models/create_stream_details.py index e913ed7407..d1fd04fa34 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/create_stream_pool_details.py b/src/oci/streaming/models/create_stream_pool_details.py index ec101a72b1..c90d75482c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/cursor.py b/src/oci/streaming/models/cursor.py index 30b06ba94b..c81694cc23 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/custom_encryption_key.py b/src/oci/streaming/models/custom_encryption_key.py index eef10a78b6..657fa3f042 100644 --- a/src/oci/streaming/models/custom_encryption_key.py +++ b/src/oci/streaming/models/custom_encryption_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/custom_encryption_key_details.py b/src/oci/streaming/models/custom_encryption_key_details.py index 5db04beba7..0923eff6e1 100644 --- a/src/oci/streaming/models/custom_encryption_key_details.py +++ b/src/oci/streaming/models/custom_encryption_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/group.py b/src/oci/streaming/models/group.py index 1ab3c937af..b98fa502eb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/kafka_settings.py b/src/oci/streaming/models/kafka_settings.py index 78b6b19415..a1036686a0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/message.py b/src/oci/streaming/models/message.py index 6fde612904..907cb967f0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/partition_reservation.py b/src/oci/streaming/models/partition_reservation.py index a6c8b5d8c3..2698a1d20b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/private_endpoint_details.py b/src/oci/streaming/models/private_endpoint_details.py index 26a3b6f386..9888938211 100644 --- a/src/oci/streaming/models/private_endpoint_details.py +++ b/src/oci/streaming/models/private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/private_endpoint_settings.py b/src/oci/streaming/models/private_endpoint_settings.py index 36c34ce9b3..929ece1063 100644 --- a/src/oci/streaming/models/private_endpoint_settings.py +++ b/src/oci/streaming/models/private_endpoint_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/put_messages_details.py b/src/oci/streaming/models/put_messages_details.py index dbe1d3483b..8c0172775c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/put_messages_details_entry.py b/src/oci/streaming/models/put_messages_details_entry.py index f7eef5e2ca..25f7191748 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/put_messages_result.py b/src/oci/streaming/models/put_messages_result.py index 36adcfc8e7..1670cb26c4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/put_messages_result_entry.py b/src/oci/streaming/models/put_messages_result_entry.py index 50796c2226..8b4028b40b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/stream.py b/src/oci/streaming/models/stream.py index bd3a1fbeb6..53a60bfedb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/stream_pool.py b/src/oci/streaming/models/stream_pool.py index fc73d7d011..f173252aa8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/stream_pool_summary.py b/src/oci/streaming/models/stream_pool_summary.py index a84c1c7aa1..7272e21256 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/stream_summary.py b/src/oci/streaming/models/stream_summary.py index dfd484b128..3adddb91e1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/update_connect_harness_details.py b/src/oci/streaming/models/update_connect_harness_details.py index 369af6d549..6127b59439 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/update_group_details.py b/src/oci/streaming/models/update_group_details.py index ae44c44dd0..7ade5ccb88 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/update_stream_details.py b/src/oci/streaming/models/update_stream_details.py index 068cb64d39..94a8dc2b0d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/models/update_stream_pool_details.py b/src/oci/streaming/models/update_stream_pool_details.py index 9c7b721f26..f0f836b694 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/streaming/stream_admin_client.py b/src/oci/streaming/stream_admin_client.py index b835f6a83b..61e5c0c747 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("stream_admin", config, signer, streaming_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -124,6 +130,10 @@ def change_connect_harness_compartment(self, connect_harness_id, change_connect_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -135,6 +145,7 @@ def change_connect_harness_compartment(self, connect_harness_id, change_connect_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -216,6 +227,10 @@ def change_stream_compartment(self, stream_id, change_stream_compartment_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -227,6 +242,7 @@ def change_stream_compartment(self, stream_id, change_stream_compartment_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -306,6 +322,10 @@ def change_stream_pool_compartment(self, stream_pool_id, change_stream_pool_comp To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -317,6 +337,7 @@ def change_stream_pool_compartment(self, stream_pool_id, change_stream_pool_comp # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -394,6 +415,10 @@ def create_connect_harness(self, create_connect_harness_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.streaming.models.ConnectHarness` :rtype: :class:`~oci.response.Response` @@ -405,6 +430,7 @@ def create_connect_harness(self, create_connect_harness_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -473,6 +499,10 @@ def create_stream(self, create_stream_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.streaming.models.Stream` :rtype: :class:`~oci.response.Response` @@ -484,6 +514,7 @@ def create_stream(self, create_stream_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -550,6 +581,10 @@ def create_stream_pool(self, create_stream_pool_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.streaming.models.StreamPool` :rtype: :class:`~oci.response.Response` @@ -561,6 +596,7 @@ def create_stream_pool(self, create_stream_pool_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -632,6 +668,10 @@ def delete_connect_harness(self, connect_harness_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -643,6 +683,7 @@ def delete_connect_harness(self, connect_harness_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -721,6 +762,10 @@ def delete_stream(self, stream_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -732,6 +777,7 @@ def delete_stream(self, stream_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -807,6 +853,10 @@ def delete_stream_pool(self, stream_pool_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -818,6 +868,7 @@ def delete_stream_pool(self, stream_pool_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -889,6 +940,10 @@ def get_connect_harness(self, connect_harness_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.streaming.models.ConnectHarness` :rtype: :class:`~oci.response.Response` @@ -900,6 +955,7 @@ def get_connect_harness(self, connect_harness_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -971,6 +1027,10 @@ def get_stream(self, stream_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.streaming.models.Stream` :rtype: :class:`~oci.response.Response` @@ -982,6 +1042,7 @@ def get_stream(self, stream_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1053,6 +1114,10 @@ def get_stream_pool(self, stream_pool_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.streaming.models.StreamPool` :rtype: :class:`~oci.response.Response` @@ -1064,6 +1129,7 @@ def get_stream_pool(self, stream_pool_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1162,6 +1228,10 @@ def list_connect_harnesses(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.streaming.models.ConnectHarnessSummary` :rtype: :class:`~oci.response.Response` @@ -1173,6 +1243,7 @@ def list_connect_harnesses(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "name", @@ -1301,6 +1372,10 @@ def list_stream_pools(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.streaming.models.StreamPoolSummary` :rtype: :class:`~oci.response.Response` @@ -1312,6 +1387,7 @@ def list_stream_pools(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "name", @@ -1446,6 +1522,10 @@ def list_streams(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.streaming.models.StreamSummary` :rtype: :class:`~oci.response.Response` @@ -1457,6 +1537,7 @@ def list_streams(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "stream_pool_id", @@ -1567,6 +1648,10 @@ def update_connect_harness(self, connect_harness_id, update_connect_harness_deta To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.streaming.models.ConnectHarness` :rtype: :class:`~oci.response.Response` @@ -1578,6 +1663,7 @@ def update_connect_harness(self, connect_harness_id, update_connect_harness_deta # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1659,6 +1745,10 @@ def update_stream(self, stream_id, update_stream_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.streaming.models.Stream` :rtype: :class:`~oci.response.Response` @@ -1670,6 +1760,7 @@ def update_stream(self, stream_id, update_stream_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1751,6 +1842,10 @@ def update_stream_pool(self, stream_pool_id, update_stream_pool_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.streaming.models.StreamPool` :rtype: :class:`~oci.response.Response` @@ -1762,6 +1857,7 @@ def update_stream_pool(self, stream_pool_id, update_stream_pool_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" diff --git a/src/oci/streaming/stream_admin_client_composite_operations.py b/src/oci/streaming/stream_admin_client_composite_operations.py index bedbf07c25..73fc89aae0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/streaming/stream_client.py b/src/oci/streaming/stream_client.py index f321832410..4484ab23f1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -62,6 +62,10 @@ def __init__(self, config, service_endpoint, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -90,6 +94,8 @@ def __init__(self, config, service_endpoint, **kwargs): } if 'timeout' in kwargs: base_client_init_kwargs['timeout'] = kwargs.get('timeout') + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("stream", config, signer, streaming_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -118,6 +124,10 @@ def consumer_commit(self, stream_id, cursor, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.streaming.models.Cursor` :rtype: :class:`~oci.response.Response` @@ -129,6 +139,7 @@ def consumer_commit(self, stream_id, cursor, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -210,6 +221,10 @@ def consumer_heartbeat(self, stream_id, cursor, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.streaming.models.Cursor` :rtype: :class:`~oci.response.Response` @@ -221,6 +236,7 @@ def consumer_heartbeat(self, stream_id, cursor, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -306,6 +322,10 @@ def create_cursor(self, stream_id, create_cursor_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.streaming.models.Cursor` :rtype: :class:`~oci.response.Response` @@ -317,6 +337,7 @@ def create_cursor(self, stream_id, create_cursor_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -393,6 +414,10 @@ def create_group_cursor(self, stream_id, create_group_cursor_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.streaming.models.Cursor` :rtype: :class:`~oci.response.Response` @@ -404,6 +429,7 @@ def create_group_cursor(self, stream_id, create_group_cursor_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -480,6 +506,10 @@ def get_group(self, stream_id, group_name, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.streaming.models.Group` :rtype: :class:`~oci.response.Response` @@ -491,6 +521,7 @@ def get_group(self, stream_id, group_name, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -572,6 +603,10 @@ def get_messages(self, stream_id, cursor, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.streaming.models.Message` :rtype: :class:`~oci.response.Response` @@ -583,6 +618,7 @@ def get_messages(self, stream_id, cursor, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "opc_request_id" @@ -669,6 +705,10 @@ def put_messages(self, stream_id, put_messages_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.streaming.models.PutMessagesResult` :rtype: :class:`~oci.response.Response` @@ -680,6 +720,7 @@ def put_messages(self, stream_id, put_messages_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -722,6 +763,7 @@ def put_messages(self, stream_id, put_messages_details, **kwargs): header_params=header_params, body=put_messages_details, response_type="PutMessagesResult", + allow_control_chars=kwargs.get('allow_control_chars'), enforce_content_headers=False) else: return self.base_client.call_api( @@ -731,6 +773,7 @@ def put_messages(self, stream_id, put_messages_details, **kwargs): header_params=header_params, body=put_messages_details, response_type="PutMessagesResult", + allow_control_chars=kwargs.get('allow_control_chars'), enforce_content_headers=False) def update_group(self, stream_id, group_name, update_group_details, **kwargs): @@ -759,6 +802,10 @@ def update_group(self, stream_id, group_name, update_group_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -770,6 +817,7 @@ def update_group(self, stream_id, group_name, update_group_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] diff --git a/src/oci/streaming/stream_client_composite_operations.py b/src/oci/streaming/stream_client_composite_operations.py index 330f2c0a57..24a7e1ae68 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/tenant_manager_control_plane/__init__.py b/src/oci/tenant_manager_control_plane/__init__.py index 6f486adb92..1f41d0d86e 100644 --- a/src/oci/tenant_manager_control_plane/__init__.py +++ b/src/oci/tenant_manager_control_plane/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/tenant_manager_control_plane/domain_client.py b/src/oci/tenant_manager_control_plane/domain_client.py index 7f06a906cb..347b0d9dd4 100644 --- a/src/oci/tenant_manager_control_plane/domain_client.py +++ b/src/oci/tenant_manager_control_plane/domain_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("domain", config, signer, tenant_manager_control_plane_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -124,6 +130,10 @@ def create_domain(self, create_domain_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.Domain` :rtype: :class:`~oci.response.Response` @@ -135,6 +145,7 @@ def create_domain(self, create_domain_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -203,6 +214,10 @@ def delete_domain(self, domain_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -214,6 +229,7 @@ def delete_domain(self, domain_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -282,6 +298,10 @@ def get_domain(self, domain_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.Domain` :rtype: :class:`~oci.response.Response` @@ -293,6 +313,7 @@ def get_domain(self, domain_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -396,6 +417,10 @@ def list_domains(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.DomainCollection` :rtype: :class:`~oci.response.Response` @@ -407,6 +432,7 @@ def list_domains(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "domain_id", "lifecycle_state", @@ -524,6 +550,10 @@ def update_domain(self, domain_id, update_domain_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.Domain` :rtype: :class:`~oci.response.Response` @@ -535,6 +565,7 @@ def update_domain(self, domain_id, update_domain_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/tenant_manager_control_plane/domain_client_composite_operations.py b/src/oci/tenant_manager_control_plane/domain_client_composite_operations.py index 40d2756541..a62147be1a 100644 --- a/src/oci/tenant_manager_control_plane/domain_client_composite_operations.py +++ b/src/oci/tenant_manager_control_plane/domain_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/tenant_manager_control_plane/domain_governance_client.py b/src/oci/tenant_manager_control_plane/domain_governance_client.py index bfa1c62f25..75a1f341e5 100644 --- a/src/oci/tenant_manager_control_plane/domain_governance_client.py +++ b/src/oci/tenant_manager_control_plane/domain_governance_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("domain_governance", config, signer, tenant_manager_control_plane_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -124,6 +130,10 @@ def create_domain_governance(self, create_domain_governance_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.DomainGovernance` :rtype: :class:`~oci.response.Response` @@ -135,6 +145,7 @@ def create_domain_governance(self, create_domain_governance_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -203,6 +214,10 @@ def delete_domain_governance(self, domain_governance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -214,6 +229,7 @@ def delete_domain_governance(self, domain_governance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -282,6 +298,10 @@ def get_domain_governance(self, domain_governance_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.DomainGovernance` :rtype: :class:`~oci.response.Response` @@ -293,6 +313,7 @@ def get_domain_governance(self, domain_governance_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -394,6 +415,10 @@ def list_domain_governances(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.DomainGovernanceCollection` :rtype: :class:`~oci.response.Response` @@ -405,6 +430,7 @@ def list_domain_governances(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "domain_id", "domain_governance_id", @@ -515,6 +541,10 @@ def update_domain_governance(self, domain_governance_id, update_domain_governanc To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.DomainGovernance` :rtype: :class:`~oci.response.Response` @@ -526,6 +556,7 @@ def update_domain_governance(self, domain_governance_id, update_domain_governanc # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/tenant_manager_control_plane/domain_governance_client_composite_operations.py b/src/oci/tenant_manager_control_plane/domain_governance_client_composite_operations.py index c30f63f07f..ab4bdc9ade 100644 --- a/src/oci/tenant_manager_control_plane/domain_governance_client_composite_operations.py +++ b/src/oci/tenant_manager_control_plane/domain_governance_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/tenant_manager_control_plane/link_client.py b/src/oci/tenant_manager_control_plane/link_client.py index f8cf555903..1e789398b8 100644 --- a/src/oci/tenant_manager_control_plane/link_client.py +++ b/src/oci/tenant_manager_control_plane/link_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("link", config, signer, tenant_manager_control_plane_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -124,6 +130,10 @@ def delete_link(self, link_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -135,6 +145,7 @@ def delete_link(self, link_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -203,6 +214,10 @@ def get_link(self, link_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.Link` :rtype: :class:`~oci.response.Response` @@ -214,6 +229,7 @@ def get_link(self, link_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -301,6 +317,10 @@ def list_links(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.LinkCollection` :rtype: :class:`~oci.response.Response` @@ -312,6 +332,7 @@ def list_links(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "parent_tenancy_id", "child_tenancy_id", diff --git a/src/oci/tenant_manager_control_plane/link_client_composite_operations.py b/src/oci/tenant_manager_control_plane/link_client_composite_operations.py index b4179161cc..aa8d189dc0 100644 --- a/src/oci/tenant_manager_control_plane/link_client_composite_operations.py +++ b/src/oci/tenant_manager_control_plane/link_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/tenant_manager_control_plane/models/__init__.py b/src/oci/tenant_manager_control_plane/models/__init__.py index b21ab91751..1e5594ea8b 100644 --- a/src/oci/tenant_manager_control_plane/models/__init__.py +++ b/src/oci/tenant_manager_control_plane/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/tenant_manager_control_plane/models/activate_order_details.py b/src/oci/tenant_manager_control_plane/models/activate_order_details.py index 374895d90a..0f76fb51dc 100644 --- a/src/oci/tenant_manager_control_plane/models/activate_order_details.py +++ b/src/oci/tenant_manager_control_plane/models/activate_order_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/assigned_subscription.py b/src/oci/tenant_manager_control_plane/models/assigned_subscription.py index dee0ce9362..2eb19f05fc 100644 --- a/src/oci/tenant_manager_control_plane/models/assigned_subscription.py +++ b/src/oci/tenant_manager_control_plane/models/assigned_subscription.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/assigned_subscription_collection.py b/src/oci/tenant_manager_control_plane/models/assigned_subscription_collection.py index 7239dc5671..81d89d17b6 100644 --- a/src/oci/tenant_manager_control_plane/models/assigned_subscription_collection.py +++ b/src/oci/tenant_manager_control_plane/models/assigned_subscription_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/assigned_subscription_summary.py b/src/oci/tenant_manager_control_plane/models/assigned_subscription_summary.py index 1c81318b8c..c301e5569b 100644 --- a/src/oci/tenant_manager_control_plane/models/assigned_subscription_summary.py +++ b/src/oci/tenant_manager_control_plane/models/assigned_subscription_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/available_region_collection.py b/src/oci/tenant_manager_control_plane/models/available_region_collection.py index 1cbb7f42ad..a781358d59 100644 --- a/src/oci/tenant_manager_control_plane/models/available_region_collection.py +++ b/src/oci/tenant_manager_control_plane/models/available_region_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/available_region_summary.py b/src/oci/tenant_manager_control_plane/models/available_region_summary.py index 1a30f16189..73770e530c 100644 --- a/src/oci/tenant_manager_control_plane/models/available_region_summary.py +++ b/src/oci/tenant_manager_control_plane/models/available_region_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/create_child_tenancy_details.py b/src/oci/tenant_manager_control_plane/models/create_child_tenancy_details.py index a0edf45d12..8a6a88ba94 100644 --- a/src/oci/tenant_manager_control_plane/models/create_child_tenancy_details.py +++ b/src/oci/tenant_manager_control_plane/models/create_child_tenancy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/create_domain_details.py b/src/oci/tenant_manager_control_plane/models/create_domain_details.py index f54898c18a..1c67d26bec 100644 --- a/src/oci/tenant_manager_control_plane/models/create_domain_details.py +++ b/src/oci/tenant_manager_control_plane/models/create_domain_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/create_domain_governance_details.py b/src/oci/tenant_manager_control_plane/models/create_domain_governance_details.py index 603e7b4e40..a60e295018 100644 --- a/src/oci/tenant_manager_control_plane/models/create_domain_governance_details.py +++ b/src/oci/tenant_manager_control_plane/models/create_domain_governance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/create_sender_invitation_details.py b/src/oci/tenant_manager_control_plane/models/create_sender_invitation_details.py index 196a3105b8..f01f728803 100644 --- a/src/oci/tenant_manager_control_plane/models/create_sender_invitation_details.py +++ b/src/oci/tenant_manager_control_plane/models/create_sender_invitation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/create_subscription_mapping_details.py b/src/oci/tenant_manager_control_plane/models/create_subscription_mapping_details.py index 78ee7fc47a..f12c31bb6a 100644 --- a/src/oci/tenant_manager_control_plane/models/create_subscription_mapping_details.py +++ b/src/oci/tenant_manager_control_plane/models/create_subscription_mapping_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/domain.py b/src/oci/tenant_manager_control_plane/models/domain.py index 65e2ab0608..0699ade01b 100644 --- a/src/oci/tenant_manager_control_plane/models/domain.py +++ b/src/oci/tenant_manager_control_plane/models/domain.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/domain_collection.py b/src/oci/tenant_manager_control_plane/models/domain_collection.py index 9e43a78db3..7a4721358f 100644 --- a/src/oci/tenant_manager_control_plane/models/domain_collection.py +++ b/src/oci/tenant_manager_control_plane/models/domain_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/domain_governance.py b/src/oci/tenant_manager_control_plane/models/domain_governance.py index c148f64e25..740dcf5593 100644 --- a/src/oci/tenant_manager_control_plane/models/domain_governance.py +++ b/src/oci/tenant_manager_control_plane/models/domain_governance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/domain_governance_collection.py b/src/oci/tenant_manager_control_plane/models/domain_governance_collection.py index 0e60ae3f72..6e0c2dc6ee 100644 --- a/src/oci/tenant_manager_control_plane/models/domain_governance_collection.py +++ b/src/oci/tenant_manager_control_plane/models/domain_governance_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/domain_governance_summary.py b/src/oci/tenant_manager_control_plane/models/domain_governance_summary.py index 640f355edd..cbd03bb100 100644 --- a/src/oci/tenant_manager_control_plane/models/domain_governance_summary.py +++ b/src/oci/tenant_manager_control_plane/models/domain_governance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/domain_summary.py b/src/oci/tenant_manager_control_plane/models/domain_summary.py index 3d855c3022..549586abe3 100644 --- a/src/oci/tenant_manager_control_plane/models/domain_summary.py +++ b/src/oci/tenant_manager_control_plane/models/domain_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/link.py b/src/oci/tenant_manager_control_plane/models/link.py index b9a30c17d9..170432f6a2 100644 --- a/src/oci/tenant_manager_control_plane/models/link.py +++ b/src/oci/tenant_manager_control_plane/models/link.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/link_collection.py b/src/oci/tenant_manager_control_plane/models/link_collection.py index be215002eb..635851d284 100644 --- a/src/oci/tenant_manager_control_plane/models/link_collection.py +++ b/src/oci/tenant_manager_control_plane/models/link_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/link_summary.py b/src/oci/tenant_manager_control_plane/models/link_summary.py index 9cb5d8a5c4..6fb3908c85 100644 --- a/src/oci/tenant_manager_control_plane/models/link_summary.py +++ b/src/oci/tenant_manager_control_plane/models/link_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/order.py b/src/oci/tenant_manager_control_plane/models/order.py index 8fb3a3a852..280db80f9c 100644 --- a/src/oci/tenant_manager_control_plane/models/order.py +++ b/src/oci/tenant_manager_control_plane/models/order.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/organization.py b/src/oci/tenant_manager_control_plane/models/organization.py index e63ccfc51d..913407b065 100644 --- a/src/oci/tenant_manager_control_plane/models/organization.py +++ b/src/oci/tenant_manager_control_plane/models/organization.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/organization_collection.py b/src/oci/tenant_manager_control_plane/models/organization_collection.py index beda756ecf..c33f3ad6f7 100644 --- a/src/oci/tenant_manager_control_plane/models/organization_collection.py +++ b/src/oci/tenant_manager_control_plane/models/organization_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/organization_summary.py b/src/oci/tenant_manager_control_plane/models/organization_summary.py index 44e5a9d9bb..5785827165 100644 --- a/src/oci/tenant_manager_control_plane/models/organization_summary.py +++ b/src/oci/tenant_manager_control_plane/models/organization_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/organization_tenancy.py b/src/oci/tenant_manager_control_plane/models/organization_tenancy.py index d2efc2176a..20cec2a13e 100644 --- a/src/oci/tenant_manager_control_plane/models/organization_tenancy.py +++ b/src/oci/tenant_manager_control_plane/models/organization_tenancy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/organization_tenancy_collection.py b/src/oci/tenant_manager_control_plane/models/organization_tenancy_collection.py index 2652684e8f..b39cf15f58 100644 --- a/src/oci/tenant_manager_control_plane/models/organization_tenancy_collection.py +++ b/src/oci/tenant_manager_control_plane/models/organization_tenancy_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/organization_tenancy_summary.py b/src/oci/tenant_manager_control_plane/models/organization_tenancy_summary.py index d68737990c..cf0ce1946a 100644 --- a/src/oci/tenant_manager_control_plane/models/organization_tenancy_summary.py +++ b/src/oci/tenant_manager_control_plane/models/organization_tenancy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/recipient_invitation.py b/src/oci/tenant_manager_control_plane/models/recipient_invitation.py index 77998738d1..df4367633b 100644 --- a/src/oci/tenant_manager_control_plane/models/recipient_invitation.py +++ b/src/oci/tenant_manager_control_plane/models/recipient_invitation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/recipient_invitation_collection.py b/src/oci/tenant_manager_control_plane/models/recipient_invitation_collection.py index 492bc1c6e0..0f7f064c31 100644 --- a/src/oci/tenant_manager_control_plane/models/recipient_invitation_collection.py +++ b/src/oci/tenant_manager_control_plane/models/recipient_invitation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/recipient_invitation_summary.py b/src/oci/tenant_manager_control_plane/models/recipient_invitation_summary.py index 7a6bd7fcf9..b656f044e0 100644 --- a/src/oci/tenant_manager_control_plane/models/recipient_invitation_summary.py +++ b/src/oci/tenant_manager_control_plane/models/recipient_invitation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/sender_invitation.py b/src/oci/tenant_manager_control_plane/models/sender_invitation.py index 72596d491a..719fdc830a 100644 --- a/src/oci/tenant_manager_control_plane/models/sender_invitation.py +++ b/src/oci/tenant_manager_control_plane/models/sender_invitation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/sender_invitation_collection.py b/src/oci/tenant_manager_control_plane/models/sender_invitation_collection.py index 35d7d37893..8feeafea53 100644 --- a/src/oci/tenant_manager_control_plane/models/sender_invitation_collection.py +++ b/src/oci/tenant_manager_control_plane/models/sender_invitation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/sender_invitation_summary.py b/src/oci/tenant_manager_control_plane/models/sender_invitation_summary.py index 462372b212..ca1f4ba111 100644 --- a/src/oci/tenant_manager_control_plane/models/sender_invitation_summary.py +++ b/src/oci/tenant_manager_control_plane/models/sender_invitation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/sku.py b/src/oci/tenant_manager_control_plane/models/sku.py index f3813940ac..c21d02d9bb 100644 --- a/src/oci/tenant_manager_control_plane/models/sku.py +++ b/src/oci/tenant_manager_control_plane/models/sku.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/subscription.py b/src/oci/tenant_manager_control_plane/models/subscription.py index 94ba7d4b68..5b90a0f441 100644 --- a/src/oci/tenant_manager_control_plane/models/subscription.py +++ b/src/oci/tenant_manager_control_plane/models/subscription.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/subscription_collection.py b/src/oci/tenant_manager_control_plane/models/subscription_collection.py index 6fc4e3cb68..f5accffa85 100644 --- a/src/oci/tenant_manager_control_plane/models/subscription_collection.py +++ b/src/oci/tenant_manager_control_plane/models/subscription_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/subscription_info.py b/src/oci/tenant_manager_control_plane/models/subscription_info.py index b6c2c75af1..2a32c5d6fe 100644 --- a/src/oci/tenant_manager_control_plane/models/subscription_info.py +++ b/src/oci/tenant_manager_control_plane/models/subscription_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/subscription_mapping.py b/src/oci/tenant_manager_control_plane/models/subscription_mapping.py index d0db53df76..a61e50a404 100644 --- a/src/oci/tenant_manager_control_plane/models/subscription_mapping.py +++ b/src/oci/tenant_manager_control_plane/models/subscription_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/subscription_mapping_collection.py b/src/oci/tenant_manager_control_plane/models/subscription_mapping_collection.py index a4097de428..e93c5471ea 100644 --- a/src/oci/tenant_manager_control_plane/models/subscription_mapping_collection.py +++ b/src/oci/tenant_manager_control_plane/models/subscription_mapping_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/subscription_mapping_summary.py b/src/oci/tenant_manager_control_plane/models/subscription_mapping_summary.py index cab3cd1a57..782f0caed3 100644 --- a/src/oci/tenant_manager_control_plane/models/subscription_mapping_summary.py +++ b/src/oci/tenant_manager_control_plane/models/subscription_mapping_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/subscription_sku.py b/src/oci/tenant_manager_control_plane/models/subscription_sku.py index 61c6982773..1b359578a3 100644 --- a/src/oci/tenant_manager_control_plane/models/subscription_sku.py +++ b/src/oci/tenant_manager_control_plane/models/subscription_sku.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/subscription_summary.py b/src/oci/tenant_manager_control_plane/models/subscription_summary.py index d508fe71f0..bb909a1a7f 100644 --- a/src/oci/tenant_manager_control_plane/models/subscription_summary.py +++ b/src/oci/tenant_manager_control_plane/models/subscription_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/update_domain_details.py b/src/oci/tenant_manager_control_plane/models/update_domain_details.py index d4b93ed298..a47c00e81f 100644 --- a/src/oci/tenant_manager_control_plane/models/update_domain_details.py +++ b/src/oci/tenant_manager_control_plane/models/update_domain_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/update_domain_governance_details.py b/src/oci/tenant_manager_control_plane/models/update_domain_governance_details.py index 63d2d4c5e5..a2f3e38bbc 100644 --- a/src/oci/tenant_manager_control_plane/models/update_domain_governance_details.py +++ b/src/oci/tenant_manager_control_plane/models/update_domain_governance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/update_organization_details.py b/src/oci/tenant_manager_control_plane/models/update_organization_details.py index 567a5f88d4..be552b82d3 100644 --- a/src/oci/tenant_manager_control_plane/models/update_organization_details.py +++ b/src/oci/tenant_manager_control_plane/models/update_organization_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/update_recipient_invitation_details.py b/src/oci/tenant_manager_control_plane/models/update_recipient_invitation_details.py index 2736f9c225..e6d28c7a7d 100644 --- a/src/oci/tenant_manager_control_plane/models/update_recipient_invitation_details.py +++ b/src/oci/tenant_manager_control_plane/models/update_recipient_invitation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/update_sender_invitation_details.py b/src/oci/tenant_manager_control_plane/models/update_sender_invitation_details.py index b837e064d0..0722077eb2 100644 --- a/src/oci/tenant_manager_control_plane/models/update_sender_invitation_details.py +++ b/src/oci/tenant_manager_control_plane/models/update_sender_invitation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/work_request.py b/src/oci/tenant_manager_control_plane/models/work_request.py index cbb9e27f6a..36f9155fae 100644 --- a/src/oci/tenant_manager_control_plane/models/work_request.py +++ b/src/oci/tenant_manager_control_plane/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/work_request_collection.py b/src/oci/tenant_manager_control_plane/models/work_request_collection.py index 373899fdf0..780ef8fdf7 100644 --- a/src/oci/tenant_manager_control_plane/models/work_request_collection.py +++ b/src/oci/tenant_manager_control_plane/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/work_request_error.py b/src/oci/tenant_manager_control_plane/models/work_request_error.py index 51fb3ea607..49446f0807 100644 --- a/src/oci/tenant_manager_control_plane/models/work_request_error.py +++ b/src/oci/tenant_manager_control_plane/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/work_request_error_collection.py b/src/oci/tenant_manager_control_plane/models/work_request_error_collection.py index b96a010db4..d7f037356f 100644 --- a/src/oci/tenant_manager_control_plane/models/work_request_error_collection.py +++ b/src/oci/tenant_manager_control_plane/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/work_request_log_entry.py b/src/oci/tenant_manager_control_plane/models/work_request_log_entry.py index 56700f1ec1..945617be19 100644 --- a/src/oci/tenant_manager_control_plane/models/work_request_log_entry.py +++ b/src/oci/tenant_manager_control_plane/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/work_request_log_entry_collection.py b/src/oci/tenant_manager_control_plane/models/work_request_log_entry_collection.py index 3d2486889f..50be44a18b 100644 --- a/src/oci/tenant_manager_control_plane/models/work_request_log_entry_collection.py +++ b/src/oci/tenant_manager_control_plane/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/work_request_resource.py b/src/oci/tenant_manager_control_plane/models/work_request_resource.py index 850cf251e4..e220c0ca8a 100644 --- a/src/oci/tenant_manager_control_plane/models/work_request_resource.py +++ b/src/oci/tenant_manager_control_plane/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/models/work_request_summary.py b/src/oci/tenant_manager_control_plane/models/work_request_summary.py index 54215f3102..943b0b5eb6 100644 --- a/src/oci/tenant_manager_control_plane/models/work_request_summary.py +++ b/src/oci/tenant_manager_control_plane/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/tenant_manager_control_plane/orders_client.py b/src/oci/tenant_manager_control_plane/orders_client.py index 34f2112d49..92f9f35048 100644 --- a/src/oci/tenant_manager_control_plane/orders_client.py +++ b/src/oci/tenant_manager_control_plane/orders_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("orders", config, signer, tenant_manager_control_plane_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -127,6 +133,10 @@ def activate_order(self, activate_order_details, activation_token, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -138,6 +148,7 @@ def activate_order(self, activate_order_details, activation_token, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -209,6 +220,10 @@ def get_order(self, activation_token, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.Order` :rtype: :class:`~oci.response.Response` @@ -220,6 +235,7 @@ def get_order(self, activation_token, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] diff --git a/src/oci/tenant_manager_control_plane/orders_client_composite_operations.py b/src/oci/tenant_manager_control_plane/orders_client_composite_operations.py index 8309bd9076..541d59c633 100644 --- a/src/oci/tenant_manager_control_plane/orders_client_composite_operations.py +++ b/src/oci/tenant_manager_control_plane/orders_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/tenant_manager_control_plane/organization_client.py b/src/oci/tenant_manager_control_plane/organization_client.py index bd6019b547..b994b835f7 100644 --- a/src/oci/tenant_manager_control_plane/organization_client.py +++ b/src/oci/tenant_manager_control_plane/organization_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("organization", config, signer, tenant_manager_control_plane_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -134,6 +140,10 @@ def approve_organization_tenancy_for_transfer(self, compartment_id, organization To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.OrganizationTenancy` :rtype: :class:`~oci.response.Response` @@ -145,6 +155,7 @@ def approve_organization_tenancy_for_transfer(self, compartment_id, organization # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -232,6 +243,10 @@ def create_child_tenancy(self, create_child_tenancy_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -243,6 +258,7 @@ def create_child_tenancy(self, create_child_tenancy_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -316,6 +332,10 @@ def delete_organization_tenancy(self, organization_tenancy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -327,6 +347,7 @@ def delete_organization_tenancy(self, organization_tenancy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -398,6 +419,10 @@ def get_organization(self, organization_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.Organization` :rtype: :class:`~oci.response.Response` @@ -409,6 +434,7 @@ def get_organization(self, organization_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -480,6 +506,10 @@ def get_organization_tenancy(self, organization_id, tenancy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.OrganizationTenancy` :rtype: :class:`~oci.response.Response` @@ -491,6 +521,7 @@ def get_organization_tenancy(self, organization_id, tenancy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -566,6 +597,10 @@ def list_organization_tenancies(self, organization_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.OrganizationTenancyCollection` :rtype: :class:`~oci.response.Response` @@ -577,6 +612,7 @@ def list_organization_tenancies(self, organization_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -661,6 +697,10 @@ def list_organizations(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.OrganizationCollection` :rtype: :class:`~oci.response.Response` @@ -672,6 +712,7 @@ def list_organizations(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -756,6 +797,10 @@ def unapprove_organization_tenancy_for_transfer(self, compartment_id, organizati To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.OrganizationTenancy` :rtype: :class:`~oci.response.Response` @@ -767,6 +812,7 @@ def unapprove_organization_tenancy_for_transfer(self, compartment_id, organizati # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -864,6 +910,10 @@ def update_organization(self, organization_id, update_organization_details, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -875,6 +925,7 @@ def update_organization(self, organization_id, update_organization_details, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", diff --git a/src/oci/tenant_manager_control_plane/organization_client_composite_operations.py b/src/oci/tenant_manager_control_plane/organization_client_composite_operations.py index 85f73faef0..41317a2f9b 100644 --- a/src/oci/tenant_manager_control_plane/organization_client_composite_operations.py +++ b/src/oci/tenant_manager_control_plane/organization_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/tenant_manager_control_plane/recipient_invitation_client.py b/src/oci/tenant_manager_control_plane/recipient_invitation_client.py index d83e91b642..1f8d598c60 100644 --- a/src/oci/tenant_manager_control_plane/recipient_invitation_client.py +++ b/src/oci/tenant_manager_control_plane/recipient_invitation_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("recipient_invitation", config, signer, tenant_manager_control_plane_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -131,6 +137,10 @@ def accept_recipient_invitation(self, recipient_invitation_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -142,6 +152,7 @@ def accept_recipient_invitation(self, recipient_invitation_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -213,6 +224,10 @@ def get_recipient_invitation(self, recipient_invitation_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.RecipientInvitation` :rtype: :class:`~oci.response.Response` @@ -224,6 +239,7 @@ def get_recipient_invitation(self, recipient_invitation_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -306,6 +322,10 @@ def ignore_recipient_invitation(self, recipient_invitation_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.RecipientInvitation` :rtype: :class:`~oci.response.Response` @@ -317,6 +337,7 @@ def ignore_recipient_invitation(self, recipient_invitation_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -406,6 +427,10 @@ def list_recipient_invitations(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.RecipientInvitationCollection` :rtype: :class:`~oci.response.Response` @@ -417,6 +442,7 @@ def list_recipient_invitations(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "sender_tenancy_id", "lifecycle_state", @@ -512,6 +538,10 @@ def update_recipient_invitation(self, recipient_invitation_id, update_recipient_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.RecipientInvitation` :rtype: :class:`~oci.response.Response` @@ -523,6 +553,7 @@ def update_recipient_invitation(self, recipient_invitation_id, update_recipient_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/tenant_manager_control_plane/recipient_invitation_client_composite_operations.py b/src/oci/tenant_manager_control_plane/recipient_invitation_client_composite_operations.py index 01a5d6c9e9..402e3fb7a3 100644 --- a/src/oci/tenant_manager_control_plane/recipient_invitation_client_composite_operations.py +++ b/src/oci/tenant_manager_control_plane/recipient_invitation_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/tenant_manager_control_plane/sender_invitation_client.py b/src/oci/tenant_manager_control_plane/sender_invitation_client.py index 016d9bf32f..63621d379e 100644 --- a/src/oci/tenant_manager_control_plane/sender_invitation_client.py +++ b/src/oci/tenant_manager_control_plane/sender_invitation_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("sender_invitation", config, signer, tenant_manager_control_plane_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -131,6 +137,10 @@ def cancel_sender_invitation(self, sender_invitation_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -142,6 +152,7 @@ def cancel_sender_invitation(self, sender_invitation_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -220,6 +231,10 @@ def create_sender_invitation(self, create_sender_invitation_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.SenderInvitation` :rtype: :class:`~oci.response.Response` @@ -231,6 +246,7 @@ def create_sender_invitation(self, create_sender_invitation_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -292,6 +308,10 @@ def get_sender_invitation(self, sender_invitation_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.SenderInvitation` :rtype: :class:`~oci.response.Response` @@ -303,6 +323,7 @@ def get_sender_invitation(self, sender_invitation_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -406,6 +427,10 @@ def list_sender_invitations(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.SenderInvitationCollection` :rtype: :class:`~oci.response.Response` @@ -417,6 +442,7 @@ def list_sender_invitations(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "recipient_tenancy_id", "lifecycle_state", @@ -534,6 +560,10 @@ def update_sender_invitation(self, sender_invitation_id, update_sender_invitatio To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.SenderInvitation` :rtype: :class:`~oci.response.Response` @@ -545,6 +575,7 @@ def update_sender_invitation(self, sender_invitation_id, update_sender_invitatio # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/tenant_manager_control_plane/sender_invitation_client_composite_operations.py b/src/oci/tenant_manager_control_plane/sender_invitation_client_composite_operations.py index 7f667db5b9..75a2726a33 100644 --- a/src/oci/tenant_manager_control_plane/sender_invitation_client_composite_operations.py +++ b/src/oci/tenant_manager_control_plane/sender_invitation_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/tenant_manager_control_plane/subscription_client.py b/src/oci/tenant_manager_control_plane/subscription_client.py index 7cf329990d..834cab484b 100644 --- a/src/oci/tenant_manager_control_plane/subscription_client.py +++ b/src/oci/tenant_manager_control_plane/subscription_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("subscription", config, signer, tenant_manager_control_plane_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -131,6 +137,10 @@ def create_subscription_mapping(self, create_subscription_mapping_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.SubscriptionMapping` :rtype: :class:`~oci.response.Response` @@ -142,6 +152,7 @@ def create_subscription_mapping(self, create_subscription_mapping_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_retry_token", @@ -212,6 +223,10 @@ def delete_subscription_mapping(self, subscription_mapping_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -223,6 +238,7 @@ def delete_subscription_mapping(self, subscription_mapping_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -291,6 +307,10 @@ def get_assigned_subscription(self, assigned_subscription_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.AssignedSubscription` :rtype: :class:`~oci.response.Response` @@ -302,6 +322,7 @@ def get_assigned_subscription(self, assigned_subscription_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -370,6 +391,10 @@ def get_subscription(self, subscription_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.Subscription` :rtype: :class:`~oci.response.Response` @@ -381,6 +406,7 @@ def get_subscription(self, subscription_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -449,6 +475,10 @@ def get_subscription_mapping(self, subscription_mapping_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.SubscriptionMapping` :rtype: :class:`~oci.response.Response` @@ -460,6 +490,7 @@ def get_subscription_mapping(self, subscription_mapping_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -550,6 +581,10 @@ def list_assigned_subscriptions(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.AssignedSubscriptionCollection` :rtype: :class:`~oci.response.Response` @@ -561,6 +596,7 @@ def list_assigned_subscriptions(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "subscription_id", "opc_request_id", @@ -651,6 +687,10 @@ def list_available_regions(self, subscription_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.AvailableRegionCollection` :rtype: :class:`~oci.response.Response` @@ -662,6 +702,7 @@ def list_available_regions(self, subscription_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page" @@ -768,6 +809,10 @@ def list_subscription_mappings(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.SubscriptionMappingCollection` :rtype: :class:`~oci.response.Response` @@ -779,6 +824,7 @@ def list_subscription_mappings(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "subscription_id", "subscription_mapping_id", @@ -900,6 +946,10 @@ def list_subscriptions(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.SubscriptionCollection` :rtype: :class:`~oci.response.Response` @@ -911,6 +961,7 @@ def list_subscriptions(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "compartment_id", "subscription_id", diff --git a/src/oci/tenant_manager_control_plane/subscription_client_composite_operations.py b/src/oci/tenant_manager_control_plane/subscription_client_composite_operations.py index 234109344c..02ddc8e587 100644 --- a/src/oci/tenant_manager_control_plane/subscription_client_composite_operations.py +++ b/src/oci/tenant_manager_control_plane/subscription_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/tenant_manager_control_plane/work_request_client.py b/src/oci/tenant_manager_control_plane/work_request_client.py index 7cab814f6d..2092a8f937 100644 --- a/src/oci/tenant_manager_control_plane/work_request_client.py +++ b/src/oci/tenant_manager_control_plane/work_request_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("work_request", config, signer, tenant_manager_control_plane_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -117,6 +123,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -128,6 +138,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -207,6 +218,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -218,6 +233,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -316,6 +332,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -327,6 +347,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -425,6 +446,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.tenant_manager_control_plane.models.WorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -436,6 +461,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", diff --git a/src/oci/tenant_manager_control_plane/work_request_client_composite_operations.py b/src/oci/tenant_manager_control_plane/work_request_client_composite_operations.py index b99acc8294..c4a97e0fc8 100644 --- a/src/oci/tenant_manager_control_plane/work_request_client_composite_operations.py +++ b/src/oci/tenant_manager_control_plane/work_request_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/usage/__init__.py b/src/oci/usage/__init__.py index 5b385b1aaf..db7c0a4433 100644 --- a/src/oci/usage/__init__.py +++ b/src/oci/usage/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/usage/models/__init__.py b/src/oci/usage/models/__init__.py index 79b5ff4380..ae7b585292 100644 --- a/src/oci/usage/models/__init__.py +++ b/src/oci/usage/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/usage/models/create_redeemable_user_details.py b/src/oci/usage/models/create_redeemable_user_details.py index b485d6b465..f7d34af6fa 100644 --- a/src/oci/usage/models/create_redeemable_user_details.py +++ b/src/oci/usage/models/create_redeemable_user_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage/models/monthly_reward_summary.py b/src/oci/usage/models/monthly_reward_summary.py index e922060a45..ce60c4b333 100644 --- a/src/oci/usage/models/monthly_reward_summary.py +++ b/src/oci/usage/models/monthly_reward_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage/models/product_collection.py b/src/oci/usage/models/product_collection.py index 252dbfceeb..2f4d341fd7 100644 --- a/src/oci/usage/models/product_collection.py +++ b/src/oci/usage/models/product_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage/models/product_summary.py b/src/oci/usage/models/product_summary.py index 0660d730f1..e5df695550 100644 --- a/src/oci/usage/models/product_summary.py +++ b/src/oci/usage/models/product_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage/models/redeemable_user.py b/src/oci/usage/models/redeemable_user.py index 5798770696..4b551d9bb8 100644 --- a/src/oci/usage/models/redeemable_user.py +++ b/src/oci/usage/models/redeemable_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage/models/redeemable_user_collection.py b/src/oci/usage/models/redeemable_user_collection.py index ffb41c8513..7f5960e7fb 100644 --- a/src/oci/usage/models/redeemable_user_collection.py +++ b/src/oci/usage/models/redeemable_user_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage/models/redeemable_user_summary.py b/src/oci/usage/models/redeemable_user_summary.py index 6b40c6f773..2d938fcb70 100644 --- a/src/oci/usage/models/redeemable_user_summary.py +++ b/src/oci/usage/models/redeemable_user_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage/models/reward_collection.py b/src/oci/usage/models/reward_collection.py index ad973579e4..1b09911386 100644 --- a/src/oci/usage/models/reward_collection.py +++ b/src/oci/usage/models/reward_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage/models/reward_details.py b/src/oci/usage/models/reward_details.py index f0f6a95580..6696d42773 100644 --- a/src/oci/usage/models/reward_details.py +++ b/src/oci/usage/models/reward_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage/rewards_client.py b/src/oci/usage/rewards_client.py index 22f951318d..e9f7e2c668 100644 --- a/src/oci/usage/rewards_client.py +++ b/src/oci/usage/rewards_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("rewards", config, signer, usage_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -140,6 +146,10 @@ def create_redeemable_user(self, create_redeemable_user_details, tenancy_id, sub To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.usage.models.RedeemableUserCollection` :rtype: :class:`~oci.response.Response` @@ -151,6 +161,7 @@ def create_redeemable_user(self, create_redeemable_user_details, tenancy_id, sub # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "user_id", "opc_request_id", @@ -248,6 +259,10 @@ def delete_redeemable_user(self, email_id, tenancy_id, subscription_id, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -259,6 +274,7 @@ def delete_redeemable_user(self, email_id, tenancy_id, subscription_id, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -362,6 +378,10 @@ def list_products(self, tenancy_id, subscription_id, usage_period_key, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.usage.models.ProductCollection` :rtype: :class:`~oci.response.Response` @@ -373,6 +393,7 @@ def list_products(self, tenancy_id, subscription_id, usage_period_key, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -499,6 +520,10 @@ def list_redeemable_users(self, tenancy_id, subscription_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.usage.models.RedeemableUserCollection` :rtype: :class:`~oci.response.Response` @@ -510,6 +535,7 @@ def list_redeemable_users(self, tenancy_id, subscription_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -610,6 +636,10 @@ def list_rewards(self, tenancy_id, subscription_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.usage.models.RewardCollection` :rtype: :class:`~oci.response.Response` @@ -621,6 +651,7 @@ def list_rewards(self, tenancy_id, subscription_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] diff --git a/src/oci/usage/rewards_client_composite_operations.py b/src/oci/usage/rewards_client_composite_operations.py index 4112e28cdb..ae6fb18544 100644 --- a/src/oci/usage/rewards_client_composite_operations.py +++ b/src/oci/usage/rewards_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/usage_api/__init__.py b/src/oci/usage_api/__init__.py index cf0cb92637..05854c93a3 100644 --- a/src/oci/usage_api/__init__.py +++ b/src/oci/usage_api/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/usage_api/models/__init__.py b/src/oci/usage_api/models/__init__.py index 1228efd02b..fbe33cec78 100644 --- a/src/oci/usage_api/models/__init__.py +++ b/src/oci/usage_api/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/usage_api/models/configuration.py b/src/oci/usage_api/models/configuration.py index 2db12de894..4de8cd4ebf 100644 --- a/src/oci/usage_api/models/configuration.py +++ b/src/oci/usage_api/models/configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/configuration_aggregation.py b/src/oci/usage_api/models/configuration_aggregation.py index abbbe08b84..821dcf092d 100644 --- a/src/oci/usage_api/models/configuration_aggregation.py +++ b/src/oci/usage_api/models/configuration_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/cost_analysis_ui.py b/src/oci/usage_api/models/cost_analysis_ui.py index fb34631098..24ea3e1985 100644 --- a/src/oci/usage_api/models/cost_analysis_ui.py +++ b/src/oci/usage_api/models/cost_analysis_ui.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/create_custom_table_details.py b/src/oci/usage_api/models/create_custom_table_details.py index be957df303..e474316654 100644 --- a/src/oci/usage_api/models/create_custom_table_details.py +++ b/src/oci/usage_api/models/create_custom_table_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/create_query_details.py b/src/oci/usage_api/models/create_query_details.py index 2b51895bf6..b3ca16171a 100644 --- a/src/oci/usage_api/models/create_query_details.py +++ b/src/oci/usage_api/models/create_query_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/create_schedule_report_details.py b/src/oci/usage_api/models/create_schedule_report_details.py index 35223b2268..c815093735 100644 --- a/src/oci/usage_api/models/create_schedule_report_details.py +++ b/src/oci/usage_api/models/create_schedule_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/custom_table.py b/src/oci/usage_api/models/custom_table.py index f0a60a0b7a..a5b58dcff6 100644 --- a/src/oci/usage_api/models/custom_table.py +++ b/src/oci/usage_api/models/custom_table.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/custom_table_collection.py b/src/oci/usage_api/models/custom_table_collection.py index db37588f00..1696b2f2e1 100644 --- a/src/oci/usage_api/models/custom_table_collection.py +++ b/src/oci/usage_api/models/custom_table_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/custom_table_summary.py b/src/oci/usage_api/models/custom_table_summary.py index 807dd1c50d..92d8fae4b0 100644 --- a/src/oci/usage_api/models/custom_table_summary.py +++ b/src/oci/usage_api/models/custom_table_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/dimension.py b/src/oci/usage_api/models/dimension.py index 57a7191bec..eafc7141ef 100644 --- a/src/oci/usage_api/models/dimension.py +++ b/src/oci/usage_api/models/dimension.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/filter.py b/src/oci/usage_api/models/filter.py index 8c9b24d7d2..3cee57a0c9 100644 --- a/src/oci/usage_api/models/filter.py +++ b/src/oci/usage_api/models/filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/forecast.py b/src/oci/usage_api/models/forecast.py index 3f341f29b6..f25db8cfd9 100644 --- a/src/oci/usage_api/models/forecast.py +++ b/src/oci/usage_api/models/forecast.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/query.py b/src/oci/usage_api/models/query.py index c978f611c7..6c7f636a10 100644 --- a/src/oci/usage_api/models/query.py +++ b/src/oci/usage_api/models/query.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/query_collection.py b/src/oci/usage_api/models/query_collection.py index 65c91eb3ab..1f540e7383 100644 --- a/src/oci/usage_api/models/query_collection.py +++ b/src/oci/usage_api/models/query_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/query_definition.py b/src/oci/usage_api/models/query_definition.py index 82562aaf33..476213b316 100644 --- a/src/oci/usage_api/models/query_definition.py +++ b/src/oci/usage_api/models/query_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/query_summary.py b/src/oci/usage_api/models/query_summary.py index c303f1ca8e..834e9550de 100644 --- a/src/oci/usage_api/models/query_summary.py +++ b/src/oci/usage_api/models/query_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/report_query.py b/src/oci/usage_api/models/report_query.py index 888b5094b1..d2fa226fe1 100644 --- a/src/oci/usage_api/models/report_query.py +++ b/src/oci/usage_api/models/report_query.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/request_summarized_usages_details.py b/src/oci/usage_api/models/request_summarized_usages_details.py index 90487e179a..a3c84662e8 100644 --- a/src/oci/usage_api/models/request_summarized_usages_details.py +++ b/src/oci/usage_api/models/request_summarized_usages_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/saved_custom_table.py b/src/oci/usage_api/models/saved_custom_table.py index f0faee1c3a..a5f22f07a9 100644 --- a/src/oci/usage_api/models/saved_custom_table.py +++ b/src/oci/usage_api/models/saved_custom_table.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/saved_schedule_report.py b/src/oci/usage_api/models/saved_schedule_report.py index ee9bd7ff0c..2b8be9d276 100644 --- a/src/oci/usage_api/models/saved_schedule_report.py +++ b/src/oci/usage_api/models/saved_schedule_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/schedule_report.py b/src/oci/usage_api/models/schedule_report.py index cdb8e3926b..1479fc1cc1 100644 --- a/src/oci/usage_api/models/schedule_report.py +++ b/src/oci/usage_api/models/schedule_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/schedule_report_collection.py b/src/oci/usage_api/models/schedule_report_collection.py index 040c57a6a0..796985265b 100644 --- a/src/oci/usage_api/models/schedule_report_collection.py +++ b/src/oci/usage_api/models/schedule_report_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/schedule_report_summary.py b/src/oci/usage_api/models/schedule_report_summary.py index 8dd502a5f3..49543e72ad 100644 --- a/src/oci/usage_api/models/schedule_report_summary.py +++ b/src/oci/usage_api/models/schedule_report_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/tag.py b/src/oci/usage_api/models/tag.py index 456a4e5b1a..8486055d46 100644 --- a/src/oci/usage_api/models/tag.py +++ b/src/oci/usage_api/models/tag.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/update_custom_table_details.py b/src/oci/usage_api/models/update_custom_table_details.py index 124591713d..b936e19727 100644 --- a/src/oci/usage_api/models/update_custom_table_details.py +++ b/src/oci/usage_api/models/update_custom_table_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/update_query_details.py b/src/oci/usage_api/models/update_query_details.py index b0417c1d69..5dc30b2645 100644 --- a/src/oci/usage_api/models/update_query_details.py +++ b/src/oci/usage_api/models/update_query_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/update_schedule_report_details.py b/src/oci/usage_api/models/update_schedule_report_details.py index b5709f1f67..23afa8edf2 100644 --- a/src/oci/usage_api/models/update_schedule_report_details.py +++ b/src/oci/usage_api/models/update_schedule_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/usage_aggregation.py b/src/oci/usage_api/models/usage_aggregation.py index 5b591a8162..549287c6a7 100644 --- a/src/oci/usage_api/models/usage_aggregation.py +++ b/src/oci/usage_api/models/usage_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/models/usage_summary.py b/src/oci/usage_api/models/usage_summary.py index 673abbc2d0..82e41f8b5c 100644 --- a/src/oci/usage_api/models/usage_summary.py +++ b/src/oci/usage_api/models/usage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/usage_api/usageapi_client.py b/src/oci/usage_api/usageapi_client.py index baef85fadd..e2bf52b30a 100644 --- a/src/oci/usage_api/usageapi_client.py +++ b/src/oci/usage_api/usageapi_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("usageapi", config, signer, usage_api_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -125,6 +131,10 @@ def create_custom_table(self, create_custom_table_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.usage_api.models.CustomTable` :rtype: :class:`~oci.response.Response` @@ -136,6 +146,7 @@ def create_custom_table(self, create_custom_table_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -205,6 +216,10 @@ def create_query(self, create_query_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.usage_api.models.Query` :rtype: :class:`~oci.response.Response` @@ -216,6 +231,7 @@ def create_query(self, create_query_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -285,6 +301,10 @@ def delete_custom_table(self, custom_table_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -296,6 +316,7 @@ def delete_custom_table(self, custom_table_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -372,6 +393,10 @@ def delete_query(self, query_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -383,6 +408,7 @@ def delete_query(self, query_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -452,6 +478,10 @@ def get_custom_table(self, custom_table_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.usage_api.models.CustomTable` :rtype: :class:`~oci.response.Response` @@ -463,6 +493,7 @@ def get_custom_table(self, custom_table_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -532,6 +563,10 @@ def get_query(self, query_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.usage_api.models.Query` :rtype: :class:`~oci.response.Response` @@ -543,6 +578,7 @@ def get_query(self, query_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -632,6 +668,10 @@ def list_custom_tables(self, compartment_id, saved_report_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.usage_api.models.CustomTableCollection` :rtype: :class:`~oci.response.Response` @@ -643,6 +683,7 @@ def list_custom_tables(self, compartment_id, saved_report_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -747,6 +788,10 @@ def list_queries(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.usage_api.models.QueryCollection` :rtype: :class:`~oci.response.Response` @@ -758,6 +803,7 @@ def list_queries(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -844,6 +890,10 @@ def request_summarized_configurations(self, tenant_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.usage_api.models.ConfigurationAggregation` :rtype: :class:`~oci.response.Response` @@ -855,6 +905,7 @@ def request_summarized_configurations(self, tenant_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -926,6 +977,10 @@ def request_summarized_usages(self, request_summarized_usages_details, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.usage_api.models.UsageAggregation` :rtype: :class:`~oci.response.Response` @@ -937,6 +992,7 @@ def request_summarized_usages(self, request_summarized_usages_details, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1016,6 +1072,10 @@ def update_custom_table(self, update_custom_table_details, custom_table_id, **kw To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.usage_api.models.CustomTable` :rtype: :class:`~oci.response.Response` @@ -1027,6 +1087,7 @@ def update_custom_table(self, update_custom_table_details, custom_table_id, **kw # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -1110,6 +1171,10 @@ def update_query(self, update_query_details, query_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.usage_api.models.Query` :rtype: :class:`~oci.response.Response` @@ -1121,6 +1186,7 @@ def update_query(self, update_query_details, query_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" diff --git a/src/oci/usage_api/usageapi_client_composite_operations.py b/src/oci/usage_api/usageapi_client_composite_operations.py index 5a9c4923a9..e0e9796b7d 100644 --- a/src/oci/usage_api/usageapi_client_composite_operations.py +++ b/src/oci/usage_api/usageapi_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/util.py b/src/oci/util.py index ee2cd6bd05..a477f4d24e 100644 --- a/src/oci/util.py +++ b/src/oci/util.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/vault/__init__.py b/src/oci/vault/__init__.py index 55f089c0de..f6c7e80a93 100644 --- a/src/oci/vault/__init__.py +++ b/src/oci/vault/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/vault/models/__init__.py b/src/oci/vault/models/__init__.py index 4e736e4602..fcf43fbd69 100644 --- a/src/oci/vault/models/__init__.py +++ b/src/oci/vault/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/vault/models/base64_secret_content_details.py b/src/oci/vault/models/base64_secret_content_details.py index fe7523a9f5..08c928eb2a 100644 --- a/src/oci/vault/models/base64_secret_content_details.py +++ b/src/oci/vault/models/base64_secret_content_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .secret_content_details import SecretContentDetails diff --git a/src/oci/vault/models/change_secret_compartment_details.py b/src/oci/vault/models/change_secret_compartment_details.py index d1eca97571..916f37708d 100644 --- a/src/oci/vault/models/change_secret_compartment_details.py +++ b/src/oci/vault/models/change_secret_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vault/models/create_secret_details.py b/src/oci/vault/models/create_secret_details.py index 8b9dd4d508..eb04985a9e 100644 --- a/src/oci/vault/models/create_secret_details.py +++ b/src/oci/vault/models/create_secret_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vault/models/schedule_secret_deletion_details.py b/src/oci/vault/models/schedule_secret_deletion_details.py index 4618e21102..86236b6641 100644 --- a/src/oci/vault/models/schedule_secret_deletion_details.py +++ b/src/oci/vault/models/schedule_secret_deletion_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vault/models/schedule_secret_version_deletion_details.py b/src/oci/vault/models/schedule_secret_version_deletion_details.py index 144a5f47d5..3744298674 100644 --- a/src/oci/vault/models/schedule_secret_version_deletion_details.py +++ b/src/oci/vault/models/schedule_secret_version_deletion_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vault/models/secret.py b/src/oci/vault/models/secret.py index 0ffc0a9a6f..f960beefe5 100644 --- a/src/oci/vault/models/secret.py +++ b/src/oci/vault/models/secret.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vault/models/secret_content_details.py b/src/oci/vault/models/secret_content_details.py index 31863a9d65..0a3246cdf9 100644 --- a/src/oci/vault/models/secret_content_details.py +++ b/src/oci/vault/models/secret_content_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vault/models/secret_expiry_rule.py b/src/oci/vault/models/secret_expiry_rule.py index 5901770355..a22fc7ab4f 100644 --- a/src/oci/vault/models/secret_expiry_rule.py +++ b/src/oci/vault/models/secret_expiry_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .secret_rule import SecretRule diff --git a/src/oci/vault/models/secret_reuse_rule.py b/src/oci/vault/models/secret_reuse_rule.py index a8aa19f562..ab01fd5102 100644 --- a/src/oci/vault/models/secret_reuse_rule.py +++ b/src/oci/vault/models/secret_reuse_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .secret_rule import SecretRule diff --git a/src/oci/vault/models/secret_rule.py b/src/oci/vault/models/secret_rule.py index 0537bc6df2..b1ffe6a71f 100644 --- a/src/oci/vault/models/secret_rule.py +++ b/src/oci/vault/models/secret_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vault/models/secret_summary.py b/src/oci/vault/models/secret_summary.py index 28d7eebee6..827403a66e 100644 --- a/src/oci/vault/models/secret_summary.py +++ b/src/oci/vault/models/secret_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vault/models/secret_version.py b/src/oci/vault/models/secret_version.py index 24ad995de0..be0c48ba08 100644 --- a/src/oci/vault/models/secret_version.py +++ b/src/oci/vault/models/secret_version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vault/models/secret_version_summary.py b/src/oci/vault/models/secret_version_summary.py index d782a2280e..59dda15b51 100644 --- a/src/oci/vault/models/secret_version_summary.py +++ b/src/oci/vault/models/secret_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vault/models/update_secret_details.py b/src/oci/vault/models/update_secret_details.py index f3376f3916..7a862b1811 100644 --- a/src/oci/vault/models/update_secret_details.py +++ b/src/oci/vault/models/update_secret_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vault/vaults_client.py b/src/oci/vault/vaults_client.py index e3b4ecf78d..4635964f27 100644 --- a/src/oci/vault/vaults_client.py +++ b/src/oci/vault/vaults_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("vaults", config, signer, vault_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -128,6 +134,10 @@ def cancel_secret_deletion(self, secret_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -139,6 +149,7 @@ def cancel_secret_deletion(self, secret_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -219,6 +230,10 @@ def cancel_secret_version_deletion(self, secret_id, secret_version_number, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -230,6 +245,7 @@ def cancel_secret_version_deletion(self, secret_id, secret_version_number, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -324,6 +340,10 @@ def change_secret_compartment(self, secret_id, change_secret_compartment_details To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -335,6 +355,7 @@ def change_secret_compartment(self, secret_id, change_secret_compartment_details # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -420,6 +441,10 @@ def create_secret(self, create_secret_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vault.models.Secret` :rtype: :class:`~oci.response.Response` @@ -431,6 +456,7 @@ def create_secret(self, create_secret_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -494,6 +520,10 @@ def get_secret(self, secret_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vault.models.Secret` :rtype: :class:`~oci.response.Response` @@ -505,6 +535,7 @@ def get_secret(self, secret_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -578,6 +609,10 @@ def get_secret_version(self, secret_id, secret_version_number, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vault.models.SecretVersion` :rtype: :class:`~oci.response.Response` @@ -589,6 +624,7 @@ def get_secret_version(self, secret_id, secret_version_number, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -677,6 +713,10 @@ def list_secret_versions(self, secret_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.vault.models.SecretVersionSummary` :rtype: :class:`~oci.response.Response` @@ -688,6 +728,7 @@ def list_secret_versions(self, secret_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -815,6 +856,10 @@ def list_secrets(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.vault.models.SecretSummary` :rtype: :class:`~oci.response.Response` @@ -826,6 +871,7 @@ def list_secrets(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "name", "limit", @@ -937,6 +983,10 @@ def schedule_secret_deletion(self, secret_id, schedule_secret_deletion_details, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -948,6 +998,7 @@ def schedule_secret_deletion(self, secret_id, schedule_secret_deletion_details, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1034,6 +1085,10 @@ def schedule_secret_version_deletion(self, secret_id, secret_version_number, sch To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1045,6 +1100,7 @@ def schedule_secret_version_deletion(self, secret_id, secret_version_number, sch # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1133,6 +1189,10 @@ def update_secret(self, secret_id, update_secret_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vault.models.Secret` :rtype: :class:`~oci.response.Response` @@ -1144,6 +1204,7 @@ def update_secret(self, secret_id, update_secret_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/vault/vaults_client_composite_operations.py b/src/oci/vault/vaults_client_composite_operations.py index 87e38bc182..e9f0fb367d 100644 --- a/src/oci/vault/vaults_client_composite_operations.py +++ b/src/oci/vault/vaults_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/version.py b/src/oci/version.py index d8ea9df04e..78cfa0ad66 100644 --- a/src/oci/version.py +++ b/src/oci/version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. -__version__ = "2.53.1" +__version__ = "2.54.0" diff --git a/src/oci/vulnerability_scanning/__init__.py b/src/oci/vulnerability_scanning/__init__.py index 7b33f56ecf..5fab636deb 100644 --- a/src/oci/vulnerability_scanning/__init__.py +++ b/src/oci/vulnerability_scanning/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/vulnerability_scanning/models/__init__.py b/src/oci/vulnerability_scanning/models/__init__.py index 0991acf57d..4459bee829 100644 --- a/src/oci/vulnerability_scanning/models/__init__.py +++ b/src/oci/vulnerability_scanning/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/vulnerability_scanning/models/change_container_scan_recipe_compartment_details.py b/src/oci/vulnerability_scanning/models/change_container_scan_recipe_compartment_details.py index 7decc63e3a..d17f8a65b3 100644 --- a/src/oci/vulnerability_scanning/models/change_container_scan_recipe_compartment_details.py +++ b/src/oci/vulnerability_scanning/models/change_container_scan_recipe_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/change_container_scan_result_compartment_details.py b/src/oci/vulnerability_scanning/models/change_container_scan_result_compartment_details.py index f6f0852a5a..9501a275a7 100644 --- a/src/oci/vulnerability_scanning/models/change_container_scan_result_compartment_details.py +++ b/src/oci/vulnerability_scanning/models/change_container_scan_result_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/change_container_scan_target_compartment_details.py b/src/oci/vulnerability_scanning/models/change_container_scan_target_compartment_details.py index 9de5e068aa..f883822da0 100644 --- a/src/oci/vulnerability_scanning/models/change_container_scan_target_compartment_details.py +++ b/src/oci/vulnerability_scanning/models/change_container_scan_target_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/change_host_agent_scan_result_compartment_details.py b/src/oci/vulnerability_scanning/models/change_host_agent_scan_result_compartment_details.py index cb737f56a6..f2e9ea3287 100644 --- a/src/oci/vulnerability_scanning/models/change_host_agent_scan_result_compartment_details.py +++ b/src/oci/vulnerability_scanning/models/change_host_agent_scan_result_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/change_host_cis_benchmark_scan_result_compartment_details.py b/src/oci/vulnerability_scanning/models/change_host_cis_benchmark_scan_result_compartment_details.py index b349deac94..fcb6321190 100644 --- a/src/oci/vulnerability_scanning/models/change_host_cis_benchmark_scan_result_compartment_details.py +++ b/src/oci/vulnerability_scanning/models/change_host_cis_benchmark_scan_result_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/change_host_endpoint_protection_scan_result_compartment_details.py b/src/oci/vulnerability_scanning/models/change_host_endpoint_protection_scan_result_compartment_details.py index 979f230667..6b1bee3e56 100644 --- a/src/oci/vulnerability_scanning/models/change_host_endpoint_protection_scan_result_compartment_details.py +++ b/src/oci/vulnerability_scanning/models/change_host_endpoint_protection_scan_result_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/change_host_port_scan_result_compartment_details.py b/src/oci/vulnerability_scanning/models/change_host_port_scan_result_compartment_details.py index a46c286c1b..5a1ecb78b0 100644 --- a/src/oci/vulnerability_scanning/models/change_host_port_scan_result_compartment_details.py +++ b/src/oci/vulnerability_scanning/models/change_host_port_scan_result_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/change_host_scan_recipe_compartment_details.py b/src/oci/vulnerability_scanning/models/change_host_scan_recipe_compartment_details.py index 3a970e932c..0b2a2192e5 100644 --- a/src/oci/vulnerability_scanning/models/change_host_scan_recipe_compartment_details.py +++ b/src/oci/vulnerability_scanning/models/change_host_scan_recipe_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/change_host_scan_target_compartment_details.py b/src/oci/vulnerability_scanning/models/change_host_scan_target_compartment_details.py index 1eab431550..281de25752 100644 --- a/src/oci/vulnerability_scanning/models/change_host_scan_target_compartment_details.py +++ b/src/oci/vulnerability_scanning/models/change_host_scan_target_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/container_scan_recipe.py b/src/oci/vulnerability_scanning/models/container_scan_recipe.py index b2747db64b..417e1c7249 100644 --- a/src/oci/vulnerability_scanning/models/container_scan_recipe.py +++ b/src/oci/vulnerability_scanning/models/container_scan_recipe.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/container_scan_recipe_summary.py b/src/oci/vulnerability_scanning/models/container_scan_recipe_summary.py index 5ee4d23d2d..315e3fc5a0 100644 --- a/src/oci/vulnerability_scanning/models/container_scan_recipe_summary.py +++ b/src/oci/vulnerability_scanning/models/container_scan_recipe_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/container_scan_recipe_summary_collection.py b/src/oci/vulnerability_scanning/models/container_scan_recipe_summary_collection.py index 3a5d48fc4b..786f0cc106 100644 --- a/src/oci/vulnerability_scanning/models/container_scan_recipe_summary_collection.py +++ b/src/oci/vulnerability_scanning/models/container_scan_recipe_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/container_scan_registry.py b/src/oci/vulnerability_scanning/models/container_scan_registry.py index cf9308cb8c..2af9bc1c0f 100644 --- a/src/oci/vulnerability_scanning/models/container_scan_registry.py +++ b/src/oci/vulnerability_scanning/models/container_scan_registry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/container_scan_result.py b/src/oci/vulnerability_scanning/models/container_scan_result.py index dc021c68f8..3366d32949 100644 --- a/src/oci/vulnerability_scanning/models/container_scan_result.py +++ b/src/oci/vulnerability_scanning/models/container_scan_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/container_scan_result_problem.py b/src/oci/vulnerability_scanning/models/container_scan_result_problem.py index df600ecc03..2c2efdcc70 100644 --- a/src/oci/vulnerability_scanning/models/container_scan_result_problem.py +++ b/src/oci/vulnerability_scanning/models/container_scan_result_problem.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/container_scan_result_summary.py b/src/oci/vulnerability_scanning/models/container_scan_result_summary.py index 71c9f01c01..eb69325f44 100644 --- a/src/oci/vulnerability_scanning/models/container_scan_result_summary.py +++ b/src/oci/vulnerability_scanning/models/container_scan_result_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/container_scan_result_summary_collection.py b/src/oci/vulnerability_scanning/models/container_scan_result_summary_collection.py index 0e343e9e5e..8715a19d2d 100644 --- a/src/oci/vulnerability_scanning/models/container_scan_result_summary_collection.py +++ b/src/oci/vulnerability_scanning/models/container_scan_result_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/container_scan_settings.py b/src/oci/vulnerability_scanning/models/container_scan_settings.py index 06cbe840ef..e3c3f52248 100644 --- a/src/oci/vulnerability_scanning/models/container_scan_settings.py +++ b/src/oci/vulnerability_scanning/models/container_scan_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/container_scan_target.py b/src/oci/vulnerability_scanning/models/container_scan_target.py index f023a82335..f34ba8497a 100644 --- a/src/oci/vulnerability_scanning/models/container_scan_target.py +++ b/src/oci/vulnerability_scanning/models/container_scan_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/container_scan_target_summary.py b/src/oci/vulnerability_scanning/models/container_scan_target_summary.py index f6b05d23d1..7d4b9eb1b7 100644 --- a/src/oci/vulnerability_scanning/models/container_scan_target_summary.py +++ b/src/oci/vulnerability_scanning/models/container_scan_target_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/container_scan_target_summary_collection.py b/src/oci/vulnerability_scanning/models/container_scan_target_summary_collection.py index fd1052a7a1..72ab39c1e7 100644 --- a/src/oci/vulnerability_scanning/models/container_scan_target_summary_collection.py +++ b/src/oci/vulnerability_scanning/models/container_scan_target_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/create_container_scan_recipe_details.py b/src/oci/vulnerability_scanning/models/create_container_scan_recipe_details.py index 6146f8efff..38de759445 100644 --- a/src/oci/vulnerability_scanning/models/create_container_scan_recipe_details.py +++ b/src/oci/vulnerability_scanning/models/create_container_scan_recipe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/create_container_scan_registry_details.py b/src/oci/vulnerability_scanning/models/create_container_scan_registry_details.py index e48970b6dd..03803f5352 100644 --- a/src/oci/vulnerability_scanning/models/create_container_scan_registry_details.py +++ b/src/oci/vulnerability_scanning/models/create_container_scan_registry_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/create_container_scan_target_details.py b/src/oci/vulnerability_scanning/models/create_container_scan_target_details.py index 6d4524c624..82af88f567 100644 --- a/src/oci/vulnerability_scanning/models/create_container_scan_target_details.py +++ b/src/oci/vulnerability_scanning/models/create_container_scan_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/create_host_scan_recipe_details.py b/src/oci/vulnerability_scanning/models/create_host_scan_recipe_details.py index 44ce20756e..87911b1aa1 100644 --- a/src/oci/vulnerability_scanning/models/create_host_scan_recipe_details.py +++ b/src/oci/vulnerability_scanning/models/create_host_scan_recipe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/create_host_scan_target_details.py b/src/oci/vulnerability_scanning/models/create_host_scan_target_details.py index 9b6618ea6d..27251b918b 100644 --- a/src/oci/vulnerability_scanning/models/create_host_scan_target_details.py +++ b/src/oci/vulnerability_scanning/models/create_host_scan_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/create_ocir_container_scan_registry_details.py b/src/oci/vulnerability_scanning/models/create_ocir_container_scan_registry_details.py index 79c378db57..cd98b8ca93 100644 --- a/src/oci/vulnerability_scanning/models/create_ocir_container_scan_registry_details.py +++ b/src/oci/vulnerability_scanning/models/create_ocir_container_scan_registry_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_container_scan_registry_details import CreateContainerScanRegistryDetails diff --git a/src/oci/vulnerability_scanning/models/cve_details.py b/src/oci/vulnerability_scanning/models/cve_details.py index eca022d2fa..922d47a5d7 100644 --- a/src/oci/vulnerability_scanning/models/cve_details.py +++ b/src/oci/vulnerability_scanning/models/cve_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/export_host_agent_scan_result_csv_details.py b/src/oci/vulnerability_scanning/models/export_host_agent_scan_result_csv_details.py index 6fadc10ef1..1b30cb441c 100644 --- a/src/oci/vulnerability_scanning/models/export_host_agent_scan_result_csv_details.py +++ b/src/oci/vulnerability_scanning/models/export_host_agent_scan_result_csv_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/export_host_vulnerability_csv_details.py b/src/oci/vulnerability_scanning/models/export_host_vulnerability_csv_details.py index 7ec24347c1..42226df636 100644 --- a/src/oci/vulnerability_scanning/models/export_host_vulnerability_csv_details.py +++ b/src/oci/vulnerability_scanning/models/export_host_vulnerability_csv_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_agent_scan_result.py b/src/oci/vulnerability_scanning/models/host_agent_scan_result.py index a0f30e7913..3bb2d7076e 100644 --- a/src/oci/vulnerability_scanning/models/host_agent_scan_result.py +++ b/src/oci/vulnerability_scanning/models/host_agent_scan_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_agent_scan_result_problem.py b/src/oci/vulnerability_scanning/models/host_agent_scan_result_problem.py index 56750e4669..de51be80d5 100644 --- a/src/oci/vulnerability_scanning/models/host_agent_scan_result_problem.py +++ b/src/oci/vulnerability_scanning/models/host_agent_scan_result_problem.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_agent_scan_result_summary.py b/src/oci/vulnerability_scanning/models/host_agent_scan_result_summary.py index 8d1010a9b2..389037a3b2 100644 --- a/src/oci/vulnerability_scanning/models/host_agent_scan_result_summary.py +++ b/src/oci/vulnerability_scanning/models/host_agent_scan_result_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_agent_scan_result_summary_collection.py b/src/oci/vulnerability_scanning/models/host_agent_scan_result_summary_collection.py index c16ffcb8eb..1f2d13b06a 100644 --- a/src/oci/vulnerability_scanning/models/host_agent_scan_result_summary_collection.py +++ b/src/oci/vulnerability_scanning/models/host_agent_scan_result_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result.py b/src/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result.py index fa95dad5b8..a6ada3cda6 100644 --- a/src/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result.py +++ b/src/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result_score.py b/src/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result_score.py index a502dba357..fa34e84b22 100644 --- a/src/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result_score.py +++ b/src/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result_score.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result_summary.py b/src/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result_summary.py index bf007e7b6b..17a4757adc 100644 --- a/src/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result_summary.py +++ b/src/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result_summary_collection.py b/src/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result_summary_collection.py index c3ef634d4e..651366c60a 100644 --- a/src/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result_summary_collection.py +++ b/src/oci/vulnerability_scanning/models/host_cis_benchmark_scan_result_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_cis_benchmark_settings.py b/src/oci/vulnerability_scanning/models/host_cis_benchmark_settings.py index 7d20bdc610..bcd966af42 100644 --- a/src/oci/vulnerability_scanning/models/host_cis_benchmark_settings.py +++ b/src/oci/vulnerability_scanning/models/host_cis_benchmark_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result.py b/src/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result.py index a07e2e7fa7..ef691341f1 100644 --- a/src/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result.py +++ b/src/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result_endpoint_protection.py b/src/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result_endpoint_protection.py index 4ed443fb06..392991be26 100644 --- a/src/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result_endpoint_protection.py +++ b/src/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result_endpoint_protection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result_summary.py b/src/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result_summary.py index 5243eea1f7..09dffad5f3 100644 --- a/src/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result_summary.py +++ b/src/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result_summary_collection.py b/src/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result_summary_collection.py index 5fa7de0b3c..e1c93222a0 100644 --- a/src/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result_summary_collection.py +++ b/src/oci/vulnerability_scanning/models/host_endpoint_protection_scan_result_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_endpoint_protection_settings.py b/src/oci/vulnerability_scanning/models/host_endpoint_protection_settings.py index 82b43cbf2e..9ab0485163 100644 --- a/src/oci/vulnerability_scanning/models/host_endpoint_protection_settings.py +++ b/src/oci/vulnerability_scanning/models/host_endpoint_protection_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_port_scan_result.py b/src/oci/vulnerability_scanning/models/host_port_scan_result.py index dcbc076f5f..155c2e0d4b 100644 --- a/src/oci/vulnerability_scanning/models/host_port_scan_result.py +++ b/src/oci/vulnerability_scanning/models/host_port_scan_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_port_scan_result_open_port.py b/src/oci/vulnerability_scanning/models/host_port_scan_result_open_port.py index 0f7b761adb..ff0a72dfb3 100644 --- a/src/oci/vulnerability_scanning/models/host_port_scan_result_open_port.py +++ b/src/oci/vulnerability_scanning/models/host_port_scan_result_open_port.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_port_scan_result_summary.py b/src/oci/vulnerability_scanning/models/host_port_scan_result_summary.py index 50316e6d69..e25ba487aa 100644 --- a/src/oci/vulnerability_scanning/models/host_port_scan_result_summary.py +++ b/src/oci/vulnerability_scanning/models/host_port_scan_result_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_port_scan_result_summary_collection.py b/src/oci/vulnerability_scanning/models/host_port_scan_result_summary_collection.py index 06fea74cb5..1a2e0c82e3 100644 --- a/src/oci/vulnerability_scanning/models/host_port_scan_result_summary_collection.py +++ b/src/oci/vulnerability_scanning/models/host_port_scan_result_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_scan_agent_configuration.py b/src/oci/vulnerability_scanning/models/host_scan_agent_configuration.py index 9a5f125ceb..08f34af697 100644 --- a/src/oci/vulnerability_scanning/models/host_scan_agent_configuration.py +++ b/src/oci/vulnerability_scanning/models/host_scan_agent_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_scan_agent_configuration_oci.py b/src/oci/vulnerability_scanning/models/host_scan_agent_configuration_oci.py index f756e1cb06..946015814e 100644 --- a/src/oci/vulnerability_scanning/models/host_scan_agent_configuration_oci.py +++ b/src/oci/vulnerability_scanning/models/host_scan_agent_configuration_oci.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .host_scan_agent_configuration import HostScanAgentConfiguration diff --git a/src/oci/vulnerability_scanning/models/host_scan_agent_settings.py b/src/oci/vulnerability_scanning/models/host_scan_agent_settings.py index f8644bfac5..44129110b3 100644 --- a/src/oci/vulnerability_scanning/models/host_scan_agent_settings.py +++ b/src/oci/vulnerability_scanning/models/host_scan_agent_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_scan_port_settings.py b/src/oci/vulnerability_scanning/models/host_scan_port_settings.py index 86c05ff69d..07c88a04e4 100644 --- a/src/oci/vulnerability_scanning/models/host_scan_port_settings.py +++ b/src/oci/vulnerability_scanning/models/host_scan_port_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_scan_recipe.py b/src/oci/vulnerability_scanning/models/host_scan_recipe.py index 1503c5901e..05bb22228a 100644 --- a/src/oci/vulnerability_scanning/models/host_scan_recipe.py +++ b/src/oci/vulnerability_scanning/models/host_scan_recipe.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_scan_recipe_summary.py b/src/oci/vulnerability_scanning/models/host_scan_recipe_summary.py index 09b291c645..23210a5436 100644 --- a/src/oci/vulnerability_scanning/models/host_scan_recipe_summary.py +++ b/src/oci/vulnerability_scanning/models/host_scan_recipe_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_scan_recipe_summary_collection.py b/src/oci/vulnerability_scanning/models/host_scan_recipe_summary_collection.py index 7d5ce01685..755af8981d 100644 --- a/src/oci/vulnerability_scanning/models/host_scan_recipe_summary_collection.py +++ b/src/oci/vulnerability_scanning/models/host_scan_recipe_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_scan_target.py b/src/oci/vulnerability_scanning/models/host_scan_target.py index bee57ac281..bae5f96aff 100644 --- a/src/oci/vulnerability_scanning/models/host_scan_target.py +++ b/src/oci/vulnerability_scanning/models/host_scan_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_scan_target_summary.py b/src/oci/vulnerability_scanning/models/host_scan_target_summary.py index db625b6532..29c0b89b94 100644 --- a/src/oci/vulnerability_scanning/models/host_scan_target_summary.py +++ b/src/oci/vulnerability_scanning/models/host_scan_target_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_scan_target_summary_collection.py b/src/oci/vulnerability_scanning/models/host_scan_target_summary_collection.py index ac5c576356..d3d7f79bac 100644 --- a/src/oci/vulnerability_scanning/models/host_scan_target_summary_collection.py +++ b/src/oci/vulnerability_scanning/models/host_scan_target_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_vulnerability.py b/src/oci/vulnerability_scanning/models/host_vulnerability.py index c746662b1c..3cb52122e8 100644 --- a/src/oci/vulnerability_scanning/models/host_vulnerability.py +++ b/src/oci/vulnerability_scanning/models/host_vulnerability.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_vulnerability_impacted_host_summary.py b/src/oci/vulnerability_scanning/models/host_vulnerability_impacted_host_summary.py index 80cf1b527b..6e68cb10c7 100644 --- a/src/oci/vulnerability_scanning/models/host_vulnerability_impacted_host_summary.py +++ b/src/oci/vulnerability_scanning/models/host_vulnerability_impacted_host_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_vulnerability_impacted_host_summary_collection.py b/src/oci/vulnerability_scanning/models/host_vulnerability_impacted_host_summary_collection.py index af5e73c319..4677c72e6d 100644 --- a/src/oci/vulnerability_scanning/models/host_vulnerability_impacted_host_summary_collection.py +++ b/src/oci/vulnerability_scanning/models/host_vulnerability_impacted_host_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_vulnerability_summary.py b/src/oci/vulnerability_scanning/models/host_vulnerability_summary.py index c77616024a..1f782d3e7e 100644 --- a/src/oci/vulnerability_scanning/models/host_vulnerability_summary.py +++ b/src/oci/vulnerability_scanning/models/host_vulnerability_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/host_vulnerability_summary_collection.py b/src/oci/vulnerability_scanning/models/host_vulnerability_summary_collection.py index 4a8e652f87..76ace333ec 100644 --- a/src/oci/vulnerability_scanning/models/host_vulnerability_summary_collection.py +++ b/src/oci/vulnerability_scanning/models/host_vulnerability_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/ocir_container_scan_registry.py b/src/oci/vulnerability_scanning/models/ocir_container_scan_registry.py index 36e2b2dd14..640c653a8f 100644 --- a/src/oci/vulnerability_scanning/models/ocir_container_scan_registry.py +++ b/src/oci/vulnerability_scanning/models/ocir_container_scan_registry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .container_scan_registry import ContainerScanRegistry diff --git a/src/oci/vulnerability_scanning/models/schedule.py b/src/oci/vulnerability_scanning/models/schedule.py index 3da56cca83..985e3272c7 100644 --- a/src/oci/vulnerability_scanning/models/schedule.py +++ b/src/oci/vulnerability_scanning/models/schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/update_container_scan_recipe_details.py b/src/oci/vulnerability_scanning/models/update_container_scan_recipe_details.py index 95420672ac..e7ccd8edf5 100644 --- a/src/oci/vulnerability_scanning/models/update_container_scan_recipe_details.py +++ b/src/oci/vulnerability_scanning/models/update_container_scan_recipe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/update_container_scan_registry_details.py b/src/oci/vulnerability_scanning/models/update_container_scan_registry_details.py index 9349538bfc..e33b6824cb 100644 --- a/src/oci/vulnerability_scanning/models/update_container_scan_registry_details.py +++ b/src/oci/vulnerability_scanning/models/update_container_scan_registry_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/update_container_scan_target_details.py b/src/oci/vulnerability_scanning/models/update_container_scan_target_details.py index f8d641ade3..8a536002fa 100644 --- a/src/oci/vulnerability_scanning/models/update_container_scan_target_details.py +++ b/src/oci/vulnerability_scanning/models/update_container_scan_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/update_host_scan_recipe_details.py b/src/oci/vulnerability_scanning/models/update_host_scan_recipe_details.py index fcc64783b2..8c6475ad00 100644 --- a/src/oci/vulnerability_scanning/models/update_host_scan_recipe_details.py +++ b/src/oci/vulnerability_scanning/models/update_host_scan_recipe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/update_host_scan_target_details.py b/src/oci/vulnerability_scanning/models/update_host_scan_target_details.py index 967256180d..b8cb774c95 100644 --- a/src/oci/vulnerability_scanning/models/update_host_scan_target_details.py +++ b/src/oci/vulnerability_scanning/models/update_host_scan_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/update_ocir_container_scan_registry_details.py b/src/oci/vulnerability_scanning/models/update_ocir_container_scan_registry_details.py index 1f2b6e5abe..2c9210922e 100644 --- a/src/oci/vulnerability_scanning/models/update_ocir_container_scan_registry_details.py +++ b/src/oci/vulnerability_scanning/models/update_ocir_container_scan_registry_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_container_scan_registry_details import UpdateContainerScanRegistryDetails diff --git a/src/oci/vulnerability_scanning/models/work_request.py b/src/oci/vulnerability_scanning/models/work_request.py index d2eb2f32f5..3c88ba89c6 100644 --- a/src/oci/vulnerability_scanning/models/work_request.py +++ b/src/oci/vulnerability_scanning/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/work_request_collection.py b/src/oci/vulnerability_scanning/models/work_request_collection.py index 9047f43a39..cfce7d8c1f 100644 --- a/src/oci/vulnerability_scanning/models/work_request_collection.py +++ b/src/oci/vulnerability_scanning/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/work_request_error.py b/src/oci/vulnerability_scanning/models/work_request_error.py index 04dde83e08..26ac6a8cc9 100644 --- a/src/oci/vulnerability_scanning/models/work_request_error.py +++ b/src/oci/vulnerability_scanning/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/work_request_error_collection.py b/src/oci/vulnerability_scanning/models/work_request_error_collection.py index f1b71e4a5e..1f56abce86 100644 --- a/src/oci/vulnerability_scanning/models/work_request_error_collection.py +++ b/src/oci/vulnerability_scanning/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/work_request_log_entry.py b/src/oci/vulnerability_scanning/models/work_request_log_entry.py index 8d02a6a994..7b37ab8d12 100644 --- a/src/oci/vulnerability_scanning/models/work_request_log_entry.py +++ b/src/oci/vulnerability_scanning/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/work_request_log_entry_collection.py b/src/oci/vulnerability_scanning/models/work_request_log_entry_collection.py index 2c166e8782..2ffdce5de9 100644 --- a/src/oci/vulnerability_scanning/models/work_request_log_entry_collection.py +++ b/src/oci/vulnerability_scanning/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/models/work_request_resource.py b/src/oci/vulnerability_scanning/models/work_request_resource.py index 6decbf1282..4a492bf1d8 100644 --- a/src/oci/vulnerability_scanning/models/work_request_resource.py +++ b/src/oci/vulnerability_scanning/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/vulnerability_scanning/vulnerability_scanning_client.py b/src/oci/vulnerability_scanning/vulnerability_scanning_client.py index 79f2bd0a0c..9c0bfb04ac 100644 --- a/src/oci/vulnerability_scanning/vulnerability_scanning_client.py +++ b/src/oci/vulnerability_scanning/vulnerability_scanning_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("vulnerability_scanning", config, signer, vulnerability_scanning_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -134,6 +140,10 @@ def change_container_scan_recipe_compartment(self, container_scan_recipe_id, cha To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -145,6 +155,7 @@ def change_container_scan_recipe_compartment(self, container_scan_recipe_id, cha # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -235,6 +246,10 @@ def change_container_scan_result_compartment(self, container_scan_result_id, cha To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -246,6 +261,7 @@ def change_container_scan_result_compartment(self, container_scan_result_id, cha # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -336,6 +352,10 @@ def change_container_scan_target_compartment(self, container_scan_target_id, cha To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -347,6 +367,7 @@ def change_container_scan_target_compartment(self, container_scan_target_id, cha # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -437,6 +458,10 @@ def change_host_agent_scan_result_compartment(self, host_agent_scan_result_id, c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -448,6 +473,7 @@ def change_host_agent_scan_result_compartment(self, host_agent_scan_result_id, c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -538,6 +564,10 @@ def change_host_cis_benchmark_scan_result_compartment(self, host_cis_benchmark_s To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -549,6 +579,7 @@ def change_host_cis_benchmark_scan_result_compartment(self, host_cis_benchmark_s # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -639,6 +670,10 @@ def change_host_endpoint_protection_scan_result_compartment(self, host_endpoint_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -650,6 +685,7 @@ def change_host_endpoint_protection_scan_result_compartment(self, host_endpoint_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -740,6 +776,10 @@ def change_host_port_scan_result_compartment(self, host_port_scan_result_id, cha To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -751,6 +791,7 @@ def change_host_port_scan_result_compartment(self, host_port_scan_result_id, cha # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -841,6 +882,10 @@ def change_host_scan_recipe_compartment(self, host_scan_recipe_id, change_host_s To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -852,6 +897,7 @@ def change_host_scan_recipe_compartment(self, host_scan_recipe_id, change_host_s # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -942,6 +988,10 @@ def change_host_scan_target_compartment(self, host_scan_target_id, change_host_s To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -953,6 +1003,7 @@ def change_host_scan_target_compartment(self, host_scan_target_id, change_host_s # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -1033,6 +1084,10 @@ def create_container_scan_recipe(self, create_container_scan_recipe_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.ContainerScanRecipe` :rtype: :class:`~oci.response.Response` @@ -1044,6 +1099,7 @@ def create_container_scan_recipe(self, create_container_scan_recipe_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1112,6 +1168,10 @@ def create_container_scan_target(self, create_container_scan_target_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.ContainerScanTarget` :rtype: :class:`~oci.response.Response` @@ -1123,6 +1183,7 @@ def create_container_scan_target(self, create_container_scan_target_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1191,6 +1252,10 @@ def create_host_scan_recipe(self, create_host_scan_recipe_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.HostScanRecipe` :rtype: :class:`~oci.response.Response` @@ -1202,6 +1267,7 @@ def create_host_scan_recipe(self, create_host_scan_recipe_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1270,6 +1336,10 @@ def create_host_scan_target(self, create_host_scan_target_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.HostScanTarget` :rtype: :class:`~oci.response.Response` @@ -1281,6 +1351,7 @@ def create_host_scan_target(self, create_host_scan_target_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -1349,6 +1420,10 @@ def delete_container_scan_recipe(self, container_scan_recipe_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1360,6 +1435,7 @@ def delete_container_scan_recipe(self, container_scan_recipe_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1435,6 +1511,10 @@ def delete_container_scan_result(self, container_scan_result_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1446,6 +1526,7 @@ def delete_container_scan_result(self, container_scan_result_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1521,6 +1602,10 @@ def delete_container_scan_target(self, container_scan_target_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1532,6 +1617,7 @@ def delete_container_scan_target(self, container_scan_target_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1607,6 +1693,10 @@ def delete_host_agent_scan_result(self, host_agent_scan_result_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1618,6 +1708,7 @@ def delete_host_agent_scan_result(self, host_agent_scan_result_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1693,6 +1784,10 @@ def delete_host_cis_benchmark_scan_result(self, host_cis_benchmark_scan_result_i To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1704,6 +1799,7 @@ def delete_host_cis_benchmark_scan_result(self, host_cis_benchmark_scan_result_i # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1779,6 +1875,10 @@ def delete_host_endpoint_protection_scan_result(self, host_endpoint_protection_s To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1790,6 +1890,7 @@ def delete_host_endpoint_protection_scan_result(self, host_endpoint_protection_s # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1865,6 +1966,10 @@ def delete_host_port_scan_result(self, host_port_scan_result_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1876,6 +1981,7 @@ def delete_host_port_scan_result(self, host_port_scan_result_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -1951,6 +2057,10 @@ def delete_host_scan_recipe(self, host_scan_recipe_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1962,6 +2072,7 @@ def delete_host_scan_recipe(self, host_scan_recipe_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2037,6 +2148,10 @@ def delete_host_scan_target(self, host_scan_target_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2048,6 +2163,7 @@ def delete_host_scan_target(self, host_scan_target_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2116,6 +2232,10 @@ def export_host_agent_scan_result_csv(self, export_host_agent_scan_result_csv_de To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -2127,6 +2247,7 @@ def export_host_agent_scan_result_csv(self, export_host_agent_scan_result_csv_de # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2185,6 +2306,10 @@ def export_host_vulnerability_csv(self, export_host_vulnerability_csv_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` @@ -2196,6 +2321,7 @@ def export_host_vulnerability_csv(self, export_host_vulnerability_csv_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2254,6 +2380,10 @@ def get_container_scan_recipe(self, container_scan_recipe_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.ContainerScanRecipe` :rtype: :class:`~oci.response.Response` @@ -2265,6 +2395,7 @@ def get_container_scan_recipe(self, container_scan_recipe_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2333,6 +2464,10 @@ def get_container_scan_result(self, container_scan_result_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.ContainerScanResult` :rtype: :class:`~oci.response.Response` @@ -2344,6 +2479,7 @@ def get_container_scan_result(self, container_scan_result_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2412,6 +2548,10 @@ def get_container_scan_target(self, container_scan_target_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.ContainerScanTarget` :rtype: :class:`~oci.response.Response` @@ -2423,6 +2563,7 @@ def get_container_scan_target(self, container_scan_target_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2491,6 +2632,10 @@ def get_host_agent_scan_result(self, host_agent_scan_result_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.HostAgentScanResult` :rtype: :class:`~oci.response.Response` @@ -2502,6 +2647,7 @@ def get_host_agent_scan_result(self, host_agent_scan_result_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2570,6 +2716,10 @@ def get_host_cis_benchmark_scan_result(self, host_cis_benchmark_scan_result_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.HostCisBenchmarkScanResult` :rtype: :class:`~oci.response.Response` @@ -2581,6 +2731,7 @@ def get_host_cis_benchmark_scan_result(self, host_cis_benchmark_scan_result_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2649,6 +2800,10 @@ def get_host_endpoint_protection_scan_result(self, host_endpoint_protection_scan To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.HostEndpointProtectionScanResult` :rtype: :class:`~oci.response.Response` @@ -2660,6 +2815,7 @@ def get_host_endpoint_protection_scan_result(self, host_endpoint_protection_scan # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2728,6 +2884,10 @@ def get_host_port_scan_result(self, host_port_scan_result_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.HostPortScanResult` :rtype: :class:`~oci.response.Response` @@ -2739,6 +2899,7 @@ def get_host_port_scan_result(self, host_port_scan_result_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2807,6 +2968,10 @@ def get_host_scan_recipe(self, host_scan_recipe_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.HostScanRecipe` :rtype: :class:`~oci.response.Response` @@ -2818,6 +2983,7 @@ def get_host_scan_recipe(self, host_scan_recipe_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2886,6 +3052,10 @@ def get_host_scan_target(self, host_scan_target_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.HostScanTarget` :rtype: :class:`~oci.response.Response` @@ -2897,6 +3067,7 @@ def get_host_scan_target(self, host_scan_target_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2965,6 +3136,10 @@ def get_host_vulnerability(self, host_vulnerability_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.HostVulnerability` :rtype: :class:`~oci.response.Response` @@ -2976,6 +3151,7 @@ def get_host_vulnerability(self, host_vulnerability_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3044,6 +3220,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -3055,6 +3235,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -3147,6 +3328,10 @@ def list_container_scan_recipes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.ContainerScanRecipeSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -3158,6 +3343,7 @@ def list_container_scan_recipes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "display_name", @@ -3294,6 +3480,10 @@ def list_container_scan_results(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.ContainerScanResultSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -3305,6 +3495,7 @@ def list_container_scan_results(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "repository", "image", @@ -3433,6 +3624,10 @@ def list_container_scan_targets(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.ContainerScanTargetSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -3444,6 +3639,7 @@ def list_container_scan_targets(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "display_name", @@ -3580,6 +3776,10 @@ def list_host_agent_scan_results(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.HostAgentScanResultSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -3591,6 +3791,7 @@ def list_host_agent_scan_results(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "instance_id", "highest_problem_severity", @@ -3732,6 +3933,10 @@ def list_host_cis_benchmark_scan_results(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.HostCisBenchmarkScanResultSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -3743,6 +3948,7 @@ def list_host_cis_benchmark_scan_results(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "instance_id", "highest_problem_severity", @@ -3882,6 +4088,10 @@ def list_host_endpoint_protection_scan_results(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.HostEndpointProtectionScanResultSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -3893,6 +4103,7 @@ def list_host_endpoint_protection_scan_results(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "instance_id", "highest_problem_severity", @@ -4032,6 +4243,10 @@ def list_host_port_scan_results(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.HostPortScanResultSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -4043,6 +4258,7 @@ def list_host_port_scan_results(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "instance_id", "highest_problem_severity", @@ -4169,6 +4385,10 @@ def list_host_scan_recipes(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.HostScanRecipeSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -4180,6 +4400,7 @@ def list_host_scan_recipes(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "display_name", @@ -4300,6 +4521,10 @@ def list_host_scan_targets(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.HostScanTargetSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -4311,6 +4536,7 @@ def list_host_scan_targets(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "display_name", @@ -4439,6 +4665,10 @@ def list_host_vulnerabilities(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.HostVulnerabilitySummaryCollection` :rtype: :class:`~oci.response.Response` @@ -4450,6 +4680,7 @@ def list_host_vulnerabilities(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -4573,6 +4804,10 @@ def list_host_vulnerability_impacted_hosts(self, host_vulnerability_id, **kwargs To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.HostVulnerabilityImpactedHostSummaryCollection` :rtype: :class:`~oci.response.Response` @@ -4584,6 +4819,7 @@ def list_host_vulnerability_impacted_hosts(self, host_vulnerability_id, **kwargs # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "sort_order", "sort_by", @@ -4686,6 +4922,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -4697,6 +4937,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -4781,6 +5022,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -4792,6 +5037,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -4876,6 +5122,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.vulnerability_scanning.models.WorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -4887,6 +5137,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -4964,6 +5215,10 @@ def update_container_scan_recipe(self, container_scan_recipe_id, update_containe To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4975,6 +5230,7 @@ def update_container_scan_recipe(self, container_scan_recipe_id, update_containe # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -5055,6 +5311,10 @@ def update_container_scan_target(self, container_scan_target_id, update_containe To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5066,6 +5326,7 @@ def update_container_scan_target(self, container_scan_target_id, update_containe # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -5146,6 +5407,10 @@ def update_host_scan_recipe(self, host_scan_recipe_id, update_host_scan_recipe_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5157,6 +5422,7 @@ def update_host_scan_recipe(self, host_scan_recipe_id, update_host_scan_recipe_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -5237,6 +5503,10 @@ def update_host_scan_target(self, host_scan_target_id, update_host_scan_target_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5248,6 +5518,7 @@ def update_host_scan_target(self, host_scan_target_id, update_host_scan_target_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/vulnerability_scanning/vulnerability_scanning_client_composite_operations.py b/src/oci/vulnerability_scanning/vulnerability_scanning_client_composite_operations.py index e564ae9cee..18b97398db 100644 --- a/src/oci/vulnerability_scanning/vulnerability_scanning_client_composite_operations.py +++ b/src/oci/vulnerability_scanning/vulnerability_scanning_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/waas/__init__.py b/src/oci/waas/__init__.py index c5572c8966..9aef3969df 100644 --- a/src/oci/waas/__init__.py +++ b/src/oci/waas/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/waas/models/__init__.py b/src/oci/waas/models/__init__.py index 4c7c9752b0..5e8c141356 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/waas/models/access_rule.py b/src/oci/waas/models/access_rule.py index ffb899f4af..d03876c5f2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/access_rule_criteria.py b/src/oci/waas/models/access_rule_criteria.py index 05432c2a0d..ff02d209d2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/add_http_response_header_action.py b/src/oci/waas/models/add_http_response_header_action.py index 3289a531a8..d1c59cb10b 100644 --- a/src/oci/waas/models/add_http_response_header_action.py +++ b/src/oci/waas/models/add_http_response_header_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .header_manipulation_action import HeaderManipulationAction diff --git a/src/oci/waas/models/address_list.py b/src/oci/waas/models/address_list.py index bbf1de403d..ab523d8da0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/address_list_summary.py b/src/oci/waas/models/address_list_summary.py index 8c90645391..0977671b2b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/address_rate_limiting.py b/src/oci/waas/models/address_rate_limiting.py index f09fc12f77..b48448fa44 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/block_challenge_settings.py b/src/oci/waas/models/block_challenge_settings.py index 38aeedc0b4..c10e9320a3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/caching_rule.py b/src/oci/waas/models/caching_rule.py index 89ff09b857..0b16cd6026 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/caching_rule_criteria.py b/src/oci/waas/models/caching_rule_criteria.py index a00e5019d2..1925617899 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/caching_rule_summary.py b/src/oci/waas/models/caching_rule_summary.py index cd6698fc42..3925d30ca1 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/captcha.py b/src/oci/waas/models/captcha.py index ebb53da068..3cc89eeadc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/certificate.py b/src/oci/waas/models/certificate.py index 53ac054ed7..7c5777b72c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/certificate_extensions.py b/src/oci/waas/models/certificate_extensions.py index 8a0e9b0136..8995df3de0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/certificate_issuer_name.py b/src/oci/waas/models/certificate_issuer_name.py index 5cf0ffa38a..75b7acee74 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/certificate_public_key_info.py b/src/oci/waas/models/certificate_public_key_info.py index 96473cf4d9..34ca66b394 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/certificate_subject_name.py b/src/oci/waas/models/certificate_subject_name.py index d9282d7b50..d7cc177d71 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/certificate_summary.py b/src/oci/waas/models/certificate_summary.py index 50a3cbbb60..61bcf8ad30 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 fbd32af190..d92b33015d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/change_certificate_compartment_details.py b/src/oci/waas/models/change_certificate_compartment_details.py index 0207aef112..7185d9a743 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 bc48930c8d..f59a5a9bd0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 7723d2b073..89e901e86d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 095dc54ba9..973ada40bc 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/create_address_list_details.py b/src/oci/waas/models/create_address_list_details.py index 7720083765..cd2619969c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/create_certificate_details.py b/src/oci/waas/models/create_certificate_details.py index e4989000e1..f1a861321e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 3edb58386d..12b7b491c0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/create_http_redirect_details.py b/src/oci/waas/models/create_http_redirect_details.py index 080146d430..a33a17c736 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/create_waas_policy_details.py b/src/oci/waas/models/create_waas_policy_details.py index e266ffbbc3..540fdd99c2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/custom_protection_rule.py b/src/oci/waas/models/custom_protection_rule.py index 6792d9cca3..39074e8994 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/custom_protection_rule_setting.py b/src/oci/waas/models/custom_protection_rule_setting.py index 54fabb3914..bffb336435 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/custom_protection_rule_summary.py b/src/oci/waas/models/custom_protection_rule_summary.py index 0d5da31264..2446b57656 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/device_fingerprint_challenge.py b/src/oci/waas/models/device_fingerprint_challenge.py index 0f7ec47427..3219fcbdd5 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/edge_subnet.py b/src/oci/waas/models/edge_subnet.py index c20f01abf7..745498b32e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/extend_http_response_header_action.py b/src/oci/waas/models/extend_http_response_header_action.py index f969ea47e9..69f5d674f8 100644 --- a/src/oci/waas/models/extend_http_response_header_action.py +++ b/src/oci/waas/models/extend_http_response_header_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .header_manipulation_action import HeaderManipulationAction diff --git a/src/oci/waas/models/good_bot.py b/src/oci/waas/models/good_bot.py index 3a2c37df54..3daa7aef66 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/header.py b/src/oci/waas/models/header.py index 7c8b5a102d..7407dbc915 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/header_manipulation_action.py b/src/oci/waas/models/header_manipulation_action.py index ba4bb74d72..94eaad0dc7 100644 --- a/src/oci/waas/models/header_manipulation_action.py +++ b/src/oci/waas/models/header_manipulation_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/health_check.py b/src/oci/waas/models/health_check.py index 79e04f18cb..79d7125554 100644 --- a/src/oci/waas/models/health_check.py +++ b/src/oci/waas/models/health_check.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/http_redirect.py b/src/oci/waas/models/http_redirect.py index 72adfc2ec3..ef1f604060 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/http_redirect_summary.py b/src/oci/waas/models/http_redirect_summary.py index c8bbe27c87..fff06654a2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/http_redirect_target.py b/src/oci/waas/models/http_redirect_target.py index c6e0976890..8b1ccba3d6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/human_interaction_challenge.py b/src/oci/waas/models/human_interaction_challenge.py index 4f6a7f7560..a089588e01 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/ip_hash_load_balancing_method.py b/src/oci/waas/models/ip_hash_load_balancing_method.py index 22927732e2..69d208822c 100644 --- a/src/oci/waas/models/ip_hash_load_balancing_method.py +++ b/src/oci/waas/models/ip_hash_load_balancing_method.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .load_balancing_method import LoadBalancingMethod diff --git a/src/oci/waas/models/js_challenge.py b/src/oci/waas/models/js_challenge.py index a683684867..0c395c0fa3 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/load_balancing_method.py b/src/oci/waas/models/load_balancing_method.py index 3b1fc251f3..5b7ee95ac2 100644 --- a/src/oci/waas/models/load_balancing_method.py +++ b/src/oci/waas/models/load_balancing_method.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/origin.py b/src/oci/waas/models/origin.py index 5d4bfed853..dd7f790cba 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/origin_group.py b/src/oci/waas/models/origin_group.py index f53aa14ffd..b2f7825942 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/origin_group_origins.py b/src/oci/waas/models/origin_group_origins.py index 78debc572b..a0f709a75d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/policy_config.py b/src/oci/waas/models/policy_config.py index 3c13fad6a8..555136eed8 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/protection_rule.py b/src/oci/waas/models/protection_rule.py index 384944260c..1b9100d855 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/protection_rule_action.py b/src/oci/waas/models/protection_rule_action.py index 988924bc96..8067d83019 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/protection_rule_exclusion.py b/src/oci/waas/models/protection_rule_exclusion.py index 6e184280e2..1c69ce6d2a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/protection_settings.py b/src/oci/waas/models/protection_settings.py index ac1624b1a9..b632af7525 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/purge_cache.py b/src/oci/waas/models/purge_cache.py index eea04b86ec..a0426d3a2a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/recommendation.py b/src/oci/waas/models/recommendation.py index 2aae355e5b..d89b7bce8f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/remove_http_response_header_action.py b/src/oci/waas/models/remove_http_response_header_action.py index 9637c136e3..a49277f2d0 100644 --- a/src/oci/waas/models/remove_http_response_header_action.py +++ b/src/oci/waas/models/remove_http_response_header_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .header_manipulation_action import HeaderManipulationAction diff --git a/src/oci/waas/models/round_robin_load_balancing_method.py b/src/oci/waas/models/round_robin_load_balancing_method.py index 67958eef95..6cbbae36e0 100644 --- a/src/oci/waas/models/round_robin_load_balancing_method.py +++ b/src/oci/waas/models/round_robin_load_balancing_method.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .load_balancing_method import LoadBalancingMethod diff --git a/src/oci/waas/models/sticky_cookie_load_balancing_method.py b/src/oci/waas/models/sticky_cookie_load_balancing_method.py index 28fa8996d8..31653abe8d 100644 --- a/src/oci/waas/models/sticky_cookie_load_balancing_method.py +++ b/src/oci/waas/models/sticky_cookie_load_balancing_method.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .load_balancing_method import LoadBalancingMethod diff --git a/src/oci/waas/models/threat_feed.py b/src/oci/waas/models/threat_feed.py index 640f1c1820..6f4e35394d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/threat_feed_action.py b/src/oci/waas/models/threat_feed_action.py index 0d222b25db..a2b1ddeba2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/update_address_list_details.py b/src/oci/waas/models/update_address_list_details.py index 9e01afdd93..e4768b2653 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/update_certificate_details.py b/src/oci/waas/models/update_certificate_details.py index 1395784adb..a339675879 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 7c5532a3f8..ce78061f97 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/update_http_redirect_details.py b/src/oci/waas/models/update_http_redirect_details.py index ab5459d00e..a741dc88b4 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/update_waas_policy_details.py b/src/oci/waas/models/update_waas_policy_details.py index eea14ef2a7..be0928c430 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/waas_policy.py b/src/oci/waas/models/waas_policy.py index a27ac504ab..a59d8b8a5f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 6817f4d966..1df4a227f6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/waas_policy_summary.py b/src/oci/waas/models/waas_policy_summary.py index 6b022518d0..20617e6cbb 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/waf_blocked_request.py b/src/oci/waas/models/waf_blocked_request.py index f2f50e4df5..6ff6c5417b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/waf_config.py b/src/oci/waas/models/waf_config.py index be983bd9d6..393807c40a 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/waf_config_details.py b/src/oci/waas/models/waf_config_details.py index 8c4c30b374..5f09a9705f 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/waf_log.py b/src/oci/waas/models/waf_log.py index fa38b2fcea..90c0c3538c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/waf_meter_datum.py b/src/oci/waas/models/waf_meter_datum.py index 7dd79f47f3..251344ca0e 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/waf_request.py b/src/oci/waas/models/waf_request.py index f3b770a3b5..8c87c82789 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/waf_traffic_datum.py b/src/oci/waas/models/waf_traffic_datum.py index 2360b435f8..da7c52abb2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/whitelist.py b/src/oci/waas/models/whitelist.py index 2fde57fa5b..74268c85d6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/work_request.py b/src/oci/waas/models/work_request.py index e50b1bc89a..fcad5026f6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/work_request_error.py b/src/oci/waas/models/work_request_error.py index c67df58177..9db43c68c6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/work_request_log_entry.py b/src/oci/waas/models/work_request_log_entry.py index ddc8c3afe9..d74bcdc04c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/work_request_resource.py b/src/oci/waas/models/work_request_resource.py index 6bd56771e1..c42cb1b483 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/models/work_request_summary.py b/src/oci/waas/models/work_request_summary.py index 54f3e94bf3..45de7a7e33 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waas/redirect_client.py b/src/oci/waas/redirect_client.py index c06d49d1b1..827fac5613 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("redirect", config, signer, waas_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -128,6 +134,10 @@ def change_http_redirect_compartment(self, http_redirect_id, change_http_redirec To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -139,6 +149,7 @@ def change_http_redirect_compartment(self, http_redirect_id, change_http_redirec # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -216,6 +227,10 @@ def create_http_redirect(self, create_http_redirect_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -227,6 +242,7 @@ def create_http_redirect(self, create_http_redirect_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -295,6 +311,10 @@ def delete_http_redirect(self, http_redirect_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -306,6 +326,7 @@ def delete_http_redirect(self, http_redirect_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -379,6 +400,10 @@ def get_http_redirect(self, http_redirect_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.HttpRedirect` :rtype: :class:`~oci.response.Response` @@ -390,6 +415,7 @@ def get_http_redirect(self, http_redirect_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -493,6 +519,10 @@ def list_http_redirects(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.HttpRedirectSummary` :rtype: :class:`~oci.response.Response` @@ -504,6 +534,7 @@ def list_http_redirects(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -619,6 +650,10 @@ def update_http_redirect(self, http_redirect_id, update_http_redirect_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -630,6 +665,7 @@ def update_http_redirect(self, http_redirect_id, update_http_redirect_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", diff --git a/src/oci/waas/redirect_client_composite_operations.py b/src/oci/waas/redirect_client_composite_operations.py index 91ff769ffc..e389e630ee 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/waas/waas_client.py b/src/oci/waas/waas_client.py index 8476836293..18f0e3a4fa 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -64,6 +64,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -94,6 +98,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("waas", config, signer, waas_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -128,6 +134,10 @@ def accept_recommendations(self, waas_policy_id, protection_rule_keys, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -139,6 +149,7 @@ def accept_recommendations(self, waas_policy_id, protection_rule_keys, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -218,6 +229,10 @@ def cancel_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -229,6 +244,7 @@ def cancel_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -315,6 +331,10 @@ def change_address_list_compartment(self, address_list_id, change_address_list_c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -326,6 +346,7 @@ def change_address_list_compartment(self, address_list_id, change_address_list_c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -413,6 +434,10 @@ def change_certificate_compartment(self, certificate_id, change_certificate_comp To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -424,6 +449,7 @@ def change_certificate_compartment(self, certificate_id, change_certificate_comp # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -510,6 +536,10 @@ def change_custom_protection_rule_compartment(self, custom_protection_rule_id, c To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -521,6 +551,7 @@ def change_custom_protection_rule_compartment(self, custom_protection_rule_id, c # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -608,6 +639,10 @@ def change_waas_policy_compartment(self, waas_policy_id, change_waas_policy_comp To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -619,6 +654,7 @@ def change_waas_policy_compartment(self, waas_policy_id, change_waas_policy_comp # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id", @@ -696,6 +732,10 @@ def create_address_list(self, create_address_list_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.AddressList` :rtype: :class:`~oci.response.Response` @@ -707,6 +747,7 @@ def create_address_list(self, create_address_list_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -776,6 +817,10 @@ def create_certificate(self, create_certificate_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.Certificate` :rtype: :class:`~oci.response.Response` @@ -787,6 +832,7 @@ def create_certificate(self, create_certificate_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -857,6 +903,10 @@ def create_custom_protection_rule(self, create_custom_protection_rule_details, * To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.CustomProtectionRule` :rtype: :class:`~oci.response.Response` @@ -868,6 +918,7 @@ def create_custom_protection_rule(self, create_custom_protection_rule_details, * # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -948,6 +999,10 @@ def create_waas_policy(self, create_waas_policy_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -959,6 +1014,7 @@ def create_waas_policy(self, create_waas_policy_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token" @@ -1027,6 +1083,10 @@ def delete_address_list(self, address_list_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1038,6 +1098,7 @@ def delete_address_list(self, address_list_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -1118,6 +1179,10 @@ def delete_certificate(self, certificate_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1129,6 +1194,7 @@ def delete_certificate(self, certificate_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -1209,6 +1275,10 @@ def delete_custom_protection_rule(self, custom_protection_rule_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1220,6 +1290,7 @@ def delete_custom_protection_rule(self, custom_protection_rule_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -1300,6 +1371,10 @@ def delete_waas_policy(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -1311,6 +1386,7 @@ def delete_waas_policy(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -1384,6 +1460,10 @@ def get_address_list(self, address_list_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.AddressList` :rtype: :class:`~oci.response.Response` @@ -1395,6 +1475,7 @@ def get_address_list(self, address_list_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1465,6 +1546,10 @@ def get_certificate(self, certificate_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.Certificate` :rtype: :class:`~oci.response.Response` @@ -1476,6 +1561,7 @@ def get_certificate(self, certificate_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1546,6 +1632,10 @@ def get_custom_protection_rule(self, custom_protection_rule_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.CustomProtectionRule` :rtype: :class:`~oci.response.Response` @@ -1557,6 +1647,7 @@ def get_custom_protection_rule(self, custom_protection_rule_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1627,6 +1718,10 @@ def get_device_fingerprint_challenge(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.DeviceFingerprintChallenge` :rtype: :class:`~oci.response.Response` @@ -1638,6 +1733,7 @@ def get_device_fingerprint_challenge(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1708,6 +1804,10 @@ def get_human_interaction_challenge(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.HumanInteractionChallenge` :rtype: :class:`~oci.response.Response` @@ -1719,6 +1819,7 @@ def get_human_interaction_challenge(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1789,6 +1890,10 @@ def get_js_challenge(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.JsChallenge` :rtype: :class:`~oci.response.Response` @@ -1800,6 +1905,7 @@ def get_js_challenge(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1870,6 +1976,10 @@ def get_policy_config(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.PolicyConfig` :rtype: :class:`~oci.response.Response` @@ -1881,6 +1991,7 @@ def get_policy_config(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1954,6 +2065,10 @@ def get_protection_rule(self, waas_policy_id, protection_rule_key, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.ProtectionRule` :rtype: :class:`~oci.response.Response` @@ -1965,6 +2080,7 @@ def get_protection_rule(self, waas_policy_id, protection_rule_key, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2036,6 +2152,10 @@ def get_protection_settings(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.ProtectionSettings` :rtype: :class:`~oci.response.Response` @@ -2047,6 +2167,7 @@ def get_protection_settings(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2117,6 +2238,10 @@ def get_waas_policy(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.WaasPolicy` :rtype: :class:`~oci.response.Response` @@ -2128,6 +2253,7 @@ def get_waas_policy(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2198,6 +2324,10 @@ def get_waf_address_rate_limiting(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.AddressRateLimiting` :rtype: :class:`~oci.response.Response` @@ -2209,6 +2339,7 @@ def get_waf_address_rate_limiting(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2279,6 +2410,10 @@ def get_waf_config(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.WafConfig` :rtype: :class:`~oci.response.Response` @@ -2290,6 +2425,7 @@ def get_waf_config(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2360,6 +2496,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -2371,6 +2511,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -2448,6 +2589,10 @@ def list_access_rules(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.AccessRule` :rtype: :class:`~oci.response.Response` @@ -2459,6 +2604,7 @@ def list_access_rules(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -2572,6 +2718,10 @@ def list_address_lists(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.AddressListSummary` :rtype: :class:`~oci.response.Response` @@ -2583,6 +2733,7 @@ def list_address_lists(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -2695,6 +2846,10 @@ def list_caching_rules(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.CachingRuleSummary` :rtype: :class:`~oci.response.Response` @@ -2706,6 +2861,7 @@ def list_caching_rules(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -2796,6 +2952,10 @@ def list_captchas(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.Captcha` :rtype: :class:`~oci.response.Response` @@ -2807,6 +2967,7 @@ def list_captchas(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -2920,6 +3081,10 @@ def list_certificates(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.CertificateSummary` :rtype: :class:`~oci.response.Response` @@ -2931,6 +3096,7 @@ def list_certificates(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -3069,6 +3235,10 @@ def list_custom_protection_rules(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.CustomProtectionRuleSummary` :rtype: :class:`~oci.response.Response` @@ -3080,6 +3250,7 @@ def list_custom_protection_rules(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -3196,6 +3367,10 @@ def list_edge_subnets(self, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.EdgeSubnet` :rtype: :class:`~oci.response.Response` @@ -3207,6 +3382,7 @@ def list_edge_subnets(self, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -3301,6 +3477,10 @@ def list_good_bots(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.GoodBot` :rtype: :class:`~oci.response.Response` @@ -3312,6 +3492,7 @@ def list_good_bots(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -3407,6 +3588,10 @@ def list_protection_rules(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.ProtectionRule` :rtype: :class:`~oci.response.Response` @@ -3418,6 +3603,7 @@ def list_protection_rules(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -3526,6 +3712,10 @@ def list_recommendations(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.Recommendation` :rtype: :class:`~oci.response.Response` @@ -3537,6 +3727,7 @@ def list_recommendations(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "recommended_action", @@ -3634,6 +3825,10 @@ def list_threat_feeds(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.ThreatFeed` :rtype: :class:`~oci.response.Response` @@ -3645,6 +3840,7 @@ def list_threat_feeds(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -3758,6 +3954,10 @@ def list_waas_policies(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.WaasPolicySummary` :rtype: :class:`~oci.response.Response` @@ -3769,6 +3969,7 @@ def list_waas_policies(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -3888,6 +4089,10 @@ def list_waas_policy_custom_protection_rules(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.WaasPolicyCustomProtectionRuleSummary` :rtype: :class:`~oci.response.Response` @@ -3899,6 +4104,7 @@ def list_waas_policy_custom_protection_rules(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -4008,6 +4214,10 @@ def list_waf_blocked_requests(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.WafBlockedRequest` :rtype: :class:`~oci.response.Response` @@ -4019,6 +4229,7 @@ def list_waf_blocked_requests(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "time_observed_greater_than_or_equal_to", @@ -4188,6 +4399,10 @@ def list_waf_logs(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.WafLog` :rtype: :class:`~oci.response.Response` @@ -4199,6 +4414,7 @@ def list_waf_logs(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -4355,6 +4571,10 @@ def list_waf_requests(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.WafRequest` :rtype: :class:`~oci.response.Response` @@ -4366,6 +4586,7 @@ def list_waf_requests(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "time_observed_greater_than_or_equal_to", @@ -4463,6 +4684,10 @@ def list_waf_traffic(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.WafTrafficDatum` :rtype: :class:`~oci.response.Response` @@ -4474,6 +4699,7 @@ def list_waf_traffic(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "time_observed_greater_than_or_equal_to", @@ -4564,6 +4790,10 @@ def list_whitelists(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.Whitelist` :rtype: :class:`~oci.response.Response` @@ -4575,6 +4805,7 @@ def list_whitelists(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -4676,6 +4907,10 @@ def list_work_requests(self, waas_policy_id, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.waas.models.WorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -4687,6 +4922,7 @@ def list_work_requests(self, waas_policy_id, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "limit", @@ -4783,6 +5019,10 @@ def purge_cache(self, waas_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4794,6 +5034,7 @@ def purge_cache(self, waas_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -4884,6 +5125,10 @@ def update_access_rules(self, waas_policy_id, access_rules, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -4895,6 +5140,7 @@ def update_access_rules(self, waas_policy_id, access_rules, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -4976,6 +5222,10 @@ def update_address_list(self, address_list_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.AddressList` :rtype: :class:`~oci.response.Response` @@ -4987,6 +5237,7 @@ def update_address_list(self, address_list_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -5079,6 +5330,10 @@ def update_caching_rules(self, waas_policy_id, caching_rules_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5090,6 +5345,7 @@ def update_caching_rules(self, waas_policy_id, caching_rules_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -5183,6 +5439,10 @@ def update_captchas(self, waas_policy_id, captchas, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5194,6 +5454,7 @@ def update_captchas(self, waas_policy_id, captchas, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -5275,6 +5536,10 @@ def update_certificate(self, certificate_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.Certificate` :rtype: :class:`~oci.response.Response` @@ -5286,6 +5551,7 @@ def update_certificate(self, certificate_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match", @@ -5371,6 +5637,10 @@ def update_custom_protection_rule(self, custom_protection_rule_id, update_custom To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waas.models.CustomProtectionRule` :rtype: :class:`~oci.response.Response` @@ -5382,6 +5652,7 @@ def update_custom_protection_rule(self, custom_protection_rule_id, update_custom # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -5473,6 +5744,10 @@ def update_device_fingerprint_challenge(self, waas_policy_id, update_device_fing To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5484,6 +5759,7 @@ def update_device_fingerprint_challenge(self, waas_policy_id, update_device_fing # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -5572,6 +5848,10 @@ def update_good_bots(self, waas_policy_id, good_bots, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5583,6 +5863,7 @@ def update_good_bots(self, waas_policy_id, good_bots, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -5668,6 +5949,10 @@ def update_human_interaction_challenge(self, waas_policy_id, update_human_intera To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5679,6 +5964,7 @@ def update_human_interaction_challenge(self, waas_policy_id, update_human_intera # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -5766,6 +6052,10 @@ def update_js_challenge(self, waas_policy_id, update_js_challenge_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5777,6 +6067,7 @@ def update_js_challenge(self, waas_policy_id, update_js_challenge_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -5862,6 +6153,10 @@ def update_policy_config(self, waas_policy_id, update_policy_config_details, **k To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5873,6 +6168,7 @@ def update_policy_config(self, waas_policy_id, update_policy_config_details, **k # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -5957,6 +6253,10 @@ def update_protection_rules(self, waas_policy_id, protection_rules, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -5968,6 +6268,7 @@ def update_protection_rules(self, waas_policy_id, protection_rules, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -6050,6 +6351,10 @@ def update_protection_settings(self, waas_policy_id, update_protection_settings_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6061,6 +6366,7 @@ def update_protection_settings(self, waas_policy_id, update_protection_settings_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -6142,6 +6448,10 @@ def update_threat_feeds(self, waas_policy_id, threat_feeds, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6153,6 +6463,7 @@ def update_threat_feeds(self, waas_policy_id, threat_feeds, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "if_match" @@ -6237,6 +6548,10 @@ def update_waas_policy(self, waas_policy_id, update_waas_policy_details, **kwarg To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6248,6 +6563,7 @@ def update_waas_policy(self, waas_policy_id, update_waas_policy_details, **kwarg # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -6334,6 +6650,10 @@ def update_waas_policy_custom_protection_rules(self, waas_policy_id, update_cust To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6345,6 +6665,7 @@ def update_waas_policy_custom_protection_rules(self, waas_policy_id, update_cust # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -6430,6 +6751,10 @@ def update_waf_address_rate_limiting(self, waas_policy_id, update_waf_address_ra To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6441,6 +6766,7 @@ def update_waf_address_rate_limiting(self, waas_policy_id, update_waf_address_ra # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -6533,6 +6859,10 @@ def update_waf_config(self, waas_policy_id, update_waf_config_details, **kwargs) To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6544,6 +6874,7 @@ def update_waf_config(self, waas_policy_id, update_waf_config_details, **kwargs) # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", @@ -6636,6 +6967,10 @@ def update_whitelists(self, waas_policy_id, whitelists, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -6647,6 +6982,7 @@ def update_whitelists(self, waas_policy_id, whitelists, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "opc_retry_token", diff --git a/src/oci/waas/waas_client_composite_operations.py b/src/oci/waas/waas_client_composite_operations.py index 900da0e414..009f662764 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/waf/__init__.py b/src/oci/waf/__init__.py index 716d84ed91..12faf8773e 100644 --- a/src/oci/waf/__init__.py +++ b/src/oci/waf/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/waf/models/__init__.py b/src/oci/waf/models/__init__.py index 40f8587acc..7b7cb5d83f 100644 --- a/src/oci/waf/models/__init__.py +++ b/src/oci/waf/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/waf/models/access_control_rule.py b/src/oci/waf/models/access_control_rule.py index 5fee2602f8..aee6e8839e 100644 --- a/src/oci/waf/models/access_control_rule.py +++ b/src/oci/waf/models/access_control_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .web_app_firewall_policy_rule import WebAppFirewallPolicyRule diff --git a/src/oci/waf/models/action.py b/src/oci/waf/models/action.py index b222c5b06a..7cba30cf15 100644 --- a/src/oci/waf/models/action.py +++ b/src/oci/waf/models/action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/allow_action.py b/src/oci/waf/models/allow_action.py index 7a9714c76c..bc8bc2b0ad 100644 --- a/src/oci/waf/models/allow_action.py +++ b/src/oci/waf/models/allow_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .action import Action diff --git a/src/oci/waf/models/change_network_address_list_compartment_details.py b/src/oci/waf/models/change_network_address_list_compartment_details.py index 903a192f48..0738d66550 100644 --- a/src/oci/waf/models/change_network_address_list_compartment_details.py +++ b/src/oci/waf/models/change_network_address_list_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/change_resource_compartment_details.py b/src/oci/waf/models/change_resource_compartment_details.py index 44a039329d..003b0ae0bc 100644 --- a/src/oci/waf/models/change_resource_compartment_details.py +++ b/src/oci/waf/models/change_resource_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/change_web_app_firewall_compartment_details.py b/src/oci/waf/models/change_web_app_firewall_compartment_details.py index a0f7f301c7..f98a578a14 100644 --- a/src/oci/waf/models/change_web_app_firewall_compartment_details.py +++ b/src/oci/waf/models/change_web_app_firewall_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/change_web_app_firewall_policy_compartment_details.py b/src/oci/waf/models/change_web_app_firewall_policy_compartment_details.py index 39df89de63..e69d1275d3 100644 --- a/src/oci/waf/models/change_web_app_firewall_policy_compartment_details.py +++ b/src/oci/waf/models/change_web_app_firewall_policy_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/check_action.py b/src/oci/waf/models/check_action.py index fb39edfb59..ddb12fca16 100644 --- a/src/oci/waf/models/check_action.py +++ b/src/oci/waf/models/check_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .action import Action diff --git a/src/oci/waf/models/collaborative_capability_weight.py b/src/oci/waf/models/collaborative_capability_weight.py index 5d985e1748..00e46a1363 100644 --- a/src/oci/waf/models/collaborative_capability_weight.py +++ b/src/oci/waf/models/collaborative_capability_weight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/collaborative_capability_weight_override.py b/src/oci/waf/models/collaborative_capability_weight_override.py index 56b0e19fdb..20bf466ee4 100644 --- a/src/oci/waf/models/collaborative_capability_weight_override.py +++ b/src/oci/waf/models/collaborative_capability_weight_override.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/create_network_address_list_addresses_details.py b/src/oci/waf/models/create_network_address_list_addresses_details.py index 00008f2a21..c0be08b67f 100644 --- a/src/oci/waf/models/create_network_address_list_addresses_details.py +++ b/src/oci/waf/models/create_network_address_list_addresses_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_network_address_list_details import CreateNetworkAddressListDetails diff --git a/src/oci/waf/models/create_network_address_list_details.py b/src/oci/waf/models/create_network_address_list_details.py index 3caee33e9b..91ae90ecd3 100644 --- a/src/oci/waf/models/create_network_address_list_details.py +++ b/src/oci/waf/models/create_network_address_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/create_network_address_list_vcn_addresses_details.py b/src/oci/waf/models/create_network_address_list_vcn_addresses_details.py index ef425de4d3..1e7adadb08 100644 --- a/src/oci/waf/models/create_network_address_list_vcn_addresses_details.py +++ b/src/oci/waf/models/create_network_address_list_vcn_addresses_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_network_address_list_details import CreateNetworkAddressListDetails diff --git a/src/oci/waf/models/create_web_app_firewall_details.py b/src/oci/waf/models/create_web_app_firewall_details.py index 289a0f8571..9df965e3e0 100644 --- a/src/oci/waf/models/create_web_app_firewall_details.py +++ b/src/oci/waf/models/create_web_app_firewall_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/create_web_app_firewall_load_balancer_details.py b/src/oci/waf/models/create_web_app_firewall_load_balancer_details.py index 4225ba0205..187e97cabe 100644 --- a/src/oci/waf/models/create_web_app_firewall_load_balancer_details.py +++ b/src/oci/waf/models/create_web_app_firewall_load_balancer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .create_web_app_firewall_details import CreateWebAppFirewallDetails diff --git a/src/oci/waf/models/create_web_app_firewall_policy_details.py b/src/oci/waf/models/create_web_app_firewall_policy_details.py index 072ac0f4ca..a6def97095 100644 --- a/src/oci/waf/models/create_web_app_firewall_policy_details.py +++ b/src/oci/waf/models/create_web_app_firewall_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/http_response_body.py b/src/oci/waf/models/http_response_body.py index f8e75d5b02..be443f67e4 100644 --- a/src/oci/waf/models/http_response_body.py +++ b/src/oci/waf/models/http_response_body.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/network_address_list.py b/src/oci/waf/models/network_address_list.py index eed7e389c9..4ef98bc73e 100644 --- a/src/oci/waf/models/network_address_list.py +++ b/src/oci/waf/models/network_address_list.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/network_address_list_addresses.py b/src/oci/waf/models/network_address_list_addresses.py index 5f7bcbf367..c42ef0c431 100644 --- a/src/oci/waf/models/network_address_list_addresses.py +++ b/src/oci/waf/models/network_address_list_addresses.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .network_address_list import NetworkAddressList diff --git a/src/oci/waf/models/network_address_list_addresses_summary.py b/src/oci/waf/models/network_address_list_addresses_summary.py index 476cbffbca..d31d5c0cf3 100644 --- a/src/oci/waf/models/network_address_list_addresses_summary.py +++ b/src/oci/waf/models/network_address_list_addresses_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .network_address_list_summary import NetworkAddressListSummary diff --git a/src/oci/waf/models/network_address_list_collection.py b/src/oci/waf/models/network_address_list_collection.py index 815fb4f957..868bd684ad 100644 --- a/src/oci/waf/models/network_address_list_collection.py +++ b/src/oci/waf/models/network_address_list_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/network_address_list_summary.py b/src/oci/waf/models/network_address_list_summary.py index 5733077ba7..85d4e65900 100644 --- a/src/oci/waf/models/network_address_list_summary.py +++ b/src/oci/waf/models/network_address_list_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/network_address_list_vcn_addresses.py b/src/oci/waf/models/network_address_list_vcn_addresses.py index c158659ba3..c594fa6213 100644 --- a/src/oci/waf/models/network_address_list_vcn_addresses.py +++ b/src/oci/waf/models/network_address_list_vcn_addresses.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .network_address_list import NetworkAddressList diff --git a/src/oci/waf/models/network_address_list_vcn_addresses_summary.py b/src/oci/waf/models/network_address_list_vcn_addresses_summary.py index 8adc038662..f4ac78cc00 100644 --- a/src/oci/waf/models/network_address_list_vcn_addresses_summary.py +++ b/src/oci/waf/models/network_address_list_vcn_addresses_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .network_address_list_summary import NetworkAddressListSummary diff --git a/src/oci/waf/models/private_addresses.py b/src/oci/waf/models/private_addresses.py index a38b422dd9..be1bbf8866 100644 --- a/src/oci/waf/models/private_addresses.py +++ b/src/oci/waf/models/private_addresses.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/protection_capability.py b/src/oci/waf/models/protection_capability.py index b3789fc67a..3978c1a3c5 100644 --- a/src/oci/waf/models/protection_capability.py +++ b/src/oci/waf/models/protection_capability.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/protection_capability_collection.py b/src/oci/waf/models/protection_capability_collection.py index 994e40ff89..cb08efef37 100644 --- a/src/oci/waf/models/protection_capability_collection.py +++ b/src/oci/waf/models/protection_capability_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/protection_capability_exclusions.py b/src/oci/waf/models/protection_capability_exclusions.py index 00fb9fed7a..a4eb48ec86 100644 --- a/src/oci/waf/models/protection_capability_exclusions.py +++ b/src/oci/waf/models/protection_capability_exclusions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/protection_capability_group_tag_collection.py b/src/oci/waf/models/protection_capability_group_tag_collection.py index 50b98a5b8d..b1296d2e03 100644 --- a/src/oci/waf/models/protection_capability_group_tag_collection.py +++ b/src/oci/waf/models/protection_capability_group_tag_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/protection_capability_group_tag_summary.py b/src/oci/waf/models/protection_capability_group_tag_summary.py index 8b0c6c9a4d..d126c6cf48 100644 --- a/src/oci/waf/models/protection_capability_group_tag_summary.py +++ b/src/oci/waf/models/protection_capability_group_tag_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/protection_capability_settings.py b/src/oci/waf/models/protection_capability_settings.py index cf81de5391..e504a69021 100644 --- a/src/oci/waf/models/protection_capability_settings.py +++ b/src/oci/waf/models/protection_capability_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/protection_capability_summary.py b/src/oci/waf/models/protection_capability_summary.py index cd7f6af614..850dad84a0 100644 --- a/src/oci/waf/models/protection_capability_summary.py +++ b/src/oci/waf/models/protection_capability_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/protection_rule.py b/src/oci/waf/models/protection_rule.py index f981e91dd2..ff2f8f044c 100644 --- a/src/oci/waf/models/protection_rule.py +++ b/src/oci/waf/models/protection_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .web_app_firewall_policy_rule import WebAppFirewallPolicyRule diff --git a/src/oci/waf/models/request_access_control.py b/src/oci/waf/models/request_access_control.py index cf851ab326..3c47823e05 100644 --- a/src/oci/waf/models/request_access_control.py +++ b/src/oci/waf/models/request_access_control.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/request_protection.py b/src/oci/waf/models/request_protection.py index 7151ba8bcd..9d1ab55ba6 100644 --- a/src/oci/waf/models/request_protection.py +++ b/src/oci/waf/models/request_protection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/request_rate_limiting.py b/src/oci/waf/models/request_rate_limiting.py index 1aa4743967..dac0ef9472 100644 --- a/src/oci/waf/models/request_rate_limiting.py +++ b/src/oci/waf/models/request_rate_limiting.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/request_rate_limiting_configuration.py b/src/oci/waf/models/request_rate_limiting_configuration.py index 38b95012a0..c82469867e 100644 --- a/src/oci/waf/models/request_rate_limiting_configuration.py +++ b/src/oci/waf/models/request_rate_limiting_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/request_rate_limiting_rule.py b/src/oci/waf/models/request_rate_limiting_rule.py index cca84cc676..0137c2d5a9 100644 --- a/src/oci/waf/models/request_rate_limiting_rule.py +++ b/src/oci/waf/models/request_rate_limiting_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .web_app_firewall_policy_rule import WebAppFirewallPolicyRule diff --git a/src/oci/waf/models/response_access_control.py b/src/oci/waf/models/response_access_control.py index c85ed7f741..1b7efc6eaf 100644 --- a/src/oci/waf/models/response_access_control.py +++ b/src/oci/waf/models/response_access_control.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/response_header.py b/src/oci/waf/models/response_header.py index 600b741586..28507ad377 100644 --- a/src/oci/waf/models/response_header.py +++ b/src/oci/waf/models/response_header.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/response_protection.py b/src/oci/waf/models/response_protection.py index 84ac874456..c09404f625 100644 --- a/src/oci/waf/models/response_protection.py +++ b/src/oci/waf/models/response_protection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/return_http_response_action.py b/src/oci/waf/models/return_http_response_action.py index a538abb0e6..8871371981 100644 --- a/src/oci/waf/models/return_http_response_action.py +++ b/src/oci/waf/models/return_http_response_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .action import Action diff --git a/src/oci/waf/models/static_text_http_response_body.py b/src/oci/waf/models/static_text_http_response_body.py index 9faf71d9ec..5b52c5e7fc 100644 --- a/src/oci/waf/models/static_text_http_response_body.py +++ b/src/oci/waf/models/static_text_http_response_body.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .http_response_body import HttpResponseBody diff --git a/src/oci/waf/models/update_network_address_list_addresses_details.py b/src/oci/waf/models/update_network_address_list_addresses_details.py index a95785d98e..66678095f4 100644 --- a/src/oci/waf/models/update_network_address_list_addresses_details.py +++ b/src/oci/waf/models/update_network_address_list_addresses_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_network_address_list_details import UpdateNetworkAddressListDetails diff --git a/src/oci/waf/models/update_network_address_list_details.py b/src/oci/waf/models/update_network_address_list_details.py index 2483882710..a7edcf0d8e 100644 --- a/src/oci/waf/models/update_network_address_list_details.py +++ b/src/oci/waf/models/update_network_address_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/update_network_address_list_vcn_addresses_details.py b/src/oci/waf/models/update_network_address_list_vcn_addresses_details.py index 467941270e..cc0684216f 100644 --- a/src/oci/waf/models/update_network_address_list_vcn_addresses_details.py +++ b/src/oci/waf/models/update_network_address_list_vcn_addresses_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .update_network_address_list_details import UpdateNetworkAddressListDetails diff --git a/src/oci/waf/models/update_web_app_firewall_details.py b/src/oci/waf/models/update_web_app_firewall_details.py index a2c53c6136..bdb3aa9cf6 100644 --- a/src/oci/waf/models/update_web_app_firewall_details.py +++ b/src/oci/waf/models/update_web_app_firewall_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/update_web_app_firewall_policy_details.py b/src/oci/waf/models/update_web_app_firewall_policy_details.py index 5268b4e1c9..047402c92d 100644 --- a/src/oci/waf/models/update_web_app_firewall_policy_details.py +++ b/src/oci/waf/models/update_web_app_firewall_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/web_app_firewall.py b/src/oci/waf/models/web_app_firewall.py index dbc34987f0..2e7f45cfdb 100644 --- a/src/oci/waf/models/web_app_firewall.py +++ b/src/oci/waf/models/web_app_firewall.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/web_app_firewall_collection.py b/src/oci/waf/models/web_app_firewall_collection.py index 14187ee2fd..7a5419dfb0 100644 --- a/src/oci/waf/models/web_app_firewall_collection.py +++ b/src/oci/waf/models/web_app_firewall_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/web_app_firewall_load_balancer.py b/src/oci/waf/models/web_app_firewall_load_balancer.py index 1f6a2f47d9..b9db63b179 100644 --- a/src/oci/waf/models/web_app_firewall_load_balancer.py +++ b/src/oci/waf/models/web_app_firewall_load_balancer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .web_app_firewall import WebAppFirewall diff --git a/src/oci/waf/models/web_app_firewall_load_balancer_summary.py b/src/oci/waf/models/web_app_firewall_load_balancer_summary.py index d6b5c2f152..5248110dc0 100644 --- a/src/oci/waf/models/web_app_firewall_load_balancer_summary.py +++ b/src/oci/waf/models/web_app_firewall_load_balancer_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from .web_app_firewall_summary import WebAppFirewallSummary diff --git a/src/oci/waf/models/web_app_firewall_policy.py b/src/oci/waf/models/web_app_firewall_policy.py index a95dde2a08..3efe220457 100644 --- a/src/oci/waf/models/web_app_firewall_policy.py +++ b/src/oci/waf/models/web_app_firewall_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/web_app_firewall_policy_collection.py b/src/oci/waf/models/web_app_firewall_policy_collection.py index 724d0aa8a3..2e76e0aac7 100644 --- a/src/oci/waf/models/web_app_firewall_policy_collection.py +++ b/src/oci/waf/models/web_app_firewall_policy_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/web_app_firewall_policy_rule.py b/src/oci/waf/models/web_app_firewall_policy_rule.py index c8af4597af..456dc6ed69 100644 --- a/src/oci/waf/models/web_app_firewall_policy_rule.py +++ b/src/oci/waf/models/web_app_firewall_policy_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/web_app_firewall_policy_summary.py b/src/oci/waf/models/web_app_firewall_policy_summary.py index 82ddc2b881..030c715343 100644 --- a/src/oci/waf/models/web_app_firewall_policy_summary.py +++ b/src/oci/waf/models/web_app_firewall_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/web_app_firewall_summary.py b/src/oci/waf/models/web_app_firewall_summary.py index 679b3681c7..849d079331 100644 --- a/src/oci/waf/models/web_app_firewall_summary.py +++ b/src/oci/waf/models/web_app_firewall_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/work_request.py b/src/oci/waf/models/work_request.py index bd824481dd..df5b4b279f 100644 --- a/src/oci/waf/models/work_request.py +++ b/src/oci/waf/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/work_request_collection.py b/src/oci/waf/models/work_request_collection.py index 600d40bae1..c897befbac 100644 --- a/src/oci/waf/models/work_request_collection.py +++ b/src/oci/waf/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/work_request_error.py b/src/oci/waf/models/work_request_error.py index 15f6f3bf9a..c3440e4e69 100644 --- a/src/oci/waf/models/work_request_error.py +++ b/src/oci/waf/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/work_request_error_collection.py b/src/oci/waf/models/work_request_error_collection.py index eafae81757..22b3fb6714 100644 --- a/src/oci/waf/models/work_request_error_collection.py +++ b/src/oci/waf/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/work_request_log_entry.py b/src/oci/waf/models/work_request_log_entry.py index e2c53f59ff..9e062b30d8 100644 --- a/src/oci/waf/models/work_request_log_entry.py +++ b/src/oci/waf/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/work_request_log_entry_collection.py b/src/oci/waf/models/work_request_log_entry_collection.py index 761f5ad4cf..aab6d621d7 100644 --- a/src/oci/waf/models/work_request_log_entry_collection.py +++ b/src/oci/waf/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/models/work_request_resource.py b/src/oci/waf/models/work_request_resource.py index 99b77094e1..bc161de19f 100644 --- a/src/oci/waf/models/work_request_resource.py +++ b/src/oci/waf/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/waf/waf_client.py b/src/oci/waf/waf_client.py index 29b1cd71f9..7607c9fcb5 100644 --- a/src/oci/waf/waf_client.py +++ b/src/oci/waf/waf_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -65,6 +65,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -95,6 +99,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("waf", config, signer, waf_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -129,6 +135,10 @@ def change_network_address_list_compartment(self, network_address_list_id, chang To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -140,6 +150,7 @@ def change_network_address_list_compartment(self, network_address_list_id, chang # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -221,6 +232,10 @@ def change_web_app_firewall_compartment(self, web_app_firewall_id, change_web_ap To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -232,6 +247,7 @@ def change_web_app_firewall_compartment(self, web_app_firewall_id, change_web_ap # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -313,6 +329,10 @@ def change_web_app_firewall_policy_compartment(self, web_app_firewall_policy_id, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -324,6 +344,7 @@ def change_web_app_firewall_policy_compartment(self, web_app_firewall_policy_id, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -400,6 +421,10 @@ def create_network_address_list(self, create_network_address_list_details, **kwa To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waf.models.NetworkAddressList` :rtype: :class:`~oci.response.Response` @@ -411,6 +436,7 @@ def create_network_address_list(self, create_network_address_list_details, **kwa # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -478,6 +504,10 @@ def create_web_app_firewall(self, create_web_app_firewall_details, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waf.models.WebAppFirewall` :rtype: :class:`~oci.response.Response` @@ -489,6 +519,7 @@ def create_web_app_firewall(self, create_web_app_firewall_details, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -556,6 +587,10 @@ def create_web_app_firewall_policy(self, create_web_app_firewall_policy_details, To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waf.models.WebAppFirewallPolicy` :rtype: :class:`~oci.response.Response` @@ -567,6 +602,7 @@ def create_web_app_firewall_policy(self, create_web_app_firewall_policy_details, # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_retry_token", "opc_request_id" @@ -635,6 +671,10 @@ def delete_network_address_list(self, network_address_list_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -646,6 +686,7 @@ def delete_network_address_list(self, network_address_list_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -721,6 +762,10 @@ def delete_web_app_firewall(self, web_app_firewall_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -732,6 +777,7 @@ def delete_web_app_firewall(self, web_app_firewall_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -807,6 +853,10 @@ def delete_web_app_firewall_policy(self, web_app_firewall_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -818,6 +868,7 @@ def delete_web_app_firewall_policy(self, web_app_firewall_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -888,6 +939,10 @@ def get_network_address_list(self, network_address_list_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waf.models.NetworkAddressList` :rtype: :class:`~oci.response.Response` @@ -899,6 +954,7 @@ def get_network_address_list(self, network_address_list_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -969,6 +1025,10 @@ def get_web_app_firewall(self, web_app_firewall_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waf.models.WebAppFirewall` :rtype: :class:`~oci.response.Response` @@ -980,6 +1040,7 @@ def get_web_app_firewall(self, web_app_firewall_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1050,6 +1111,10 @@ def get_web_app_firewall_policy(self, web_app_firewall_policy_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waf.models.WebAppFirewallPolicy` :rtype: :class:`~oci.response.Response` @@ -1061,6 +1126,7 @@ def get_web_app_firewall_policy(self, web_app_firewall_policy_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1131,6 +1197,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waf.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -1142,6 +1212,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -1243,6 +1314,10 @@ def list_network_address_lists(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waf.models.NetworkAddressListCollection` :rtype: :class:`~oci.response.Response` @@ -1254,6 +1329,7 @@ def list_network_address_lists(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "display_name", @@ -1385,6 +1461,10 @@ def list_protection_capabilities(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waf.models.ProtectionCapabilityCollection` :rtype: :class:`~oci.response.Response` @@ -1396,6 +1476,7 @@ def list_protection_capabilities(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1527,6 +1608,10 @@ def list_protection_capability_group_tags(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waf.models.ProtectionCapabilityGroupTagCollection` :rtype: :class:`~oci.response.Response` @@ -1538,6 +1623,7 @@ def list_protection_capability_group_tags(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -1667,6 +1753,10 @@ def list_web_app_firewall_policies(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waf.models.WebAppFirewallPolicyCollection` :rtype: :class:`~oci.response.Response` @@ -1678,6 +1768,7 @@ def list_web_app_firewall_policies(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "lifecycle_state", "display_name", @@ -1807,6 +1898,10 @@ def list_web_app_firewalls(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waf.models.WebAppFirewallCollection` :rtype: :class:`~oci.response.Response` @@ -1818,6 +1913,7 @@ def list_web_app_firewalls(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "id", "web_app_firewall_policy_id", @@ -1920,6 +2016,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waf.models.WorkRequestErrorCollection` :rtype: :class:`~oci.response.Response` @@ -1931,6 +2031,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -2018,6 +2119,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waf.models.WorkRequestLogEntryCollection` :rtype: :class:`~oci.response.Response` @@ -2029,6 +2134,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id", "page", @@ -2121,6 +2227,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.waf.models.WorkRequestCollection` :rtype: :class:`~oci.response.Response` @@ -2132,6 +2242,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "work_request_id", "opc_request_id", @@ -2211,6 +2322,10 @@ def update_network_address_list(self, network_address_list_id, update_network_ad To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2222,6 +2337,7 @@ def update_network_address_list(self, network_address_list_id, update_network_ad # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2302,6 +2418,10 @@ def update_web_app_firewall(self, web_app_firewall_id, update_web_app_firewall_d To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2313,6 +2433,7 @@ def update_web_app_firewall(self, web_app_firewall_id, update_web_app_firewall_d # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" @@ -2393,6 +2514,10 @@ def update_web_app_firewall_policy(self, web_app_firewall_policy_id, update_web_ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` @@ -2404,6 +2529,7 @@ def update_web_app_firewall_policy(self, web_app_firewall_policy_id, update_web_ # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "if_match", "opc_request_id" diff --git a/src/oci/waf/waf_client_composite_operations.py b/src/oci/waf/waf_client_composite_operations.py index 0fc3662418..190ceb0966 100644 --- a/src/oci/waf/waf_client_composite_operations.py +++ b/src/oci/waf/waf_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/src/oci/waiter.py b/src/oci/waiter.py index 4540018951..4623410bc1 100644 --- a/src/oci/waiter.py +++ b/src/oci/waiter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import time diff --git a/src/oci/work_requests/__init__.py b/src/oci/work_requests/__init__.py index 856df9360b..3a842661c0 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import diff --git a/src/oci/work_requests/models/__init__.py b/src/oci/work_requests/models/__init__.py index 76dd232136..38398ba69c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 1e48e9c7cc..19d62adcb2 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/work_requests/models/work_request_error.py b/src/oci/work_requests/models/work_request_error.py index 65139c60c7..8a7c173efe 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. 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 ab36713c47..d379147f65 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/work_requests/models/work_request_resource.py b/src/oci/work_requests/models/work_request_resource.py index 20a5ccc2ce..af6f6e521c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/work_requests/models/work_request_summary.py b/src/oci/work_requests/models/work_request_summary.py index 82a7b7e4e9..efe8e1271d 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/work_requests/work_request_client.py b/src/oci/work_requests/work_request_client.py index 21d7e0aec8..37b0631785 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -69,6 +69,10 @@ def __init__(self, config, **kwargs): :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. + + :param allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not + allow control characters to be in the response object. """ validate_config(config, signer=kwargs.get('signer')) if 'signer' in kwargs: @@ -99,6 +103,8 @@ def __init__(self, config, **kwargs): base_client_init_kwargs['timeout'] = kwargs.get('timeout') if base_client_init_kwargs.get('circuit_breaker_strategy') is None: base_client_init_kwargs['circuit_breaker_strategy'] = circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY + if 'allow_control_chars' in kwargs: + base_client_init_kwargs['allow_control_chars'] = kwargs.get('allow_control_chars') self.base_client = BaseClient("work_request", config, signer, work_requests_type_mapping, **base_client_init_kwargs) self.retry_strategy = kwargs.get('retry_strategy') self.circuit_breaker_callback = kwargs.get('circuit_breaker_callback') @@ -125,6 +131,10 @@ def get_work_request(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.work_requests.models.WorkRequest` :rtype: :class:`~oci.response.Response` @@ -136,6 +146,7 @@ def get_work_request(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "opc_request_id" ] @@ -226,6 +237,10 @@ def list_work_request_errors(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.work_requests.models.WorkRequestError` :rtype: :class:`~oci.response.Response` @@ -237,6 +252,7 @@ def list_work_request_errors(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -346,6 +362,10 @@ def list_work_request_logs(self, work_request_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.work_requests.models.WorkRequestLogEntry` :rtype: :class:`~oci.response.Response` @@ -357,6 +377,7 @@ def list_work_request_logs(self, work_request_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "limit", "page", @@ -466,6 +487,10 @@ def list_work_requests(self, compartment_id, **kwargs): To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. + :param bool allow_control_chars: (optional) + allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. + By default, the response will not allow control characters in strings + :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.work_requests.models.WorkRequestSummary` :rtype: :class:`~oci.response.Response` @@ -477,6 +502,7 @@ def list_work_requests(self, compartment_id, **kwargs): # Don't accept unknown kwargs expected_kwargs = [ + "allow_control_chars", "retry_strategy", "resource_id", "limit", 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 35e19b2796..41a0bc8d0b 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci # noqa: F401 diff --git a/tests/__init__.py b/tests/__init__.py index e227e4af76..43e0a51160 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # noqa: W391, W292 \ No newline at end of file diff --git a/tests/autogentest/test_model.py b/tests/autogentest/test_model.py index d7f164e12b..96fd36a2af 100644 --- a/tests/autogentest/test_model.py +++ b/tests/autogentest/test_model.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci diff --git a/tests/conftest.py b/tests/conftest.py index 59c4a75a84..9ff517dd14 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import os.path diff --git a/tests/integ/__init__.py b/tests/integ/__init__.py index e227e4af76..43e0a51160 100644 --- a/tests/integ/__init__.py +++ b/tests/integ/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 288c9e3fcd..320a59d0e6 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import tests.util diff --git a/tests/integ/util.py b/tests/integ/util.py index 9e501effc5..70c6b4d8c4 100644 --- a/tests/integ/util.py +++ b/tests/integ/util.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import print_function diff --git a/tests/test_config_container.py b/tests/test_config_container.py index 11e4a3da69..2ac14bb414 100644 --- a/tests/test_config_container.py +++ b/tests/test_config_container.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # A module which holds test configuration information. This is intended to be a shared space where tests diff --git a/tests/testing_service_client.py b/tests/testing_service_client.py index 6582f085ac..b11b724da5 100644 --- a/tests/testing_service_client.py +++ b/tests/testing_service_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import base64 diff --git a/tests/unit/__init__.py b/tests/unit/__init__.py index e227e4af76..43e0a51160 100644 --- a/tests/unit/__init__.py +++ b/tests/unit/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # 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 a4bc15616c..327ab8b41c 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, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci diff --git a/tests/unit/test_response.py b/tests/unit/test_response.py index ddbba7e047..c51b6db4ea 100644 --- a/tests/unit/test_response.py +++ b/tests/unit/test_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import oci diff --git a/tests/unit/test_waiters.py b/tests/unit/test_waiters.py index c220d8063d..af03cd7602 100644 --- a/tests/unit/test_waiters.py +++ b/tests/unit/test_waiters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import tests.util diff --git a/tests/util.py b/tests/util.py index d490a87031..4c92d3a48c 100644 --- a/tests/util.py +++ b/tests/util.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. import functools